]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/tty/synclink.c
serial/8250: Add suport for later SUNIX (TIMEDIA) boards.
[mirror_ubuntu-bionic-kernel.git] / drivers / tty / synclink.c
CommitLineData
1da177e4 1/*
0ff1b2c8 2 * $Id: synclink.c,v 4.38 2005/11/07 16:30:34 paulkf Exp $
1da177e4
LT
3 *
4 * Device driver for Microgate SyncLink ISA and PCI
5 * high speed multiprotocol serial adapters.
6 *
7 * written by Paul Fulghum for Microgate Corporation
8 * paulkf@microgate.com
9 *
10 * Microgate and SyncLink are trademarks of Microgate Corporation
11 *
12 * Derived from serial.c written by Theodore Ts'o and Linus Torvalds
13 *
14 * Original release 01/11/99
15 *
16 * This code is released under the GNU General Public License (GPL)
17 *
18 * This driver is primarily intended for use in synchronous
19 * HDLC mode. Asynchronous mode is also provided.
20 *
21 * When operating in synchronous mode, each call to mgsl_write()
22 * contains exactly one complete HDLC frame. Calling mgsl_put_char
23 * will start assembling an HDLC frame that will not be sent until
24 * mgsl_flush_chars or mgsl_write is called.
25 *
26 * Synchronous receive data is reported as complete frames. To accomplish
27 * this, the TTY flip buffer is bypassed (too small to hold largest
28 * frame and may fragment frames) and the line discipline
29 * receive entry point is called directly.
30 *
31 * This driver has been tested with a slightly modified ppp.c driver
32 * for synchronous PPP.
33 *
34 * 2000/02/16
35 * Added interface for syncppp.c driver (an alternate synchronous PPP
36 * implementation that also supports Cisco HDLC). Each device instance
37 * registers as a tty device AND a network device (if dosyncppp option
38 * is set for the device). The functionality is determined by which
39 * device interface is opened.
40 *
41 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
42 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
43 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
44 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
45 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
46 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
47 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 */
53
54#if defined(__i386__)
55# define BREAKPOINT() asm(" int $3");
56#else
57# define BREAKPOINT() { }
58#endif
59
60#define MAX_ISA_DEVICES 10
61#define MAX_PCI_DEVICES 10
62#define MAX_TOTAL_DEVICES 20
63
1da177e4
LT
64#include <linux/module.h>
65#include <linux/errno.h>
66#include <linux/signal.h>
67#include <linux/sched.h>
68#include <linux/timer.h>
69#include <linux/interrupt.h>
70#include <linux/pci.h>
71#include <linux/tty.h>
72#include <linux/tty_flip.h>
73#include <linux/serial.h>
74#include <linux/major.h>
75#include <linux/string.h>
76#include <linux/fcntl.h>
77#include <linux/ptrace.h>
78#include <linux/ioport.h>
79#include <linux/mm.h>
d337829b 80#include <linux/seq_file.h>
1da177e4
LT
81#include <linux/slab.h>
82#include <linux/delay.h>
1da177e4 83#include <linux/netdevice.h>
1da177e4
LT
84#include <linux/vmalloc.h>
85#include <linux/init.h>
1da177e4 86#include <linux/ioctl.h>
3dd1247f 87#include <linux/synclink.h>
1da177e4 88
1da177e4
LT
89#include <asm/io.h>
90#include <asm/irq.h>
91#include <asm/dma.h>
92#include <linux/bitops.h>
93#include <asm/types.h>
94#include <linux/termios.h>
95#include <linux/workqueue.h>
96#include <linux/hdlc.h>
0ff1b2c8 97#include <linux/dma-mapping.h>
1da177e4 98
af69c7f9
PF
99#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_MODULE))
100#define SYNCLINK_GENERIC_HDLC 1
101#else
102#define SYNCLINK_GENERIC_HDLC 0
1da177e4
LT
103#endif
104
105#define GET_USER(error,value,addr) error = get_user(value,addr)
106#define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
107#define PUT_USER(error,value,addr) error = put_user(value,addr)
108#define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
109
110#include <asm/uaccess.h>
111
1da177e4
LT
112#define RCLRVALUE 0xffff
113
114static MGSL_PARAMS default_params = {
115 MGSL_MODE_HDLC, /* unsigned long mode */
116 0, /* unsigned char loopback; */
117 HDLC_FLAG_UNDERRUN_ABORT15, /* unsigned short flags; */
118 HDLC_ENCODING_NRZI_SPACE, /* unsigned char encoding; */
119 0, /* unsigned long clock_speed; */
120 0xff, /* unsigned char addr_filter; */
121 HDLC_CRC_16_CCITT, /* unsigned short crc_type; */
122 HDLC_PREAMBLE_LENGTH_8BITS, /* unsigned char preamble_length; */
123 HDLC_PREAMBLE_PATTERN_NONE, /* unsigned char preamble; */
124 9600, /* unsigned long data_rate; */
125 8, /* unsigned char data_bits; */
126 1, /* unsigned char stop_bits; */
127 ASYNC_PARITY_NONE /* unsigned char parity; */
128};
129
130#define SHARED_MEM_ADDRESS_SIZE 0x40000
623a4395
PF
131#define BUFFERLISTSIZE 4096
132#define DMABUFFERSIZE 4096
1da177e4
LT
133#define MAXRXFRAMES 7
134
135typedef struct _DMABUFFERENTRY
136{
137 u32 phys_addr; /* 32-bit flat physical address of data buffer */
4a918bc2
PF
138 volatile u16 count; /* buffer size/data count */
139 volatile u16 status; /* Control/status field */
140 volatile u16 rcc; /* character count field */
1da177e4
LT
141 u16 reserved; /* padding required by 16C32 */
142 u32 link; /* 32-bit flat link to next buffer entry */
143 char *virt_addr; /* virtual address of data buffer */
144 u32 phys_entry; /* physical address of this buffer entry */
0ff1b2c8 145 dma_addr_t dma_addr;
1da177e4
LT
146} DMABUFFERENTRY, *DMAPBUFFERENTRY;
147
148/* The queue of BH actions to be performed */
149
150#define BH_RECEIVE 1
151#define BH_TRANSMIT 2
152#define BH_STATUS 4
153
154#define IO_PIN_SHUTDOWN_LIMIT 100
155
1da177e4
LT
156struct _input_signal_events {
157 int ri_up;
158 int ri_down;
159 int dsr_up;
160 int dsr_down;
161 int dcd_up;
162 int dcd_down;
163 int cts_up;
164 int cts_down;
165};
166
167/* transmit holding buffer definitions*/
168#define MAX_TX_HOLDING_BUFFERS 5
169struct tx_holding_buffer {
170 int buffer_size;
171 unsigned char * buffer;
172};
173
174
175/*
176 * Device instance data structure
177 */
178
179struct mgsl_struct {
180 int magic;
8fb06c77 181 struct tty_port port;
1da177e4
LT
182 int line;
183 int hw_version;
1da177e4
LT
184
185 struct mgsl_icount icount;
186
1da177e4
LT
187 int timeout;
188 int x_char; /* xon/xoff character */
1da177e4
LT
189 u16 read_status_mask;
190 u16 ignore_status_mask;
191 unsigned char *xmit_buf;
192 int xmit_head;
193 int xmit_tail;
194 int xmit_cnt;
195
1da177e4
LT
196 wait_queue_head_t status_event_wait_q;
197 wait_queue_head_t event_wait_q;
198 struct timer_list tx_timer; /* HDLC transmit timeout timer */
199 struct mgsl_struct *next_device; /* device list link */
200
201 spinlock_t irq_spinlock; /* spinlock for synchronizing with ISR */
202 struct work_struct task; /* task structure for scheduling bh */
203
204 u32 EventMask; /* event trigger mask */
205 u32 RecordedEvents; /* pending events */
206
207 u32 max_frame_size; /* as set by device config */
208
209 u32 pending_bh;
210
0fab6de0 211 bool bh_running; /* Protection from multiple */
1da177e4 212 int isr_overflow;
0fab6de0 213 bool bh_requested;
1da177e4
LT
214
215 int dcd_chkcount; /* check counts to prevent */
216 int cts_chkcount; /* too many IRQs if a signal */
217 int dsr_chkcount; /* is floating */
218 int ri_chkcount;
219
220 char *buffer_list; /* virtual address of Rx & Tx buffer lists */
0ff1b2c8
PF
221 u32 buffer_list_phys;
222 dma_addr_t buffer_list_dma_addr;
1da177e4
LT
223
224 unsigned int rx_buffer_count; /* count of total allocated Rx buffers */
225 DMABUFFERENTRY *rx_buffer_list; /* list of receive buffer entries */
226 unsigned int current_rx_buffer;
227
228 int num_tx_dma_buffers; /* number of tx dma frames required */
229 int tx_dma_buffers_used;
230 unsigned int tx_buffer_count; /* count of total allocated Tx buffers */
231 DMABUFFERENTRY *tx_buffer_list; /* list of transmit buffer entries */
232 int start_tx_dma_buffer; /* tx dma buffer to start tx dma operation */
233 int current_tx_buffer; /* next tx dma buffer to be loaded */
234
235 unsigned char *intermediate_rxbuffer;
236
237 int num_tx_holding_buffers; /* number of tx holding buffer allocated */
238 int get_tx_holding_index; /* next tx holding buffer for adapter to load */
239 int put_tx_holding_index; /* next tx holding buffer to store user request */
240 int tx_holding_count; /* number of tx holding buffers waiting */
241 struct tx_holding_buffer tx_holding_buffers[MAX_TX_HOLDING_BUFFERS];
242
0fab6de0
JP
243 bool rx_enabled;
244 bool rx_overflow;
245 bool rx_rcc_underrun;
1da177e4 246
0fab6de0
JP
247 bool tx_enabled;
248 bool tx_active;
1da177e4
LT
249 u32 idle_mode;
250
251 u16 cmr_value;
252 u16 tcsr_value;
253
254 char device_name[25]; /* device instance name */
255
256 unsigned int bus_type; /* expansion bus type (ISA,EISA,PCI) */
257 unsigned char bus; /* expansion bus number (zero based) */
258 unsigned char function; /* PCI device number */
259
260 unsigned int io_base; /* base I/O address of adapter */
261 unsigned int io_addr_size; /* size of the I/O address range */
0fab6de0 262 bool io_addr_requested; /* true if I/O address requested */
1da177e4
LT
263
264 unsigned int irq_level; /* interrupt level */
265 unsigned long irq_flags;
0fab6de0 266 bool irq_requested; /* true if IRQ requested */
1da177e4
LT
267
268 unsigned int dma_level; /* DMA channel */
0fab6de0 269 bool dma_requested; /* true if dma channel requested */
1da177e4
LT
270
271 u16 mbre_bit;
272 u16 loopback_bits;
273 u16 usc_idle_mode;
274
275 MGSL_PARAMS params; /* communications parameters */
276
277 unsigned char serial_signals; /* current serial signal states */
278
0fab6de0 279 bool irq_occurred; /* for diagnostics use */
1da177e4
LT
280 unsigned int init_error; /* Initialization startup error (DIAGS) */
281 int fDiagnosticsmode; /* Driver in Diagnostic mode? (DIAGS) */
282
283 u32 last_mem_alloc;
284 unsigned char* memory_base; /* shared memory address (PCI only) */
285 u32 phys_memory_base;
0fab6de0 286 bool shared_mem_requested;
1da177e4
LT
287
288 unsigned char* lcr_base; /* local config registers (PCI only) */
289 u32 phys_lcr_base;
290 u32 lcr_offset;
0fab6de0 291 bool lcr_mem_requested;
1da177e4
LT
292
293 u32 misc_ctrl_value;
a6b68a69 294 char *flag_buf;
0fab6de0 295 bool drop_rts_on_tx_done;
1da177e4 296
0fab6de0
JP
297 bool loopmode_insert_requested;
298 bool loopmode_send_done_requested;
1da177e4
LT
299
300 struct _input_signal_events input_signal_events;
301
302 /* generic HDLC device parts */
303 int netcount;
1da177e4
LT
304 spinlock_t netlock;
305
af69c7f9 306#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
307 struct net_device *netdev;
308#endif
309};
310
311#define MGSL_MAGIC 0x5401
312
313/*
314 * The size of the serial xmit buffer is 1 page, or 4096 bytes
315 */
316#ifndef SERIAL_XMIT_SIZE
317#define SERIAL_XMIT_SIZE 4096
318#endif
319
320/*
321 * These macros define the offsets used in calculating the
322 * I/O address of the specified USC registers.
323 */
324
325
326#define DCPIN 2 /* Bit 1 of I/O address */
327#define SDPIN 4 /* Bit 2 of I/O address */
328
329#define DCAR 0 /* DMA command/address register */
330#define CCAR SDPIN /* channel command/address register */
331#define DATAREG DCPIN + SDPIN /* serial data register */
332#define MSBONLY 0x41
333#define LSBONLY 0x40
334
335/*
336 * These macros define the register address (ordinal number)
337 * used for writing address/value pairs to the USC.
338 */
339
340#define CMR 0x02 /* Channel mode Register */
341#define CCSR 0x04 /* Channel Command/status Register */
342#define CCR 0x06 /* Channel Control Register */
343#define PSR 0x08 /* Port status Register */
344#define PCR 0x0a /* Port Control Register */
345#define TMDR 0x0c /* Test mode Data Register */
346#define TMCR 0x0e /* Test mode Control Register */
347#define CMCR 0x10 /* Clock mode Control Register */
348#define HCR 0x12 /* Hardware Configuration Register */
349#define IVR 0x14 /* Interrupt Vector Register */
350#define IOCR 0x16 /* Input/Output Control Register */
351#define ICR 0x18 /* Interrupt Control Register */
352#define DCCR 0x1a /* Daisy Chain Control Register */
353#define MISR 0x1c /* Misc Interrupt status Register */
354#define SICR 0x1e /* status Interrupt Control Register */
355#define RDR 0x20 /* Receive Data Register */
356#define RMR 0x22 /* Receive mode Register */
357#define RCSR 0x24 /* Receive Command/status Register */
358#define RICR 0x26 /* Receive Interrupt Control Register */
359#define RSR 0x28 /* Receive Sync Register */
360#define RCLR 0x2a /* Receive count Limit Register */
361#define RCCR 0x2c /* Receive Character count Register */
362#define TC0R 0x2e /* Time Constant 0 Register */
363#define TDR 0x30 /* Transmit Data Register */
364#define TMR 0x32 /* Transmit mode Register */
365#define TCSR 0x34 /* Transmit Command/status Register */
366#define TICR 0x36 /* Transmit Interrupt Control Register */
367#define TSR 0x38 /* Transmit Sync Register */
368#define TCLR 0x3a /* Transmit count Limit Register */
369#define TCCR 0x3c /* Transmit Character count Register */
370#define TC1R 0x3e /* Time Constant 1 Register */
371
372
373/*
374 * MACRO DEFINITIONS FOR DMA REGISTERS
375 */
376
377#define DCR 0x06 /* DMA Control Register (shared) */
378#define DACR 0x08 /* DMA Array count Register (shared) */
379#define BDCR 0x12 /* Burst/Dwell Control Register (shared) */
380#define DIVR 0x14 /* DMA Interrupt Vector Register (shared) */
381#define DICR 0x18 /* DMA Interrupt Control Register (shared) */
382#define CDIR 0x1a /* Clear DMA Interrupt Register (shared) */
383#define SDIR 0x1c /* Set DMA Interrupt Register (shared) */
384
385#define TDMR 0x02 /* Transmit DMA mode Register */
386#define TDIAR 0x1e /* Transmit DMA Interrupt Arm Register */
387#define TBCR 0x2a /* Transmit Byte count Register */
388#define TARL 0x2c /* Transmit Address Register (low) */
389#define TARU 0x2e /* Transmit Address Register (high) */
390#define NTBCR 0x3a /* Next Transmit Byte count Register */
391#define NTARL 0x3c /* Next Transmit Address Register (low) */
392#define NTARU 0x3e /* Next Transmit Address Register (high) */
393
394#define RDMR 0x82 /* Receive DMA mode Register (non-shared) */
395#define RDIAR 0x9e /* Receive DMA Interrupt Arm Register */
396#define RBCR 0xaa /* Receive Byte count Register */
397#define RARL 0xac /* Receive Address Register (low) */
398#define RARU 0xae /* Receive Address Register (high) */
399#define NRBCR 0xba /* Next Receive Byte count Register */
400#define NRARL 0xbc /* Next Receive Address Register (low) */
401#define NRARU 0xbe /* Next Receive Address Register (high) */
402
403
404/*
405 * MACRO DEFINITIONS FOR MODEM STATUS BITS
406 */
407
408#define MODEMSTATUS_DTR 0x80
409#define MODEMSTATUS_DSR 0x40
410#define MODEMSTATUS_RTS 0x20
411#define MODEMSTATUS_CTS 0x10
412#define MODEMSTATUS_RI 0x04
413#define MODEMSTATUS_DCD 0x01
414
415
416/*
417 * Channel Command/Address Register (CCAR) Command Codes
418 */
419
420#define RTCmd_Null 0x0000
421#define RTCmd_ResetHighestIus 0x1000
422#define RTCmd_TriggerChannelLoadDma 0x2000
423#define RTCmd_TriggerRxDma 0x2800
424#define RTCmd_TriggerTxDma 0x3000
425#define RTCmd_TriggerRxAndTxDma 0x3800
426#define RTCmd_PurgeRxFifo 0x4800
427#define RTCmd_PurgeTxFifo 0x5000
428#define RTCmd_PurgeRxAndTxFifo 0x5800
429#define RTCmd_LoadRcc 0x6800
430#define RTCmd_LoadTcc 0x7000
431#define RTCmd_LoadRccAndTcc 0x7800
432#define RTCmd_LoadTC0 0x8800
433#define RTCmd_LoadTC1 0x9000
434#define RTCmd_LoadTC0AndTC1 0x9800
435#define RTCmd_SerialDataLSBFirst 0xa000
436#define RTCmd_SerialDataMSBFirst 0xa800
437#define RTCmd_SelectBigEndian 0xb000
438#define RTCmd_SelectLittleEndian 0xb800
439
440
441/*
442 * DMA Command/Address Register (DCAR) Command Codes
443 */
444
445#define DmaCmd_Null 0x0000
446#define DmaCmd_ResetTxChannel 0x1000
447#define DmaCmd_ResetRxChannel 0x1200
448#define DmaCmd_StartTxChannel 0x2000
449#define DmaCmd_StartRxChannel 0x2200
450#define DmaCmd_ContinueTxChannel 0x3000
451#define DmaCmd_ContinueRxChannel 0x3200
452#define DmaCmd_PauseTxChannel 0x4000
453#define DmaCmd_PauseRxChannel 0x4200
454#define DmaCmd_AbortTxChannel 0x5000
455#define DmaCmd_AbortRxChannel 0x5200
456#define DmaCmd_InitTxChannel 0x7000
457#define DmaCmd_InitRxChannel 0x7200
458#define DmaCmd_ResetHighestDmaIus 0x8000
459#define DmaCmd_ResetAllChannels 0x9000
460#define DmaCmd_StartAllChannels 0xa000
461#define DmaCmd_ContinueAllChannels 0xb000
462#define DmaCmd_PauseAllChannels 0xc000
463#define DmaCmd_AbortAllChannels 0xd000
464#define DmaCmd_InitAllChannels 0xf000
465
466#define TCmd_Null 0x0000
467#define TCmd_ClearTxCRC 0x2000
468#define TCmd_SelectTicrTtsaData 0x4000
469#define TCmd_SelectTicrTxFifostatus 0x5000
470#define TCmd_SelectTicrIntLevel 0x6000
471#define TCmd_SelectTicrdma_level 0x7000
472#define TCmd_SendFrame 0x8000
473#define TCmd_SendAbort 0x9000
474#define TCmd_EnableDleInsertion 0xc000
475#define TCmd_DisableDleInsertion 0xd000
476#define TCmd_ClearEofEom 0xe000
477#define TCmd_SetEofEom 0xf000
478
479#define RCmd_Null 0x0000
480#define RCmd_ClearRxCRC 0x2000
481#define RCmd_EnterHuntmode 0x3000
482#define RCmd_SelectRicrRtsaData 0x4000
483#define RCmd_SelectRicrRxFifostatus 0x5000
484#define RCmd_SelectRicrIntLevel 0x6000
485#define RCmd_SelectRicrdma_level 0x7000
486
487/*
488 * Bits for enabling and disabling IRQs in Interrupt Control Register (ICR)
489 */
490
491#define RECEIVE_STATUS BIT5
492#define RECEIVE_DATA BIT4
493#define TRANSMIT_STATUS BIT3
494#define TRANSMIT_DATA BIT2
495#define IO_PIN BIT1
496#define MISC BIT0
497
498
499/*
500 * Receive status Bits in Receive Command/status Register RCSR
501 */
502
503#define RXSTATUS_SHORT_FRAME BIT8
504#define RXSTATUS_CODE_VIOLATION BIT8
505#define RXSTATUS_EXITED_HUNT BIT7
506#define RXSTATUS_IDLE_RECEIVED BIT6
507#define RXSTATUS_BREAK_RECEIVED BIT5
508#define RXSTATUS_ABORT_RECEIVED BIT5
509#define RXSTATUS_RXBOUND BIT4
510#define RXSTATUS_CRC_ERROR BIT3
511#define RXSTATUS_FRAMING_ERROR BIT3
512#define RXSTATUS_ABORT BIT2
513#define RXSTATUS_PARITY_ERROR BIT2
514#define RXSTATUS_OVERRUN BIT1
515#define RXSTATUS_DATA_AVAILABLE BIT0
516#define RXSTATUS_ALL 0x01f6
517#define usc_UnlatchRxstatusBits(a,b) usc_OutReg( (a), RCSR, (u16)((b) & RXSTATUS_ALL) )
518
519/*
520 * Values for setting transmit idle mode in
521 * Transmit Control/status Register (TCSR)
522 */
523#define IDLEMODE_FLAGS 0x0000
524#define IDLEMODE_ALT_ONE_ZERO 0x0100
525#define IDLEMODE_ZERO 0x0200
526#define IDLEMODE_ONE 0x0300
527#define IDLEMODE_ALT_MARK_SPACE 0x0500
528#define IDLEMODE_SPACE 0x0600
529#define IDLEMODE_MARK 0x0700
530#define IDLEMODE_MASK 0x0700
531
532/*
533 * IUSC revision identifiers
534 */
535#define IUSC_SL1660 0x4d44
536#define IUSC_PRE_SL1660 0x4553
537
538/*
539 * Transmit status Bits in Transmit Command/status Register (TCSR)
540 */
541
542#define TCSR_PRESERVE 0x0F00
543
544#define TCSR_UNDERWAIT BIT11
545#define TXSTATUS_PREAMBLE_SENT BIT7
546#define TXSTATUS_IDLE_SENT BIT6
547#define TXSTATUS_ABORT_SENT BIT5
548#define TXSTATUS_EOF_SENT BIT4
549#define TXSTATUS_EOM_SENT BIT4
550#define TXSTATUS_CRC_SENT BIT3
551#define TXSTATUS_ALL_SENT BIT2
552#define TXSTATUS_UNDERRUN BIT1
553#define TXSTATUS_FIFO_EMPTY BIT0
554#define TXSTATUS_ALL 0x00fa
555#define usc_UnlatchTxstatusBits(a,b) usc_OutReg( (a), TCSR, (u16)((a)->tcsr_value + ((b) & 0x00FF)) )
556
557
558#define MISCSTATUS_RXC_LATCHED BIT15
559#define MISCSTATUS_RXC BIT14
560#define MISCSTATUS_TXC_LATCHED BIT13
561#define MISCSTATUS_TXC BIT12
562#define MISCSTATUS_RI_LATCHED BIT11
563#define MISCSTATUS_RI BIT10
564#define MISCSTATUS_DSR_LATCHED BIT9
565#define MISCSTATUS_DSR BIT8
566#define MISCSTATUS_DCD_LATCHED BIT7
567#define MISCSTATUS_DCD BIT6
568#define MISCSTATUS_CTS_LATCHED BIT5
569#define MISCSTATUS_CTS BIT4
570#define MISCSTATUS_RCC_UNDERRUN BIT3
571#define MISCSTATUS_DPLL_NO_SYNC BIT2
572#define MISCSTATUS_BRG1_ZERO BIT1
573#define MISCSTATUS_BRG0_ZERO BIT0
574
575#define usc_UnlatchIostatusBits(a,b) usc_OutReg((a),MISR,(u16)((b) & 0xaaa0))
576#define usc_UnlatchMiscstatusBits(a,b) usc_OutReg((a),MISR,(u16)((b) & 0x000f))
577
578#define SICR_RXC_ACTIVE BIT15
579#define SICR_RXC_INACTIVE BIT14
580#define SICR_RXC (BIT15+BIT14)
581#define SICR_TXC_ACTIVE BIT13
582#define SICR_TXC_INACTIVE BIT12
583#define SICR_TXC (BIT13+BIT12)
584#define SICR_RI_ACTIVE BIT11
585#define SICR_RI_INACTIVE BIT10
586#define SICR_RI (BIT11+BIT10)
587#define SICR_DSR_ACTIVE BIT9
588#define SICR_DSR_INACTIVE BIT8
589#define SICR_DSR (BIT9+BIT8)
590#define SICR_DCD_ACTIVE BIT7
591#define SICR_DCD_INACTIVE BIT6
592#define SICR_DCD (BIT7+BIT6)
593#define SICR_CTS_ACTIVE BIT5
594#define SICR_CTS_INACTIVE BIT4
595#define SICR_CTS (BIT5+BIT4)
596#define SICR_RCC_UNDERFLOW BIT3
597#define SICR_DPLL_NO_SYNC BIT2
598#define SICR_BRG1_ZERO BIT1
599#define SICR_BRG0_ZERO BIT0
600
601void usc_DisableMasterIrqBit( struct mgsl_struct *info );
602void usc_EnableMasterIrqBit( struct mgsl_struct *info );
603void usc_EnableInterrupts( struct mgsl_struct *info, u16 IrqMask );
604void usc_DisableInterrupts( struct mgsl_struct *info, u16 IrqMask );
605void usc_ClearIrqPendingBits( struct mgsl_struct *info, u16 IrqMask );
606
607#define usc_EnableInterrupts( a, b ) \
608 usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0xff00) + 0xc0 + (b)) )
609
610#define usc_DisableInterrupts( a, b ) \
611 usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0xff00) + 0x80 + (b)) )
612
613#define usc_EnableMasterIrqBit(a) \
614 usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0x0f00) + 0xb000) )
615
616#define usc_DisableMasterIrqBit(a) \
617 usc_OutReg( (a), ICR, (u16)(usc_InReg((a),ICR) & 0x7f00) )
618
619#define usc_ClearIrqPendingBits( a, b ) usc_OutReg( (a), DCCR, 0x40 + (b) )
620
621/*
622 * Transmit status Bits in Transmit Control status Register (TCSR)
623 * and Transmit Interrupt Control Register (TICR) (except BIT2, BIT0)
624 */
625
626#define TXSTATUS_PREAMBLE_SENT BIT7
627#define TXSTATUS_IDLE_SENT BIT6
628#define TXSTATUS_ABORT_SENT BIT5
629#define TXSTATUS_EOF BIT4
630#define TXSTATUS_CRC_SENT BIT3
631#define TXSTATUS_ALL_SENT BIT2
632#define TXSTATUS_UNDERRUN BIT1
633#define TXSTATUS_FIFO_EMPTY BIT0
634
635#define DICR_MASTER BIT15
636#define DICR_TRANSMIT BIT0
637#define DICR_RECEIVE BIT1
638
639#define usc_EnableDmaInterrupts(a,b) \
640 usc_OutDmaReg( (a), DICR, (u16)(usc_InDmaReg((a),DICR) | (b)) )
641
642#define usc_DisableDmaInterrupts(a,b) \
643 usc_OutDmaReg( (a), DICR, (u16)(usc_InDmaReg((a),DICR) & ~(b)) )
644
645#define usc_EnableStatusIrqs(a,b) \
646 usc_OutReg( (a), SICR, (u16)(usc_InReg((a),SICR) | (b)) )
647
648#define usc_DisablestatusIrqs(a,b) \
649 usc_OutReg( (a), SICR, (u16)(usc_InReg((a),SICR) & ~(b)) )
650
651/* Transmit status Bits in Transmit Control status Register (TCSR) */
652/* and Transmit Interrupt Control Register (TICR) (except BIT2, BIT0) */
653
654
655#define DISABLE_UNCONDITIONAL 0
656#define DISABLE_END_OF_FRAME 1
657#define ENABLE_UNCONDITIONAL 2
658#define ENABLE_AUTO_CTS 3
659#define ENABLE_AUTO_DCD 3
660#define usc_EnableTransmitter(a,b) \
661 usc_OutReg( (a), TMR, (u16)((usc_InReg((a),TMR) & 0xfffc) | (b)) )
662#define usc_EnableReceiver(a,b) \
663 usc_OutReg( (a), RMR, (u16)((usc_InReg((a),RMR) & 0xfffc) | (b)) )
664
665static u16 usc_InDmaReg( struct mgsl_struct *info, u16 Port );
666static void usc_OutDmaReg( struct mgsl_struct *info, u16 Port, u16 Value );
667static void usc_DmaCmd( struct mgsl_struct *info, u16 Cmd );
668
669static u16 usc_InReg( struct mgsl_struct *info, u16 Port );
670static void usc_OutReg( struct mgsl_struct *info, u16 Port, u16 Value );
671static void usc_RTCmd( struct mgsl_struct *info, u16 Cmd );
672void usc_RCmd( struct mgsl_struct *info, u16 Cmd );
673void usc_TCmd( struct mgsl_struct *info, u16 Cmd );
674
675#define usc_TCmd(a,b) usc_OutReg((a), TCSR, (u16)((a)->tcsr_value + (b)))
676#define usc_RCmd(a,b) usc_OutReg((a), RCSR, (b))
677
678#define usc_SetTransmitSyncChars(a,s0,s1) usc_OutReg((a), TSR, (u16)(((u16)s0<<8)|(u16)s1))
679
680static void usc_process_rxoverrun_sync( struct mgsl_struct *info );
681static void usc_start_receiver( struct mgsl_struct *info );
682static void usc_stop_receiver( struct mgsl_struct *info );
683
684static void usc_start_transmitter( struct mgsl_struct *info );
685static void usc_stop_transmitter( struct mgsl_struct *info );
686static void usc_set_txidle( struct mgsl_struct *info );
687static void usc_load_txfifo( struct mgsl_struct *info );
688
689static void usc_enable_aux_clock( struct mgsl_struct *info, u32 DataRate );
690static void usc_enable_loopback( struct mgsl_struct *info, int enable );
691
692static void usc_get_serial_signals( struct mgsl_struct *info );
693static void usc_set_serial_signals( struct mgsl_struct *info );
694
695static void usc_reset( struct mgsl_struct *info );
696
697static void usc_set_sync_mode( struct mgsl_struct *info );
698static void usc_set_sdlc_mode( struct mgsl_struct *info );
699static void usc_set_async_mode( struct mgsl_struct *info );
700static void usc_enable_async_clock( struct mgsl_struct *info, u32 DataRate );
701
702static void usc_loopback_frame( struct mgsl_struct *info );
703
704static void mgsl_tx_timeout(unsigned long context);
705
706
707static void usc_loopmode_cancel_transmit( struct mgsl_struct * info );
708static void usc_loopmode_insert_request( struct mgsl_struct * info );
709static int usc_loopmode_active( struct mgsl_struct * info);
710static void usc_loopmode_send_done( struct mgsl_struct * info );
711
712static int mgsl_ioctl_common(struct mgsl_struct *info, unsigned int cmd, unsigned long arg);
713
af69c7f9 714#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
715#define dev_to_port(D) (dev_to_hdlc(D)->priv)
716static void hdlcdev_tx_done(struct mgsl_struct *info);
717static void hdlcdev_rx(struct mgsl_struct *info, char *buf, int size);
718static int hdlcdev_init(struct mgsl_struct *info);
719static void hdlcdev_exit(struct mgsl_struct *info);
720#endif
721
722/*
723 * Defines a BUS descriptor value for the PCI adapter
724 * local bus address ranges.
725 */
726
727#define BUS_DESCRIPTOR( WrHold, WrDly, RdDly, Nwdd, Nwad, Nxda, Nrdd, Nrad ) \
728(0x00400020 + \
729((WrHold) << 30) + \
730((WrDly) << 28) + \
731((RdDly) << 26) + \
732((Nwdd) << 20) + \
733((Nwad) << 15) + \
734((Nxda) << 13) + \
735((Nrdd) << 11) + \
736((Nrad) << 6) )
737
738static void mgsl_trace_block(struct mgsl_struct *info,const char* data, int count, int xmit);
739
740/*
741 * Adapter diagnostic routines
742 */
0fab6de0
JP
743static bool mgsl_register_test( struct mgsl_struct *info );
744static bool mgsl_irq_test( struct mgsl_struct *info );
745static bool mgsl_dma_test( struct mgsl_struct *info );
746static bool mgsl_memory_test( struct mgsl_struct *info );
1da177e4
LT
747static int mgsl_adapter_test( struct mgsl_struct *info );
748
749/*
750 * device and resource management routines
751 */
752static int mgsl_claim_resources(struct mgsl_struct *info);
753static void mgsl_release_resources(struct mgsl_struct *info);
754static void mgsl_add_device(struct mgsl_struct *info);
755static struct mgsl_struct* mgsl_allocate_device(void);
756
757/*
758 * DMA buffer manupulation functions.
759 */
760static void mgsl_free_rx_frame_buffers( struct mgsl_struct *info, unsigned int StartIndex, unsigned int EndIndex );
0fab6de0
JP
761static bool mgsl_get_rx_frame( struct mgsl_struct *info );
762static bool mgsl_get_raw_rx_frame( struct mgsl_struct *info );
1da177e4
LT
763static void mgsl_reset_rx_dma_buffers( struct mgsl_struct *info );
764static void mgsl_reset_tx_dma_buffers( struct mgsl_struct *info );
765static int num_free_tx_dma_buffers(struct mgsl_struct *info);
766static void mgsl_load_tx_dma_buffer( struct mgsl_struct *info, const char *Buffer, unsigned int BufferSize);
767static void mgsl_load_pci_memory(char* TargetPtr, const char* SourcePtr, unsigned short count);
768
769/*
770 * DMA and Shared Memory buffer allocation and formatting
771 */
772static int mgsl_allocate_dma_buffers(struct mgsl_struct *info);
773static void mgsl_free_dma_buffers(struct mgsl_struct *info);
774static int mgsl_alloc_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList,int Buffercount);
775static void mgsl_free_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList,int Buffercount);
776static int mgsl_alloc_buffer_list_memory(struct mgsl_struct *info);
777static void mgsl_free_buffer_list_memory(struct mgsl_struct *info);
778static int mgsl_alloc_intermediate_rxbuffer_memory(struct mgsl_struct *info);
779static void mgsl_free_intermediate_rxbuffer_memory(struct mgsl_struct *info);
780static int mgsl_alloc_intermediate_txbuffer_memory(struct mgsl_struct *info);
781static void mgsl_free_intermediate_txbuffer_memory(struct mgsl_struct *info);
0fab6de0 782static bool load_next_tx_holding_buffer(struct mgsl_struct *info);
1da177e4
LT
783static int save_tx_buffer_request(struct mgsl_struct *info,const char *Buffer, unsigned int BufferSize);
784
785/*
786 * Bottom half interrupt handlers
787 */
c4028958 788static void mgsl_bh_handler(struct work_struct *work);
1da177e4
LT
789static void mgsl_bh_receive(struct mgsl_struct *info);
790static void mgsl_bh_transmit(struct mgsl_struct *info);
791static void mgsl_bh_status(struct mgsl_struct *info);
792
793/*
794 * Interrupt handler routines and dispatch table.
795 */
796static void mgsl_isr_null( struct mgsl_struct *info );
797static void mgsl_isr_transmit_data( struct mgsl_struct *info );
798static void mgsl_isr_receive_data( struct mgsl_struct *info );
799static void mgsl_isr_receive_status( struct mgsl_struct *info );
800static void mgsl_isr_transmit_status( struct mgsl_struct *info );
801static void mgsl_isr_io_pin( struct mgsl_struct *info );
802static void mgsl_isr_misc( struct mgsl_struct *info );
803static void mgsl_isr_receive_dma( struct mgsl_struct *info );
804static void mgsl_isr_transmit_dma( struct mgsl_struct *info );
805
806typedef void (*isr_dispatch_func)(struct mgsl_struct *);
807
808static isr_dispatch_func UscIsrTable[7] =
809{
810 mgsl_isr_null,
811 mgsl_isr_misc,
812 mgsl_isr_io_pin,
813 mgsl_isr_transmit_data,
814 mgsl_isr_transmit_status,
815 mgsl_isr_receive_data,
816 mgsl_isr_receive_status
817};
818
819/*
820 * ioctl call handlers
821 */
60b33c13 822static int tiocmget(struct tty_struct *tty);
20b9d177 823static int tiocmset(struct tty_struct *tty,
1da177e4
LT
824 unsigned int set, unsigned int clear);
825static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount
826 __user *user_icount);
827static int mgsl_get_params(struct mgsl_struct * info, MGSL_PARAMS __user *user_params);
828static int mgsl_set_params(struct mgsl_struct * info, MGSL_PARAMS __user *new_params);
829static int mgsl_get_txidle(struct mgsl_struct * info, int __user *idle_mode);
830static int mgsl_set_txidle(struct mgsl_struct * info, int idle_mode);
831static int mgsl_txenable(struct mgsl_struct * info, int enable);
832static int mgsl_txabort(struct mgsl_struct * info);
833static int mgsl_rxenable(struct mgsl_struct * info, int enable);
834static int mgsl_wait_event(struct mgsl_struct * info, int __user *mask);
835static int mgsl_loopmode_send_done( struct mgsl_struct * info );
836
837/* set non-zero on successful registration with PCI subsystem */
0fab6de0 838static bool pci_registered;
1da177e4
LT
839
840/*
841 * Global linked list of SyncLink devices
842 */
843static struct mgsl_struct *mgsl_device_list;
844static int mgsl_device_count;
845
846/*
847 * Set this param to non-zero to load eax with the
848 * .text section address and breakpoint on module load.
849 * This is useful for use with gdb and add-symbol-file command.
850 */
90ab5ee9 851static bool break_on_load;
1da177e4
LT
852
853/*
854 * Driver major number, defaults to zero to get auto
855 * assigned major number. May be forced as module parameter.
856 */
857static int ttymajor;
858
859/*
860 * Array of user specified options for ISA adapters.
861 */
862static int io[MAX_ISA_DEVICES];
863static int irq[MAX_ISA_DEVICES];
864static int dma[MAX_ISA_DEVICES];
865static int debug_level;
866static int maxframe[MAX_TOTAL_DEVICES];
1da177e4
LT
867static int txdmabufs[MAX_TOTAL_DEVICES];
868static int txholdbufs[MAX_TOTAL_DEVICES];
869
870module_param(break_on_load, bool, 0);
871module_param(ttymajor, int, 0);
872module_param_array(io, int, NULL, 0);
873module_param_array(irq, int, NULL, 0);
874module_param_array(dma, int, NULL, 0);
875module_param(debug_level, int, 0);
876module_param_array(maxframe, int, NULL, 0);
1da177e4
LT
877module_param_array(txdmabufs, int, NULL, 0);
878module_param_array(txholdbufs, int, NULL, 0);
879
880static char *driver_name = "SyncLink serial driver";
0ff1b2c8 881static char *driver_version = "$Revision: 4.38 $";
1da177e4
LT
882
883static int synclink_init_one (struct pci_dev *dev,
884 const struct pci_device_id *ent);
885static void synclink_remove_one (struct pci_dev *dev);
886
887static struct pci_device_id synclink_pci_tbl[] = {
888 { PCI_VENDOR_ID_MICROGATE, PCI_DEVICE_ID_MICROGATE_USC, PCI_ANY_ID, PCI_ANY_ID, },
889 { PCI_VENDOR_ID_MICROGATE, 0x0210, PCI_ANY_ID, PCI_ANY_ID, },
890 { 0, }, /* terminate list */
891};
892MODULE_DEVICE_TABLE(pci, synclink_pci_tbl);
893
894MODULE_LICENSE("GPL");
895
896static struct pci_driver synclink_pci_driver = {
897 .name = "synclink",
898 .id_table = synclink_pci_tbl,
899 .probe = synclink_init_one,
91116cba 900 .remove = synclink_remove_one,
1da177e4
LT
901};
902
903static struct tty_driver *serial_driver;
904
905/* number of characters left in xmit buffer before we ask for more */
906#define WAKEUP_CHARS 256
907
908
909static void mgsl_change_params(struct mgsl_struct *info);
910static void mgsl_wait_until_sent(struct tty_struct *tty, int timeout);
911
912/*
913 * 1st function defined in .text section. Calling this function in
914 * init_module() followed by a breakpoint allows a remote debugger
915 * (gdb) to get the .text address for the add-symbol-file command.
916 * This allows remote debugging of dynamically loadable modules.
917 */
918static void* mgsl_get_text_ptr(void)
919{
920 return mgsl_get_text_ptr;
921}
922
1da177e4
LT
923static inline int mgsl_paranoia_check(struct mgsl_struct *info,
924 char *name, const char *routine)
925{
926#ifdef MGSL_PARANOIA_CHECK
927 static const char *badmagic =
928 "Warning: bad magic number for mgsl struct (%s) in %s\n";
929 static const char *badinfo =
930 "Warning: null mgsl_struct for (%s) in %s\n";
931
932 if (!info) {
933 printk(badinfo, name, routine);
934 return 1;
935 }
936 if (info->magic != MGSL_MAGIC) {
937 printk(badmagic, name, routine);
938 return 1;
939 }
940#else
941 if (!info)
942 return 1;
943#endif
944 return 0;
945}
946
947/**
948 * line discipline callback wrappers
949 *
950 * The wrappers maintain line discipline references
951 * while calling into the line discipline.
952 *
953 * ldisc_receive_buf - pass receive data to line discipline
954 */
955
956static void ldisc_receive_buf(struct tty_struct *tty,
957 const __u8 *data, char *flags, int count)
958{
959 struct tty_ldisc *ld;
960 if (!tty)
961 return;
962 ld = tty_ldisc_ref(tty);
963 if (ld) {
a352def2
AC
964 if (ld->ops->receive_buf)
965 ld->ops->receive_buf(tty, data, flags, count);
1da177e4
LT
966 tty_ldisc_deref(ld);
967 }
968}
969
970/* mgsl_stop() throttle (stop) transmitter
971 *
972 * Arguments: tty pointer to tty info structure
973 * Return Value: None
974 */
975static void mgsl_stop(struct tty_struct *tty)
976{
c9f19e96 977 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
978 unsigned long flags;
979
980 if (mgsl_paranoia_check(info, tty->name, "mgsl_stop"))
981 return;
982
983 if ( debug_level >= DEBUG_LEVEL_INFO )
984 printk("mgsl_stop(%s)\n",info->device_name);
985
986 spin_lock_irqsave(&info->irq_spinlock,flags);
987 if (info->tx_enabled)
988 usc_stop_transmitter(info);
989 spin_unlock_irqrestore(&info->irq_spinlock,flags);
990
991} /* end of mgsl_stop() */
992
993/* mgsl_start() release (start) transmitter
994 *
995 * Arguments: tty pointer to tty info structure
996 * Return Value: None
997 */
998static void mgsl_start(struct tty_struct *tty)
999{
c9f19e96 1000 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
1001 unsigned long flags;
1002
1003 if (mgsl_paranoia_check(info, tty->name, "mgsl_start"))
1004 return;
1005
1006 if ( debug_level >= DEBUG_LEVEL_INFO )
1007 printk("mgsl_start(%s)\n",info->device_name);
1008
1009 spin_lock_irqsave(&info->irq_spinlock,flags);
1010 if (!info->tx_enabled)
1011 usc_start_transmitter(info);
1012 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1013
1014} /* end of mgsl_start() */
1015
1016/*
1017 * Bottom half work queue access functions
1018 */
1019
1020/* mgsl_bh_action() Return next bottom half action to perform.
1021 * Return Value: BH action code or 0 if nothing to do.
1022 */
1023static int mgsl_bh_action(struct mgsl_struct *info)
1024{
1025 unsigned long flags;
1026 int rc = 0;
1027
1028 spin_lock_irqsave(&info->irq_spinlock,flags);
1029
1030 if (info->pending_bh & BH_RECEIVE) {
1031 info->pending_bh &= ~BH_RECEIVE;
1032 rc = BH_RECEIVE;
1033 } else if (info->pending_bh & BH_TRANSMIT) {
1034 info->pending_bh &= ~BH_TRANSMIT;
1035 rc = BH_TRANSMIT;
1036 } else if (info->pending_bh & BH_STATUS) {
1037 info->pending_bh &= ~BH_STATUS;
1038 rc = BH_STATUS;
1039 }
1040
1041 if (!rc) {
1042 /* Mark BH routine as complete */
0fab6de0
JP
1043 info->bh_running = false;
1044 info->bh_requested = false;
1da177e4
LT
1045 }
1046
1047 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1048
1049 return rc;
1050}
1051
1052/*
1053 * Perform bottom half processing of work items queued by ISR.
1054 */
c4028958 1055static void mgsl_bh_handler(struct work_struct *work)
1da177e4 1056{
c4028958
DH
1057 struct mgsl_struct *info =
1058 container_of(work, struct mgsl_struct, task);
1da177e4
LT
1059 int action;
1060
1061 if (!info)
1062 return;
1063
1064 if ( debug_level >= DEBUG_LEVEL_BH )
1065 printk( "%s(%d):mgsl_bh_handler(%s) entry\n",
1066 __FILE__,__LINE__,info->device_name);
1067
0fab6de0 1068 info->bh_running = true;
1da177e4
LT
1069
1070 while((action = mgsl_bh_action(info)) != 0) {
1071
1072 /* Process work item */
1073 if ( debug_level >= DEBUG_LEVEL_BH )
1074 printk( "%s(%d):mgsl_bh_handler() work item action=%d\n",
1075 __FILE__,__LINE__,action);
1076
1077 switch (action) {
1078
1079 case BH_RECEIVE:
1080 mgsl_bh_receive(info);
1081 break;
1082 case BH_TRANSMIT:
1083 mgsl_bh_transmit(info);
1084 break;
1085 case BH_STATUS:
1086 mgsl_bh_status(info);
1087 break;
1088 default:
1089 /* unknown work item ID */
1090 printk("Unknown work item ID=%08X!\n", action);
1091 break;
1092 }
1093 }
1094
1095 if ( debug_level >= DEBUG_LEVEL_BH )
1096 printk( "%s(%d):mgsl_bh_handler(%s) exit\n",
1097 __FILE__,__LINE__,info->device_name);
1098}
1099
1100static void mgsl_bh_receive(struct mgsl_struct *info)
1101{
0fab6de0 1102 bool (*get_rx_frame)(struct mgsl_struct *info) =
1da177e4
LT
1103 (info->params.mode == MGSL_MODE_HDLC ? mgsl_get_rx_frame : mgsl_get_raw_rx_frame);
1104
1105 if ( debug_level >= DEBUG_LEVEL_BH )
1106 printk( "%s(%d):mgsl_bh_receive(%s)\n",
1107 __FILE__,__LINE__,info->device_name);
1108
1109 do
1110 {
1111 if (info->rx_rcc_underrun) {
1112 unsigned long flags;
1113 spin_lock_irqsave(&info->irq_spinlock,flags);
1114 usc_start_receiver(info);
1115 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1116 return;
1117 }
1118 } while(get_rx_frame(info));
1119}
1120
1121static void mgsl_bh_transmit(struct mgsl_struct *info)
1122{
8fb06c77 1123 struct tty_struct *tty = info->port.tty;
1da177e4
LT
1124 unsigned long flags;
1125
1126 if ( debug_level >= DEBUG_LEVEL_BH )
1127 printk( "%s(%d):mgsl_bh_transmit() entry on %s\n",
1128 __FILE__,__LINE__,info->device_name);
1129
b963a844 1130 if (tty)
1da177e4 1131 tty_wakeup(tty);
1da177e4
LT
1132
1133 /* if transmitter idle and loopmode_send_done_requested
1134 * then start echoing RxD to TxD
1135 */
1136 spin_lock_irqsave(&info->irq_spinlock,flags);
1137 if ( !info->tx_active && info->loopmode_send_done_requested )
1138 usc_loopmode_send_done( info );
1139 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1140}
1141
1142static void mgsl_bh_status(struct mgsl_struct *info)
1143{
1144 if ( debug_level >= DEBUG_LEVEL_BH )
1145 printk( "%s(%d):mgsl_bh_status() entry on %s\n",
1146 __FILE__,__LINE__,info->device_name);
1147
1148 info->ri_chkcount = 0;
1149 info->dsr_chkcount = 0;
1150 info->dcd_chkcount = 0;
1151 info->cts_chkcount = 0;
1152}
1153
1154/* mgsl_isr_receive_status()
1155 *
1156 * Service a receive status interrupt. The type of status
1157 * interrupt is indicated by the state of the RCSR.
1158 * This is only used for HDLC mode.
1159 *
1160 * Arguments: info pointer to device instance data
1161 * Return Value: None
1162 */
1163static void mgsl_isr_receive_status( struct mgsl_struct *info )
1164{
1165 u16 status = usc_InReg( info, RCSR );
1166
1167 if ( debug_level >= DEBUG_LEVEL_ISR )
1168 printk("%s(%d):mgsl_isr_receive_status status=%04X\n",
1169 __FILE__,__LINE__,status);
1170
1171 if ( (status & RXSTATUS_ABORT_RECEIVED) &&
1172 info->loopmode_insert_requested &&
1173 usc_loopmode_active(info) )
1174 {
1175 ++info->icount.rxabort;
0fab6de0 1176 info->loopmode_insert_requested = false;
1da177e4
LT
1177
1178 /* clear CMR:13 to start echoing RxD to TxD */
1179 info->cmr_value &= ~BIT13;
1180 usc_OutReg(info, CMR, info->cmr_value);
1181
1182 /* disable received abort irq (no longer required) */
1183 usc_OutReg(info, RICR,
1184 (usc_InReg(info, RICR) & ~RXSTATUS_ABORT_RECEIVED));
1185 }
1186
1187 if (status & (RXSTATUS_EXITED_HUNT + RXSTATUS_IDLE_RECEIVED)) {
1188 if (status & RXSTATUS_EXITED_HUNT)
1189 info->icount.exithunt++;
1190 if (status & RXSTATUS_IDLE_RECEIVED)
1191 info->icount.rxidle++;
1192 wake_up_interruptible(&info->event_wait_q);
1193 }
1194
1195 if (status & RXSTATUS_OVERRUN){
1196 info->icount.rxover++;
1197 usc_process_rxoverrun_sync( info );
1198 }
1199
1200 usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
1201 usc_UnlatchRxstatusBits( info, status );
1202
1203} /* end of mgsl_isr_receive_status() */
1204
1205/* mgsl_isr_transmit_status()
1206 *
1207 * Service a transmit status interrupt
1208 * HDLC mode :end of transmit frame
1209 * Async mode:all data is sent
1210 * transmit status is indicated by bits in the TCSR.
1211 *
1212 * Arguments: info pointer to device instance data
1213 * Return Value: None
1214 */
1215static void mgsl_isr_transmit_status( struct mgsl_struct *info )
1216{
1217 u16 status = usc_InReg( info, TCSR );
1218
1219 if ( debug_level >= DEBUG_LEVEL_ISR )
1220 printk("%s(%d):mgsl_isr_transmit_status status=%04X\n",
1221 __FILE__,__LINE__,status);
1222
1223 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
1224 usc_UnlatchTxstatusBits( info, status );
1225
1226 if ( status & (TXSTATUS_UNDERRUN | TXSTATUS_ABORT_SENT) )
1227 {
1228 /* finished sending HDLC abort. This may leave */
1229 /* the TxFifo with data from the aborted frame */
1230 /* so purge the TxFifo. Also shutdown the DMA */
1231 /* channel in case there is data remaining in */
1232 /* the DMA buffer */
1233 usc_DmaCmd( info, DmaCmd_ResetTxChannel );
1234 usc_RTCmd( info, RTCmd_PurgeTxFifo );
1235 }
1236
1237 if ( status & TXSTATUS_EOF_SENT )
1238 info->icount.txok++;
1239 else if ( status & TXSTATUS_UNDERRUN )
1240 info->icount.txunder++;
1241 else if ( status & TXSTATUS_ABORT_SENT )
1242 info->icount.txabort++;
1243 else
1244 info->icount.txunder++;
1245
0fab6de0 1246 info->tx_active = false;
1da177e4
LT
1247 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1248 del_timer(&info->tx_timer);
1249
1250 if ( info->drop_rts_on_tx_done ) {
1251 usc_get_serial_signals( info );
1252 if ( info->serial_signals & SerialSignal_RTS ) {
1253 info->serial_signals &= ~SerialSignal_RTS;
1254 usc_set_serial_signals( info );
1255 }
0fab6de0 1256 info->drop_rts_on_tx_done = false;
1da177e4
LT
1257 }
1258
af69c7f9 1259#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
1260 if (info->netcount)
1261 hdlcdev_tx_done(info);
1262 else
1263#endif
1264 {
8fb06c77 1265 if (info->port.tty->stopped || info->port.tty->hw_stopped) {
1da177e4
LT
1266 usc_stop_transmitter(info);
1267 return;
1268 }
1269 info->pending_bh |= BH_TRANSMIT;
1270 }
1271
1272} /* end of mgsl_isr_transmit_status() */
1273
1274/* mgsl_isr_io_pin()
1275 *
1276 * Service an Input/Output pin interrupt. The type of
1277 * interrupt is indicated by bits in the MISR
1278 *
1279 * Arguments: info pointer to device instance data
1280 * Return Value: None
1281 */
1282static void mgsl_isr_io_pin( struct mgsl_struct *info )
1283{
1284 struct mgsl_icount *icount;
1285 u16 status = usc_InReg( info, MISR );
1286
1287 if ( debug_level >= DEBUG_LEVEL_ISR )
1288 printk("%s(%d):mgsl_isr_io_pin status=%04X\n",
1289 __FILE__,__LINE__,status);
1290
1291 usc_ClearIrqPendingBits( info, IO_PIN );
1292 usc_UnlatchIostatusBits( info, status );
1293
1294 if (status & (MISCSTATUS_CTS_LATCHED | MISCSTATUS_DCD_LATCHED |
1295 MISCSTATUS_DSR_LATCHED | MISCSTATUS_RI_LATCHED) ) {
1296 icount = &info->icount;
1297 /* update input line counters */
1298 if (status & MISCSTATUS_RI_LATCHED) {
1299 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1300 usc_DisablestatusIrqs(info,SICR_RI);
1301 icount->rng++;
1302 if ( status & MISCSTATUS_RI )
1303 info->input_signal_events.ri_up++;
1304 else
1305 info->input_signal_events.ri_down++;
1306 }
1307 if (status & MISCSTATUS_DSR_LATCHED) {
1308 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1309 usc_DisablestatusIrqs(info,SICR_DSR);
1310 icount->dsr++;
1311 if ( status & MISCSTATUS_DSR )
1312 info->input_signal_events.dsr_up++;
1313 else
1314 info->input_signal_events.dsr_down++;
1315 }
1316 if (status & MISCSTATUS_DCD_LATCHED) {
1317 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1318 usc_DisablestatusIrqs(info,SICR_DCD);
1319 icount->dcd++;
1320 if (status & MISCSTATUS_DCD) {
1321 info->input_signal_events.dcd_up++;
1322 } else
1323 info->input_signal_events.dcd_down++;
af69c7f9 1324#if SYNCLINK_GENERIC_HDLC
fbeff3c1
KH
1325 if (info->netcount) {
1326 if (status & MISCSTATUS_DCD)
1327 netif_carrier_on(info->netdev);
1328 else
1329 netif_carrier_off(info->netdev);
1330 }
1da177e4
LT
1331#endif
1332 }
1333 if (status & MISCSTATUS_CTS_LATCHED)
1334 {
1335 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1336 usc_DisablestatusIrqs(info,SICR_CTS);
1337 icount->cts++;
1338 if ( status & MISCSTATUS_CTS )
1339 info->input_signal_events.cts_up++;
1340 else
1341 info->input_signal_events.cts_down++;
1342 }
1343 wake_up_interruptible(&info->status_event_wait_q);
1344 wake_up_interruptible(&info->event_wait_q);
1345
8fb06c77 1346 if ( (info->port.flags & ASYNC_CHECK_CD) &&
1da177e4
LT
1347 (status & MISCSTATUS_DCD_LATCHED) ) {
1348 if ( debug_level >= DEBUG_LEVEL_ISR )
1349 printk("%s CD now %s...", info->device_name,
1350 (status & MISCSTATUS_DCD) ? "on" : "off");
1351 if (status & MISCSTATUS_DCD)
8fb06c77 1352 wake_up_interruptible(&info->port.open_wait);
1da177e4
LT
1353 else {
1354 if ( debug_level >= DEBUG_LEVEL_ISR )
1355 printk("doing serial hangup...");
8fb06c77
AC
1356 if (info->port.tty)
1357 tty_hangup(info->port.tty);
1da177e4
LT
1358 }
1359 }
1360
f21ec3d2 1361 if (tty_port_cts_enabled(&info->port) &&
1da177e4 1362 (status & MISCSTATUS_CTS_LATCHED) ) {
8fb06c77 1363 if (info->port.tty->hw_stopped) {
1da177e4
LT
1364 if (status & MISCSTATUS_CTS) {
1365 if ( debug_level >= DEBUG_LEVEL_ISR )
1366 printk("CTS tx start...");
8fb06c77
AC
1367 if (info->port.tty)
1368 info->port.tty->hw_stopped = 0;
1da177e4
LT
1369 usc_start_transmitter(info);
1370 info->pending_bh |= BH_TRANSMIT;
1371 return;
1372 }
1373 } else {
1374 if (!(status & MISCSTATUS_CTS)) {
1375 if ( debug_level >= DEBUG_LEVEL_ISR )
1376 printk("CTS tx stop...");
8fb06c77
AC
1377 if (info->port.tty)
1378 info->port.tty->hw_stopped = 1;
1da177e4
LT
1379 usc_stop_transmitter(info);
1380 }
1381 }
1382 }
1383 }
1384
1385 info->pending_bh |= BH_STATUS;
1386
1387 /* for diagnostics set IRQ flag */
1388 if ( status & MISCSTATUS_TXC_LATCHED ){
1389 usc_OutReg( info, SICR,
1390 (unsigned short)(usc_InReg(info,SICR) & ~(SICR_TXC_ACTIVE+SICR_TXC_INACTIVE)) );
1391 usc_UnlatchIostatusBits( info, MISCSTATUS_TXC_LATCHED );
0fab6de0 1392 info->irq_occurred = true;
1da177e4
LT
1393 }
1394
1395} /* end of mgsl_isr_io_pin() */
1396
1397/* mgsl_isr_transmit_data()
1398 *
1399 * Service a transmit data interrupt (async mode only).
1400 *
1401 * Arguments: info pointer to device instance data
1402 * Return Value: None
1403 */
1404static void mgsl_isr_transmit_data( struct mgsl_struct *info )
1405{
1406 if ( debug_level >= DEBUG_LEVEL_ISR )
1407 printk("%s(%d):mgsl_isr_transmit_data xmit_cnt=%d\n",
1408 __FILE__,__LINE__,info->xmit_cnt);
1409
1410 usc_ClearIrqPendingBits( info, TRANSMIT_DATA );
1411
8fb06c77 1412 if (info->port.tty->stopped || info->port.tty->hw_stopped) {
1da177e4
LT
1413 usc_stop_transmitter(info);
1414 return;
1415 }
1416
1417 if ( info->xmit_cnt )
1418 usc_load_txfifo( info );
1419 else
0fab6de0 1420 info->tx_active = false;
1da177e4
LT
1421
1422 if (info->xmit_cnt < WAKEUP_CHARS)
1423 info->pending_bh |= BH_TRANSMIT;
1424
1425} /* end of mgsl_isr_transmit_data() */
1426
1427/* mgsl_isr_receive_data()
1428 *
1429 * Service a receive data interrupt. This occurs
1430 * when operating in asynchronous interrupt transfer mode.
1431 * The receive data FIFO is flushed to the receive data buffers.
1432 *
1433 * Arguments: info pointer to device instance data
1434 * Return Value: None
1435 */
1436static void mgsl_isr_receive_data( struct mgsl_struct *info )
1437{
1438 int Fifocount;
1439 u16 status;
33f0f88f 1440 int work = 0;
1da177e4 1441 unsigned char DataByte;
1da177e4
LT
1442 struct mgsl_icount *icount = &info->icount;
1443
1444 if ( debug_level >= DEBUG_LEVEL_ISR )
1445 printk("%s(%d):mgsl_isr_receive_data\n",
1446 __FILE__,__LINE__);
1447
1448 usc_ClearIrqPendingBits( info, RECEIVE_DATA );
1449
1450 /* select FIFO status for RICR readback */
1451 usc_RCmd( info, RCmd_SelectRicrRxFifostatus );
1452
1453 /* clear the Wordstatus bit so that status readback */
1454 /* only reflects the status of this byte */
1455 usc_OutReg( info, RICR+LSBONLY, (u16)(usc_InReg(info, RICR+LSBONLY) & ~BIT3 ));
1456
1457 /* flush the receive FIFO */
1458
1459 while( (Fifocount = (usc_InReg(info,RICR) >> 8)) ) {
33f0f88f
AC
1460 int flag;
1461
1da177e4
LT
1462 /* read one byte from RxFIFO */
1463 outw( (inw(info->io_base + CCAR) & 0x0780) | (RDR+LSBONLY),
1464 info->io_base + CCAR );
1465 DataByte = inb( info->io_base + CCAR );
1466
1467 /* get the status of the received byte */
1468 status = usc_InReg(info, RCSR);
1469 if ( status & (RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR +
1470 RXSTATUS_OVERRUN + RXSTATUS_BREAK_RECEIVED) )
1471 usc_UnlatchRxstatusBits(info,RXSTATUS_ALL);
1472
1da177e4
LT
1473 icount->rx++;
1474
33f0f88f 1475 flag = 0;
1da177e4
LT
1476 if ( status & (RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR +
1477 RXSTATUS_OVERRUN + RXSTATUS_BREAK_RECEIVED) ) {
1478 printk("rxerr=%04X\n",status);
1479 /* update error statistics */
1480 if ( status & RXSTATUS_BREAK_RECEIVED ) {
1481 status &= ~(RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR);
1482 icount->brk++;
1483 } else if (status & RXSTATUS_PARITY_ERROR)
1484 icount->parity++;
1485 else if (status & RXSTATUS_FRAMING_ERROR)
1486 icount->frame++;
1487 else if (status & RXSTATUS_OVERRUN) {
1488 /* must issue purge fifo cmd before */
1489 /* 16C32 accepts more receive chars */
1490 usc_RTCmd(info,RTCmd_PurgeRxFifo);
1491 icount->overrun++;
1492 }
1493
1494 /* discard char if tty control flags say so */
1495 if (status & info->ignore_status_mask)
1496 continue;
1497
1498 status &= info->read_status_mask;
1499
1500 if (status & RXSTATUS_BREAK_RECEIVED) {
33f0f88f 1501 flag = TTY_BREAK;
8fb06c77 1502 if (info->port.flags & ASYNC_SAK)
2e124b4a 1503 do_SAK(info->port.tty);
1da177e4 1504 } else if (status & RXSTATUS_PARITY_ERROR)
33f0f88f 1505 flag = TTY_PARITY;
1da177e4 1506 else if (status & RXSTATUS_FRAMING_ERROR)
33f0f88f 1507 flag = TTY_FRAME;
1da177e4 1508 } /* end of if (error) */
92a19f9c 1509 tty_insert_flip_char(&info->port, DataByte, flag);
33f0f88f
AC
1510 if (status & RXSTATUS_OVERRUN) {
1511 /* Overrun is special, since it's
1512 * reported immediately, and doesn't
1513 * affect the current character
1514 */
92a19f9c 1515 work += tty_insert_flip_char(&info->port, 0, TTY_OVERRUN);
33f0f88f 1516 }
1da177e4
LT
1517 }
1518
1519 if ( debug_level >= DEBUG_LEVEL_ISR ) {
1da177e4
LT
1520 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
1521 __FILE__,__LINE__,icount->rx,icount->brk,
1522 icount->parity,icount->frame,icount->overrun);
1523 }
1524
33f0f88f 1525 if(work)
2e124b4a 1526 tty_flip_buffer_push(&info->port);
1da177e4
LT
1527}
1528
1529/* mgsl_isr_misc()
1530 *
8dfba4d7 1531 * Service a miscellaneous interrupt source.
1da177e4
LT
1532 *
1533 * Arguments: info pointer to device extension (instance data)
1534 * Return Value: None
1535 */
1536static void mgsl_isr_misc( struct mgsl_struct *info )
1537{
1538 u16 status = usc_InReg( info, MISR );
1539
1540 if ( debug_level >= DEBUG_LEVEL_ISR )
1541 printk("%s(%d):mgsl_isr_misc status=%04X\n",
1542 __FILE__,__LINE__,status);
1543
1544 if ((status & MISCSTATUS_RCC_UNDERRUN) &&
1545 (info->params.mode == MGSL_MODE_HDLC)) {
1546
1547 /* turn off receiver and rx DMA */
1548 usc_EnableReceiver(info,DISABLE_UNCONDITIONAL);
1549 usc_DmaCmd(info, DmaCmd_ResetRxChannel);
1550 usc_UnlatchRxstatusBits(info, RXSTATUS_ALL);
1551 usc_ClearIrqPendingBits(info, RECEIVE_DATA + RECEIVE_STATUS);
1552 usc_DisableInterrupts(info, RECEIVE_DATA + RECEIVE_STATUS);
1553
1554 /* schedule BH handler to restart receiver */
1555 info->pending_bh |= BH_RECEIVE;
0fab6de0 1556 info->rx_rcc_underrun = true;
1da177e4
LT
1557 }
1558
1559 usc_ClearIrqPendingBits( info, MISC );
1560 usc_UnlatchMiscstatusBits( info, status );
1561
1562} /* end of mgsl_isr_misc() */
1563
1564/* mgsl_isr_null()
1565 *
1566 * Services undefined interrupt vectors from the
1567 * USC. (hence this function SHOULD never be called)
1568 *
1569 * Arguments: info pointer to device extension (instance data)
1570 * Return Value: None
1571 */
1572static void mgsl_isr_null( struct mgsl_struct *info )
1573{
1574
1575} /* end of mgsl_isr_null() */
1576
1577/* mgsl_isr_receive_dma()
1578 *
1579 * Service a receive DMA channel interrupt.
1580 * For this driver there are two sources of receive DMA interrupts
1581 * as identified in the Receive DMA mode Register (RDMR):
1582 *
1583 * BIT3 EOA/EOL End of List, all receive buffers in receive
1584 * buffer list have been filled (no more free buffers
1585 * available). The DMA controller has shut down.
1586 *
1587 * BIT2 EOB End of Buffer. This interrupt occurs when a receive
1588 * DMA buffer is terminated in response to completion
1589 * of a good frame or a frame with errors. The status
1590 * of the frame is stored in the buffer entry in the
1591 * list of receive buffer entries.
1592 *
1593 * Arguments: info pointer to device instance data
1594 * Return Value: None
1595 */
1596static void mgsl_isr_receive_dma( struct mgsl_struct *info )
1597{
1598 u16 status;
1599
1600 /* clear interrupt pending and IUS bit for Rx DMA IRQ */
1601 usc_OutDmaReg( info, CDIR, BIT9+BIT1 );
1602
1603 /* Read the receive DMA status to identify interrupt type. */
1604 /* This also clears the status bits. */
1605 status = usc_InDmaReg( info, RDMR );
1606
1607 if ( debug_level >= DEBUG_LEVEL_ISR )
1608 printk("%s(%d):mgsl_isr_receive_dma(%s) status=%04X\n",
1609 __FILE__,__LINE__,info->device_name,status);
1610
1611 info->pending_bh |= BH_RECEIVE;
1612
1613 if ( status & BIT3 ) {
0fab6de0 1614 info->rx_overflow = true;
1da177e4
LT
1615 info->icount.buf_overrun++;
1616 }
1617
1618} /* end of mgsl_isr_receive_dma() */
1619
1620/* mgsl_isr_transmit_dma()
1621 *
1622 * This function services a transmit DMA channel interrupt.
1623 *
1624 * For this driver there is one source of transmit DMA interrupts
1625 * as identified in the Transmit DMA Mode Register (TDMR):
1626 *
1627 * BIT2 EOB End of Buffer. This interrupt occurs when a
1628 * transmit DMA buffer has been emptied.
1629 *
1630 * The driver maintains enough transmit DMA buffers to hold at least
1631 * one max frame size transmit frame. When operating in a buffered
1632 * transmit mode, there may be enough transmit DMA buffers to hold at
1633 * least two or more max frame size frames. On an EOB condition,
1634 * determine if there are any queued transmit buffers and copy into
1635 * transmit DMA buffers if we have room.
1636 *
1637 * Arguments: info pointer to device instance data
1638 * Return Value: None
1639 */
1640static void mgsl_isr_transmit_dma( struct mgsl_struct *info )
1641{
1642 u16 status;
1643
1644 /* clear interrupt pending and IUS bit for Tx DMA IRQ */
1645 usc_OutDmaReg(info, CDIR, BIT8+BIT0 );
1646
1647 /* Read the transmit DMA status to identify interrupt type. */
1648 /* This also clears the status bits. */
1649
1650 status = usc_InDmaReg( info, TDMR );
1651
1652 if ( debug_level >= DEBUG_LEVEL_ISR )
1653 printk("%s(%d):mgsl_isr_transmit_dma(%s) status=%04X\n",
1654 __FILE__,__LINE__,info->device_name,status);
1655
1656 if ( status & BIT2 ) {
1657 --info->tx_dma_buffers_used;
1658
1659 /* if there are transmit frames queued,
1660 * try to load the next one
1661 */
1662 if ( load_next_tx_holding_buffer(info) ) {
1663 /* if call returns non-zero value, we have
1664 * at least one free tx holding buffer
1665 */
1666 info->pending_bh |= BH_TRANSMIT;
1667 }
1668 }
1669
1670} /* end of mgsl_isr_transmit_dma() */
1671
1672/* mgsl_interrupt()
1673 *
1674 * Interrupt service routine entry point.
1675 *
1676 * Arguments:
1677 *
1678 * irq interrupt number that caused interrupt
1679 * dev_id device ID supplied during interrupt registration
1da177e4
LT
1680 *
1681 * Return Value: None
1682 */
a6f97b29 1683static irqreturn_t mgsl_interrupt(int dummy, void *dev_id)
1da177e4 1684{
a6f97b29 1685 struct mgsl_struct *info = dev_id;
1da177e4
LT
1686 u16 UscVector;
1687 u16 DmaVector;
1688
1689 if ( debug_level >= DEBUG_LEVEL_ISR )
a6f97b29
JG
1690 printk(KERN_DEBUG "%s(%d):mgsl_interrupt(%d)entry.\n",
1691 __FILE__, __LINE__, info->irq_level);
1da177e4 1692
1da177e4
LT
1693 spin_lock(&info->irq_spinlock);
1694
1695 for(;;) {
1696 /* Read the interrupt vectors from hardware. */
1697 UscVector = usc_InReg(info, IVR) >> 9;
1698 DmaVector = usc_InDmaReg(info, DIVR);
1699
1700 if ( debug_level >= DEBUG_LEVEL_ISR )
1701 printk("%s(%d):%s UscVector=%08X DmaVector=%08X\n",
1702 __FILE__,__LINE__,info->device_name,UscVector,DmaVector);
1703
1704 if ( !UscVector && !DmaVector )
1705 break;
1706
1707 /* Dispatch interrupt vector */
1708 if ( UscVector )
1709 (*UscIsrTable[UscVector])(info);
1710 else if ( (DmaVector&(BIT10|BIT9)) == BIT10)
1711 mgsl_isr_transmit_dma(info);
1712 else
1713 mgsl_isr_receive_dma(info);
1714
1715 if ( info->isr_overflow ) {
a6f97b29
JG
1716 printk(KERN_ERR "%s(%d):%s isr overflow irq=%d\n",
1717 __FILE__, __LINE__, info->device_name, info->irq_level);
1da177e4
LT
1718 usc_DisableMasterIrqBit(info);
1719 usc_DisableDmaInterrupts(info,DICR_MASTER);
1720 break;
1721 }
1722 }
1723
1724 /* Request bottom half processing if there's something
1725 * for it to do and the bh is not already running
1726 */
1727
1728 if ( info->pending_bh && !info->bh_running && !info->bh_requested ) {
1729 if ( debug_level >= DEBUG_LEVEL_ISR )
1730 printk("%s(%d):%s queueing bh task.\n",
1731 __FILE__,__LINE__,info->device_name);
1732 schedule_work(&info->task);
0fab6de0 1733 info->bh_requested = true;
1da177e4
LT
1734 }
1735
1736 spin_unlock(&info->irq_spinlock);
1737
1738 if ( debug_level >= DEBUG_LEVEL_ISR )
a6f97b29
JG
1739 printk(KERN_DEBUG "%s(%d):mgsl_interrupt(%d)exit.\n",
1740 __FILE__, __LINE__, info->irq_level);
1741
1da177e4
LT
1742 return IRQ_HANDLED;
1743} /* end of mgsl_interrupt() */
1744
1745/* startup()
1746 *
1747 * Initialize and start device.
1748 *
1749 * Arguments: info pointer to device instance data
1750 * Return Value: 0 if success, otherwise error code
1751 */
1752static int startup(struct mgsl_struct * info)
1753{
1754 int retval = 0;
1755
1756 if ( debug_level >= DEBUG_LEVEL_INFO )
1757 printk("%s(%d):mgsl_startup(%s)\n",__FILE__,__LINE__,info->device_name);
1758
8fb06c77 1759 if (info->port.flags & ASYNC_INITIALIZED)
1da177e4
LT
1760 return 0;
1761
1762 if (!info->xmit_buf) {
1763 /* allocate a page of memory for a transmit buffer */
1764 info->xmit_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1765 if (!info->xmit_buf) {
1766 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1767 __FILE__,__LINE__,info->device_name);
1768 return -ENOMEM;
1769 }
1770 }
1771
1772 info->pending_bh = 0;
1773
9661239f
PF
1774 memset(&info->icount, 0, sizeof(info->icount));
1775
40565f19 1776 setup_timer(&info->tx_timer, mgsl_tx_timeout, (unsigned long)info);
1da177e4
LT
1777
1778 /* Allocate and claim adapter resources */
1779 retval = mgsl_claim_resources(info);
1780
1781 /* perform existence check and diagnostics */
1782 if ( !retval )
1783 retval = mgsl_adapter_test(info);
1784
1785 if ( retval ) {
8fb06c77
AC
1786 if (capable(CAP_SYS_ADMIN) && info->port.tty)
1787 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4
LT
1788 mgsl_release_resources(info);
1789 return retval;
1790 }
1791
1792 /* program hardware for current parameters */
1793 mgsl_change_params(info);
1794
8fb06c77
AC
1795 if (info->port.tty)
1796 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4 1797
8fb06c77 1798 info->port.flags |= ASYNC_INITIALIZED;
1da177e4
LT
1799
1800 return 0;
1801
1802} /* end of startup() */
1803
1804/* shutdown()
1805 *
1806 * Called by mgsl_close() and mgsl_hangup() to shutdown hardware
1807 *
1808 * Arguments: info pointer to device instance data
1809 * Return Value: None
1810 */
1811static void shutdown(struct mgsl_struct * info)
1812{
1813 unsigned long flags;
1814
8fb06c77 1815 if (!(info->port.flags & ASYNC_INITIALIZED))
1da177e4
LT
1816 return;
1817
1818 if (debug_level >= DEBUG_LEVEL_INFO)
1819 printk("%s(%d):mgsl_shutdown(%s)\n",
1820 __FILE__,__LINE__, info->device_name );
1821
1822 /* clear status wait queue because status changes */
1823 /* can't happen after shutting down the hardware */
1824 wake_up_interruptible(&info->status_event_wait_q);
1825 wake_up_interruptible(&info->event_wait_q);
1826
40565f19 1827 del_timer_sync(&info->tx_timer);
1da177e4
LT
1828
1829 if (info->xmit_buf) {
1830 free_page((unsigned long) info->xmit_buf);
1831 info->xmit_buf = NULL;
1832 }
1833
1834 spin_lock_irqsave(&info->irq_spinlock,flags);
1835 usc_DisableMasterIrqBit(info);
1836 usc_stop_receiver(info);
1837 usc_stop_transmitter(info);
1838 usc_DisableInterrupts(info,RECEIVE_DATA + RECEIVE_STATUS +
1839 TRANSMIT_DATA + TRANSMIT_STATUS + IO_PIN + MISC );
1840 usc_DisableDmaInterrupts(info,DICR_MASTER + DICR_TRANSMIT + DICR_RECEIVE);
adc8d746 1841
1da177e4
LT
1842 /* Disable DMAEN (Port 7, Bit 14) */
1843 /* This disconnects the DMA request signal from the ISA bus */
1844 /* on the ISA adapter. This has no effect for the PCI adapter */
1845 usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT15) | BIT14));
adc8d746 1846
1da177e4
LT
1847 /* Disable INTEN (Port 6, Bit12) */
1848 /* This disconnects the IRQ request signal to the ISA bus */
1849 /* on the ISA adapter. This has no effect for the PCI adapter */
1850 usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) | BIT12));
adc8d746
AC
1851
1852 if (!info->port.tty || info->port.tty->termios.c_cflag & HUPCL) {
1da177e4
LT
1853 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1854 usc_set_serial_signals(info);
1855 }
adc8d746 1856
1da177e4
LT
1857 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1858
1859 mgsl_release_resources(info);
1860
8fb06c77
AC
1861 if (info->port.tty)
1862 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4 1863
8fb06c77 1864 info->port.flags &= ~ASYNC_INITIALIZED;
1da177e4
LT
1865
1866} /* end of shutdown() */
1867
1868static void mgsl_program_hw(struct mgsl_struct *info)
1869{
1870 unsigned long flags;
1871
1872 spin_lock_irqsave(&info->irq_spinlock,flags);
1873
1874 usc_stop_receiver(info);
1875 usc_stop_transmitter(info);
1876 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1877
1878 if (info->params.mode == MGSL_MODE_HDLC ||
1879 info->params.mode == MGSL_MODE_RAW ||
1880 info->netcount)
1881 usc_set_sync_mode(info);
1882 else
1883 usc_set_async_mode(info);
1884
1885 usc_set_serial_signals(info);
1886
1887 info->dcd_chkcount = 0;
1888 info->cts_chkcount = 0;
1889 info->ri_chkcount = 0;
1890 info->dsr_chkcount = 0;
1891
1892 usc_EnableStatusIrqs(info,SICR_CTS+SICR_DSR+SICR_DCD+SICR_RI);
1893 usc_EnableInterrupts(info, IO_PIN);
1894 usc_get_serial_signals(info);
1895
adc8d746 1896 if (info->netcount || info->port.tty->termios.c_cflag & CREAD)
1da177e4
LT
1897 usc_start_receiver(info);
1898
1899 spin_unlock_irqrestore(&info->irq_spinlock,flags);
1900}
1901
1902/* Reconfigure adapter based on new parameters
1903 */
1904static void mgsl_change_params(struct mgsl_struct *info)
1905{
1906 unsigned cflag;
1907 int bits_per_char;
1908
adc8d746 1909 if (!info->port.tty)
1da177e4
LT
1910 return;
1911
1912 if (debug_level >= DEBUG_LEVEL_INFO)
1913 printk("%s(%d):mgsl_change_params(%s)\n",
1914 __FILE__,__LINE__, info->device_name );
1915
adc8d746 1916 cflag = info->port.tty->termios.c_cflag;
1da177e4
LT
1917
1918 /* if B0 rate (hangup) specified then negate DTR and RTS */
1919 /* otherwise assert DTR and RTS */
1920 if (cflag & CBAUD)
1921 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1922 else
1923 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
1924
1925 /* byte size and parity */
1926
1927 switch (cflag & CSIZE) {
1928 case CS5: info->params.data_bits = 5; break;
1929 case CS6: info->params.data_bits = 6; break;
1930 case CS7: info->params.data_bits = 7; break;
1931 case CS8: info->params.data_bits = 8; break;
1932 /* Never happens, but GCC is too dumb to figure it out */
1933 default: info->params.data_bits = 7; break;
1934 }
1935
1936 if (cflag & CSTOPB)
1937 info->params.stop_bits = 2;
1938 else
1939 info->params.stop_bits = 1;
1940
1941 info->params.parity = ASYNC_PARITY_NONE;
1942 if (cflag & PARENB) {
1943 if (cflag & PARODD)
1944 info->params.parity = ASYNC_PARITY_ODD;
1945 else
1946 info->params.parity = ASYNC_PARITY_EVEN;
1947#ifdef CMSPAR
1948 if (cflag & CMSPAR)
1949 info->params.parity = ASYNC_PARITY_SPACE;
1950#endif
1951 }
1952
1953 /* calculate number of jiffies to transmit a full
1954 * FIFO (32 bytes) at specified data rate
1955 */
1956 bits_per_char = info->params.data_bits +
1957 info->params.stop_bits + 1;
1958
1959 /* if port data rate is set to 460800 or less then
1960 * allow tty settings to override, otherwise keep the
1961 * current data rate.
1962 */
1963 if (info->params.data_rate <= 460800)
8fb06c77 1964 info->params.data_rate = tty_get_baud_rate(info->port.tty);
1da177e4
LT
1965
1966 if ( info->params.data_rate ) {
1967 info->timeout = (32*HZ*bits_per_char) /
1968 info->params.data_rate;
1969 }
1970 info->timeout += HZ/50; /* Add .02 seconds of slop */
1971
1972 if (cflag & CRTSCTS)
8fb06c77 1973 info->port.flags |= ASYNC_CTS_FLOW;
1da177e4 1974 else
8fb06c77 1975 info->port.flags &= ~ASYNC_CTS_FLOW;
1da177e4
LT
1976
1977 if (cflag & CLOCAL)
8fb06c77 1978 info->port.flags &= ~ASYNC_CHECK_CD;
1da177e4 1979 else
8fb06c77 1980 info->port.flags |= ASYNC_CHECK_CD;
1da177e4
LT
1981
1982 /* process tty input control flags */
1983
1984 info->read_status_mask = RXSTATUS_OVERRUN;
8fb06c77 1985 if (I_INPCK(info->port.tty))
1da177e4 1986 info->read_status_mask |= RXSTATUS_PARITY_ERROR | RXSTATUS_FRAMING_ERROR;
8fb06c77 1987 if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
1da177e4
LT
1988 info->read_status_mask |= RXSTATUS_BREAK_RECEIVED;
1989
8fb06c77 1990 if (I_IGNPAR(info->port.tty))
1da177e4 1991 info->ignore_status_mask |= RXSTATUS_PARITY_ERROR | RXSTATUS_FRAMING_ERROR;
8fb06c77 1992 if (I_IGNBRK(info->port.tty)) {
1da177e4
LT
1993 info->ignore_status_mask |= RXSTATUS_BREAK_RECEIVED;
1994 /* If ignoring parity and break indicators, ignore
1995 * overruns too. (For real raw support).
1996 */
8fb06c77 1997 if (I_IGNPAR(info->port.tty))
1da177e4
LT
1998 info->ignore_status_mask |= RXSTATUS_OVERRUN;
1999 }
2000
2001 mgsl_program_hw(info);
2002
2003} /* end of mgsl_change_params() */
2004
2005/* mgsl_put_char()
2006 *
2007 * Add a character to the transmit buffer.
2008 *
2009 * Arguments: tty pointer to tty information structure
2010 * ch character to add to transmit buffer
2011 *
2012 * Return Value: None
2013 */
55da7789 2014static int mgsl_put_char(struct tty_struct *tty, unsigned char ch)
1da177e4 2015{
07648230 2016 struct mgsl_struct *info = tty->driver_data;
1da177e4 2017 unsigned long flags;
07648230 2018 int ret = 0;
1da177e4 2019
07648230 2020 if (debug_level >= DEBUG_LEVEL_INFO) {
5098021e 2021 printk(KERN_DEBUG "%s(%d):mgsl_put_char(%d) on %s\n",
07648230 2022 __FILE__, __LINE__, ch, info->device_name);
1da177e4
LT
2023 }
2024
2025 if (mgsl_paranoia_check(info, tty->name, "mgsl_put_char"))
55da7789 2026 return 0;
1da177e4 2027
ca1cce49 2028 if (!info->xmit_buf)
55da7789 2029 return 0;
1da177e4 2030
07648230 2031 spin_lock_irqsave(&info->irq_spinlock, flags);
1da177e4 2032
07648230 2033 if ((info->params.mode == MGSL_MODE_ASYNC ) || !info->tx_active) {
1da177e4
LT
2034 if (info->xmit_cnt < SERIAL_XMIT_SIZE - 1) {
2035 info->xmit_buf[info->xmit_head++] = ch;
2036 info->xmit_head &= SERIAL_XMIT_SIZE-1;
2037 info->xmit_cnt++;
55da7789 2038 ret = 1;
1da177e4
LT
2039 }
2040 }
07648230 2041 spin_unlock_irqrestore(&info->irq_spinlock, flags);
55da7789 2042 return ret;
1da177e4
LT
2043
2044} /* end of mgsl_put_char() */
2045
2046/* mgsl_flush_chars()
2047 *
2048 * Enable transmitter so remaining characters in the
2049 * transmit buffer are sent.
2050 *
2051 * Arguments: tty pointer to tty information structure
2052 * Return Value: None
2053 */
2054static void mgsl_flush_chars(struct tty_struct *tty)
2055{
c9f19e96 2056 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2057 unsigned long flags;
2058
2059 if ( debug_level >= DEBUG_LEVEL_INFO )
2060 printk( "%s(%d):mgsl_flush_chars() entry on %s xmit_cnt=%d\n",
2061 __FILE__,__LINE__,info->device_name,info->xmit_cnt);
2062
2063 if (mgsl_paranoia_check(info, tty->name, "mgsl_flush_chars"))
2064 return;
2065
2066 if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
2067 !info->xmit_buf)
2068 return;
2069
2070 if ( debug_level >= DEBUG_LEVEL_INFO )
2071 printk( "%s(%d):mgsl_flush_chars() entry on %s starting transmitter\n",
2072 __FILE__,__LINE__,info->device_name );
2073
2074 spin_lock_irqsave(&info->irq_spinlock,flags);
2075
2076 if (!info->tx_active) {
2077 if ( (info->params.mode == MGSL_MODE_HDLC ||
2078 info->params.mode == MGSL_MODE_RAW) && info->xmit_cnt ) {
2079 /* operating in synchronous (frame oriented) mode */
2080 /* copy data from circular xmit_buf to */
2081 /* transmit DMA buffer. */
2082 mgsl_load_tx_dma_buffer(info,
2083 info->xmit_buf,info->xmit_cnt);
2084 }
2085 usc_start_transmitter(info);
2086 }
2087
2088 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2089
2090} /* end of mgsl_flush_chars() */
2091
2092/* mgsl_write()
2093 *
2094 * Send a block of data
2095 *
2096 * Arguments:
2097 *
2098 * tty pointer to tty information structure
2099 * buf pointer to buffer containing send data
2100 * count size of send data in bytes
2101 *
2102 * Return Value: number of characters written
2103 */
2104static int mgsl_write(struct tty_struct * tty,
2105 const unsigned char *buf, int count)
2106{
2107 int c, ret = 0;
c9f19e96 2108 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2109 unsigned long flags;
2110
2111 if ( debug_level >= DEBUG_LEVEL_INFO )
2112 printk( "%s(%d):mgsl_write(%s) count=%d\n",
2113 __FILE__,__LINE__,info->device_name,count);
2114
2115 if (mgsl_paranoia_check(info, tty->name, "mgsl_write"))
2116 goto cleanup;
2117
ca1cce49 2118 if (!info->xmit_buf)
1da177e4
LT
2119 goto cleanup;
2120
2121 if ( info->params.mode == MGSL_MODE_HDLC ||
2122 info->params.mode == MGSL_MODE_RAW ) {
2123 /* operating in synchronous (frame oriented) mode */
1da177e4
LT
2124 if (info->tx_active) {
2125
2126 if ( info->params.mode == MGSL_MODE_HDLC ) {
2127 ret = 0;
2128 goto cleanup;
2129 }
2130 /* transmitter is actively sending data -
2131 * if we have multiple transmit dma and
2132 * holding buffers, attempt to queue this
2133 * frame for transmission at a later time.
2134 */
2135 if (info->tx_holding_count >= info->num_tx_holding_buffers ) {
2136 /* no tx holding buffers available */
2137 ret = 0;
2138 goto cleanup;
2139 }
2140
2141 /* queue transmit frame request */
2142 ret = count;
2143 save_tx_buffer_request(info,buf,count);
2144
2145 /* if we have sufficient tx dma buffers,
2146 * load the next buffered tx request
2147 */
2148 spin_lock_irqsave(&info->irq_spinlock,flags);
2149 load_next_tx_holding_buffer(info);
2150 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2151 goto cleanup;
2152 }
2153
2154 /* if operating in HDLC LoopMode and the adapter */
2155 /* has yet to be inserted into the loop, we can't */
2156 /* transmit */
2157
2158 if ( (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) &&
2159 !usc_loopmode_active(info) )
2160 {
2161 ret = 0;
2162 goto cleanup;
2163 }
2164
2165 if ( info->xmit_cnt ) {
2166 /* Send accumulated from send_char() calls */
2167 /* as frame and wait before accepting more data. */
2168 ret = 0;
2169
2170 /* copy data from circular xmit_buf to */
2171 /* transmit DMA buffer. */
2172 mgsl_load_tx_dma_buffer(info,
2173 info->xmit_buf,info->xmit_cnt);
2174 if ( debug_level >= DEBUG_LEVEL_INFO )
2175 printk( "%s(%d):mgsl_write(%s) sync xmit_cnt flushing\n",
2176 __FILE__,__LINE__,info->device_name);
2177 } else {
2178 if ( debug_level >= DEBUG_LEVEL_INFO )
2179 printk( "%s(%d):mgsl_write(%s) sync transmit accepted\n",
2180 __FILE__,__LINE__,info->device_name);
2181 ret = count;
2182 info->xmit_cnt = count;
2183 mgsl_load_tx_dma_buffer(info,buf,count);
2184 }
2185 } else {
2186 while (1) {
2187 spin_lock_irqsave(&info->irq_spinlock,flags);
2188 c = min_t(int, count,
2189 min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
2190 SERIAL_XMIT_SIZE - info->xmit_head));
2191 if (c <= 0) {
2192 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2193 break;
2194 }
2195 memcpy(info->xmit_buf + info->xmit_head, buf, c);
2196 info->xmit_head = ((info->xmit_head + c) &
2197 (SERIAL_XMIT_SIZE-1));
2198 info->xmit_cnt += c;
2199 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2200 buf += c;
2201 count -= c;
2202 ret += c;
2203 }
2204 }
2205
2206 if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
2207 spin_lock_irqsave(&info->irq_spinlock,flags);
2208 if (!info->tx_active)
2209 usc_start_transmitter(info);
2210 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2211 }
2212cleanup:
2213 if ( debug_level >= DEBUG_LEVEL_INFO )
2214 printk( "%s(%d):mgsl_write(%s) returning=%d\n",
2215 __FILE__,__LINE__,info->device_name,ret);
2216
2217 return ret;
2218
2219} /* end of mgsl_write() */
2220
2221/* mgsl_write_room()
2222 *
2223 * Return the count of free bytes in transmit buffer
2224 *
2225 * Arguments: tty pointer to tty info structure
2226 * Return Value: None
2227 */
2228static int mgsl_write_room(struct tty_struct *tty)
2229{
c9f19e96 2230 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2231 int ret;
2232
2233 if (mgsl_paranoia_check(info, tty->name, "mgsl_write_room"))
2234 return 0;
2235 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
2236 if (ret < 0)
2237 ret = 0;
2238
2239 if (debug_level >= DEBUG_LEVEL_INFO)
2240 printk("%s(%d):mgsl_write_room(%s)=%d\n",
2241 __FILE__,__LINE__, info->device_name,ret );
2242
2243 if ( info->params.mode == MGSL_MODE_HDLC ||
2244 info->params.mode == MGSL_MODE_RAW ) {
2245 /* operating in synchronous (frame oriented) mode */
2246 if ( info->tx_active )
2247 return 0;
2248 else
2249 return HDLC_MAX_FRAME_SIZE;
2250 }
2251
2252 return ret;
2253
2254} /* end of mgsl_write_room() */
2255
2256/* mgsl_chars_in_buffer()
2257 *
2258 * Return the count of bytes in transmit buffer
2259 *
2260 * Arguments: tty pointer to tty info structure
2261 * Return Value: None
2262 */
2263static int mgsl_chars_in_buffer(struct tty_struct *tty)
2264{
c9f19e96 2265 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2266
2267 if (debug_level >= DEBUG_LEVEL_INFO)
2268 printk("%s(%d):mgsl_chars_in_buffer(%s)\n",
2269 __FILE__,__LINE__, info->device_name );
2270
2271 if (mgsl_paranoia_check(info, tty->name, "mgsl_chars_in_buffer"))
2272 return 0;
2273
2274 if (debug_level >= DEBUG_LEVEL_INFO)
2275 printk("%s(%d):mgsl_chars_in_buffer(%s)=%d\n",
2276 __FILE__,__LINE__, info->device_name,info->xmit_cnt );
2277
2278 if ( info->params.mode == MGSL_MODE_HDLC ||
2279 info->params.mode == MGSL_MODE_RAW ) {
2280 /* operating in synchronous (frame oriented) mode */
2281 if ( info->tx_active )
2282 return info->max_frame_size;
2283 else
2284 return 0;
2285 }
2286
2287 return info->xmit_cnt;
2288} /* end of mgsl_chars_in_buffer() */
2289
2290/* mgsl_flush_buffer()
2291 *
2292 * Discard all data in the send buffer
2293 *
2294 * Arguments: tty pointer to tty info structure
2295 * Return Value: None
2296 */
2297static void mgsl_flush_buffer(struct tty_struct *tty)
2298{
c9f19e96 2299 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2300 unsigned long flags;
2301
2302 if (debug_level >= DEBUG_LEVEL_INFO)
2303 printk("%s(%d):mgsl_flush_buffer(%s) entry\n",
2304 __FILE__,__LINE__, info->device_name );
2305
2306 if (mgsl_paranoia_check(info, tty->name, "mgsl_flush_buffer"))
2307 return;
2308
2309 spin_lock_irqsave(&info->irq_spinlock,flags);
2310 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2311 del_timer(&info->tx_timer);
2312 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2313
1da177e4
LT
2314 tty_wakeup(tty);
2315}
2316
2317/* mgsl_send_xchar()
2318 *
2319 * Send a high-priority XON/XOFF character
2320 *
2321 * Arguments: tty pointer to tty info structure
2322 * ch character to send
2323 * Return Value: None
2324 */
2325static void mgsl_send_xchar(struct tty_struct *tty, char ch)
2326{
c9f19e96 2327 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2328 unsigned long flags;
2329
2330 if (debug_level >= DEBUG_LEVEL_INFO)
2331 printk("%s(%d):mgsl_send_xchar(%s,%d)\n",
2332 __FILE__,__LINE__, info->device_name, ch );
2333
2334 if (mgsl_paranoia_check(info, tty->name, "mgsl_send_xchar"))
2335 return;
2336
2337 info->x_char = ch;
2338 if (ch) {
2339 /* Make sure transmit interrupts are on */
2340 spin_lock_irqsave(&info->irq_spinlock,flags);
2341 if (!info->tx_enabled)
2342 usc_start_transmitter(info);
2343 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2344 }
2345} /* end of mgsl_send_xchar() */
2346
2347/* mgsl_throttle()
2348 *
2349 * Signal remote device to throttle send data (our receive data)
2350 *
2351 * Arguments: tty pointer to tty info structure
2352 * Return Value: None
2353 */
2354static void mgsl_throttle(struct tty_struct * tty)
2355{
c9f19e96 2356 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2357 unsigned long flags;
2358
2359 if (debug_level >= DEBUG_LEVEL_INFO)
2360 printk("%s(%d):mgsl_throttle(%s) entry\n",
2361 __FILE__,__LINE__, info->device_name );
2362
2363 if (mgsl_paranoia_check(info, tty->name, "mgsl_throttle"))
2364 return;
2365
2366 if (I_IXOFF(tty))
2367 mgsl_send_xchar(tty, STOP_CHAR(tty));
adc8d746
AC
2368
2369 if (tty->termios.c_cflag & CRTSCTS) {
1da177e4
LT
2370 spin_lock_irqsave(&info->irq_spinlock,flags);
2371 info->serial_signals &= ~SerialSignal_RTS;
2372 usc_set_serial_signals(info);
2373 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2374 }
2375} /* end of mgsl_throttle() */
2376
2377/* mgsl_unthrottle()
2378 *
2379 * Signal remote device to stop throttling send data (our receive data)
2380 *
2381 * Arguments: tty pointer to tty info structure
2382 * Return Value: None
2383 */
2384static void mgsl_unthrottle(struct tty_struct * tty)
2385{
c9f19e96 2386 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2387 unsigned long flags;
2388
2389 if (debug_level >= DEBUG_LEVEL_INFO)
2390 printk("%s(%d):mgsl_unthrottle(%s) entry\n",
2391 __FILE__,__LINE__, info->device_name );
2392
2393 if (mgsl_paranoia_check(info, tty->name, "mgsl_unthrottle"))
2394 return;
2395
2396 if (I_IXOFF(tty)) {
2397 if (info->x_char)
2398 info->x_char = 0;
2399 else
2400 mgsl_send_xchar(tty, START_CHAR(tty));
2401 }
adc8d746
AC
2402
2403 if (tty->termios.c_cflag & CRTSCTS) {
1da177e4
LT
2404 spin_lock_irqsave(&info->irq_spinlock,flags);
2405 info->serial_signals |= SerialSignal_RTS;
2406 usc_set_serial_signals(info);
2407 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2408 }
2409
2410} /* end of mgsl_unthrottle() */
2411
2412/* mgsl_get_stats()
2413 *
2414 * get the current serial parameters information
2415 *
2416 * Arguments: info pointer to device instance data
2417 * user_icount pointer to buffer to hold returned stats
2418 *
2419 * Return Value: 0 if success, otherwise error code
2420 */
2421static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount __user *user_icount)
2422{
2423 int err;
2424
2425 if (debug_level >= DEBUG_LEVEL_INFO)
2426 printk("%s(%d):mgsl_get_params(%s)\n",
2427 __FILE__,__LINE__, info->device_name);
2428
9661239f
PF
2429 if (!user_icount) {
2430 memset(&info->icount, 0, sizeof(info->icount));
2431 } else {
f602501d 2432 mutex_lock(&info->port.mutex);
9661239f 2433 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
f602501d 2434 mutex_unlock(&info->port.mutex);
9661239f
PF
2435 if (err)
2436 return -EFAULT;
1da177e4
LT
2437 }
2438
2439 return 0;
2440
2441} /* end of mgsl_get_stats() */
2442
2443/* mgsl_get_params()
2444 *
2445 * get the current serial parameters information
2446 *
2447 * Arguments: info pointer to device instance data
2448 * user_params pointer to buffer to hold returned params
2449 *
2450 * Return Value: 0 if success, otherwise error code
2451 */
2452static int mgsl_get_params(struct mgsl_struct * info, MGSL_PARAMS __user *user_params)
2453{
2454 int err;
2455 if (debug_level >= DEBUG_LEVEL_INFO)
2456 printk("%s(%d):mgsl_get_params(%s)\n",
2457 __FILE__,__LINE__, info->device_name);
2458
f602501d 2459 mutex_lock(&info->port.mutex);
1da177e4 2460 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
f602501d 2461 mutex_unlock(&info->port.mutex);
1da177e4
LT
2462 if (err) {
2463 if ( debug_level >= DEBUG_LEVEL_INFO )
2464 printk( "%s(%d):mgsl_get_params(%s) user buffer copy failed\n",
2465 __FILE__,__LINE__,info->device_name);
2466 return -EFAULT;
2467 }
2468
2469 return 0;
2470
2471} /* end of mgsl_get_params() */
2472
2473/* mgsl_set_params()
2474 *
2475 * set the serial parameters
2476 *
2477 * Arguments:
2478 *
2479 * info pointer to device instance data
2480 * new_params user buffer containing new serial params
2481 *
2482 * Return Value: 0 if success, otherwise error code
2483 */
2484static int mgsl_set_params(struct mgsl_struct * info, MGSL_PARAMS __user *new_params)
2485{
2486 unsigned long flags;
2487 MGSL_PARAMS tmp_params;
2488 int err;
2489
2490 if (debug_level >= DEBUG_LEVEL_INFO)
2491 printk("%s(%d):mgsl_set_params %s\n", __FILE__,__LINE__,
2492 info->device_name );
2493 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
2494 if (err) {
2495 if ( debug_level >= DEBUG_LEVEL_INFO )
2496 printk( "%s(%d):mgsl_set_params(%s) user buffer copy failed\n",
2497 __FILE__,__LINE__,info->device_name);
2498 return -EFAULT;
2499 }
2500
f602501d 2501 mutex_lock(&info->port.mutex);
1da177e4
LT
2502 spin_lock_irqsave(&info->irq_spinlock,flags);
2503 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
2504 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2505
2506 mgsl_change_params(info);
f602501d 2507 mutex_unlock(&info->port.mutex);
1da177e4
LT
2508
2509 return 0;
2510
2511} /* end of mgsl_set_params() */
2512
2513/* mgsl_get_txidle()
2514 *
2515 * get the current transmit idle mode
2516 *
2517 * Arguments: info pointer to device instance data
2518 * idle_mode pointer to buffer to hold returned idle mode
2519 *
2520 * Return Value: 0 if success, otherwise error code
2521 */
2522static int mgsl_get_txidle(struct mgsl_struct * info, int __user *idle_mode)
2523{
2524 int err;
2525
2526 if (debug_level >= DEBUG_LEVEL_INFO)
2527 printk("%s(%d):mgsl_get_txidle(%s)=%d\n",
2528 __FILE__,__LINE__, info->device_name, info->idle_mode);
2529
2530 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
2531 if (err) {
2532 if ( debug_level >= DEBUG_LEVEL_INFO )
2533 printk( "%s(%d):mgsl_get_txidle(%s) user buffer copy failed\n",
2534 __FILE__,__LINE__,info->device_name);
2535 return -EFAULT;
2536 }
2537
2538 return 0;
2539
2540} /* end of mgsl_get_txidle() */
2541
2542/* mgsl_set_txidle() service ioctl to set transmit idle mode
2543 *
2544 * Arguments: info pointer to device instance data
2545 * idle_mode new idle mode
2546 *
2547 * Return Value: 0 if success, otherwise error code
2548 */
2549static int mgsl_set_txidle(struct mgsl_struct * info, int idle_mode)
2550{
2551 unsigned long flags;
2552
2553 if (debug_level >= DEBUG_LEVEL_INFO)
2554 printk("%s(%d):mgsl_set_txidle(%s,%d)\n", __FILE__,__LINE__,
2555 info->device_name, idle_mode );
2556
2557 spin_lock_irqsave(&info->irq_spinlock,flags);
2558 info->idle_mode = idle_mode;
2559 usc_set_txidle( info );
2560 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2561 return 0;
2562
2563} /* end of mgsl_set_txidle() */
2564
2565/* mgsl_txenable()
2566 *
2567 * enable or disable the transmitter
2568 *
2569 * Arguments:
2570 *
2571 * info pointer to device instance data
2572 * enable 1 = enable, 0 = disable
2573 *
2574 * Return Value: 0 if success, otherwise error code
2575 */
2576static int mgsl_txenable(struct mgsl_struct * info, int enable)
2577{
2578 unsigned long flags;
2579
2580 if (debug_level >= DEBUG_LEVEL_INFO)
2581 printk("%s(%d):mgsl_txenable(%s,%d)\n", __FILE__,__LINE__,
2582 info->device_name, enable);
2583
2584 spin_lock_irqsave(&info->irq_spinlock,flags);
2585 if ( enable ) {
2586 if ( !info->tx_enabled ) {
2587
2588 usc_start_transmitter(info);
2589 /*--------------------------------------------------
2590 * if HDLC/SDLC Loop mode, attempt to insert the
2591 * station in the 'loop' by setting CMR:13. Upon
2592 * receipt of the next GoAhead (RxAbort) sequence,
2593 * the OnLoop indicator (CCSR:7) should go active
2594 * to indicate that we are on the loop
2595 *--------------------------------------------------*/
2596 if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
2597 usc_loopmode_insert_request( info );
2598 }
2599 } else {
2600 if ( info->tx_enabled )
2601 usc_stop_transmitter(info);
2602 }
2603 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2604 return 0;
2605
2606} /* end of mgsl_txenable() */
2607
2608/* mgsl_txabort() abort send HDLC frame
2609 *
2610 * Arguments: info pointer to device instance data
2611 * Return Value: 0 if success, otherwise error code
2612 */
2613static int mgsl_txabort(struct mgsl_struct * info)
2614{
2615 unsigned long flags;
2616
2617 if (debug_level >= DEBUG_LEVEL_INFO)
2618 printk("%s(%d):mgsl_txabort(%s)\n", __FILE__,__LINE__,
2619 info->device_name);
2620
2621 spin_lock_irqsave(&info->irq_spinlock,flags);
2622 if ( info->tx_active && info->params.mode == MGSL_MODE_HDLC )
2623 {
2624 if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
2625 usc_loopmode_cancel_transmit( info );
2626 else
2627 usc_TCmd(info,TCmd_SendAbort);
2628 }
2629 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2630 return 0;
2631
2632} /* end of mgsl_txabort() */
2633
2634/* mgsl_rxenable() enable or disable the receiver
2635 *
2636 * Arguments: info pointer to device instance data
2637 * enable 1 = enable, 0 = disable
2638 * Return Value: 0 if success, otherwise error code
2639 */
2640static int mgsl_rxenable(struct mgsl_struct * info, int enable)
2641{
2642 unsigned long flags;
2643
2644 if (debug_level >= DEBUG_LEVEL_INFO)
2645 printk("%s(%d):mgsl_rxenable(%s,%d)\n", __FILE__,__LINE__,
2646 info->device_name, enable);
2647
2648 spin_lock_irqsave(&info->irq_spinlock,flags);
2649 if ( enable ) {
2650 if ( !info->rx_enabled )
2651 usc_start_receiver(info);
2652 } else {
2653 if ( info->rx_enabled )
2654 usc_stop_receiver(info);
2655 }
2656 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2657 return 0;
2658
2659} /* end of mgsl_rxenable() */
2660
2661/* mgsl_wait_event() wait for specified event to occur
2662 *
2663 * Arguments: info pointer to device instance data
2664 * mask pointer to bitmask of events to wait for
2665 * Return Value: 0 if successful and bit mask updated with
2666 * of events triggerred,
2667 * otherwise error code
2668 */
2669static int mgsl_wait_event(struct mgsl_struct * info, int __user * mask_ptr)
2670{
2671 unsigned long flags;
2672 int s;
2673 int rc=0;
2674 struct mgsl_icount cprev, cnow;
2675 int events;
2676 int mask;
2677 struct _input_signal_events oldsigs, newsigs;
2678 DECLARE_WAITQUEUE(wait, current);
2679
2680 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
2681 if (rc) {
2682 return -EFAULT;
2683 }
2684
2685 if (debug_level >= DEBUG_LEVEL_INFO)
2686 printk("%s(%d):mgsl_wait_event(%s,%d)\n", __FILE__,__LINE__,
2687 info->device_name, mask);
2688
2689 spin_lock_irqsave(&info->irq_spinlock,flags);
2690
2691 /* return immediately if state matches requested events */
2692 usc_get_serial_signals(info);
2693 s = info->serial_signals;
2694 events = mask &
2695 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
2696 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
2697 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
2698 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
2699 if (events) {
2700 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2701 goto exit;
2702 }
2703
2704 /* save current irq counts */
2705 cprev = info->icount;
2706 oldsigs = info->input_signal_events;
2707
2708 /* enable hunt and idle irqs if needed */
2709 if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
2710 u16 oldreg = usc_InReg(info,RICR);
2711 u16 newreg = oldreg +
2712 (mask & MgslEvent_ExitHuntMode ? RXSTATUS_EXITED_HUNT:0) +
2713 (mask & MgslEvent_IdleReceived ? RXSTATUS_IDLE_RECEIVED:0);
2714 if (oldreg != newreg)
2715 usc_OutReg(info, RICR, newreg);
2716 }
2717
2718 set_current_state(TASK_INTERRUPTIBLE);
2719 add_wait_queue(&info->event_wait_q, &wait);
2720
2721 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2722
2723
2724 for(;;) {
2725 schedule();
2726 if (signal_pending(current)) {
2727 rc = -ERESTARTSYS;
2728 break;
2729 }
2730
2731 /* get current irq counts */
2732 spin_lock_irqsave(&info->irq_spinlock,flags);
2733 cnow = info->icount;
2734 newsigs = info->input_signal_events;
2735 set_current_state(TASK_INTERRUPTIBLE);
2736 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2737
2738 /* if no change, wait aborted for some reason */
2739 if (newsigs.dsr_up == oldsigs.dsr_up &&
2740 newsigs.dsr_down == oldsigs.dsr_down &&
2741 newsigs.dcd_up == oldsigs.dcd_up &&
2742 newsigs.dcd_down == oldsigs.dcd_down &&
2743 newsigs.cts_up == oldsigs.cts_up &&
2744 newsigs.cts_down == oldsigs.cts_down &&
2745 newsigs.ri_up == oldsigs.ri_up &&
2746 newsigs.ri_down == oldsigs.ri_down &&
2747 cnow.exithunt == cprev.exithunt &&
2748 cnow.rxidle == cprev.rxidle) {
2749 rc = -EIO;
2750 break;
2751 }
2752
2753 events = mask &
2754 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2755 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2756 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2757 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2758 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2759 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2760 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2761 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2762 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2763 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2764 if (events)
2765 break;
2766
2767 cprev = cnow;
2768 oldsigs = newsigs;
2769 }
2770
2771 remove_wait_queue(&info->event_wait_q, &wait);
2772 set_current_state(TASK_RUNNING);
2773
2774 if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
2775 spin_lock_irqsave(&info->irq_spinlock,flags);
2776 if (!waitqueue_active(&info->event_wait_q)) {
2777 /* disable enable exit hunt mode/idle rcvd IRQs */
2778 usc_OutReg(info, RICR, usc_InReg(info,RICR) &
2779 ~(RXSTATUS_EXITED_HUNT + RXSTATUS_IDLE_RECEIVED));
2780 }
2781 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2782 }
2783exit:
2784 if ( rc == 0 )
2785 PUT_USER(rc, events, mask_ptr);
2786
2787 return rc;
2788
2789} /* end of mgsl_wait_event() */
2790
2791static int modem_input_wait(struct mgsl_struct *info,int arg)
2792{
2793 unsigned long flags;
2794 int rc;
2795 struct mgsl_icount cprev, cnow;
2796 DECLARE_WAITQUEUE(wait, current);
2797
2798 /* save current irq counts */
2799 spin_lock_irqsave(&info->irq_spinlock,flags);
2800 cprev = info->icount;
2801 add_wait_queue(&info->status_event_wait_q, &wait);
2802 set_current_state(TASK_INTERRUPTIBLE);
2803 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2804
2805 for(;;) {
2806 schedule();
2807 if (signal_pending(current)) {
2808 rc = -ERESTARTSYS;
2809 break;
2810 }
2811
2812 /* get new irq counts */
2813 spin_lock_irqsave(&info->irq_spinlock,flags);
2814 cnow = info->icount;
2815 set_current_state(TASK_INTERRUPTIBLE);
2816 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2817
2818 /* if no change, wait aborted for some reason */
2819 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2820 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2821 rc = -EIO;
2822 break;
2823 }
2824
2825 /* check for change in caller specified modem input */
2826 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2827 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2828 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2829 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2830 rc = 0;
2831 break;
2832 }
2833
2834 cprev = cnow;
2835 }
2836 remove_wait_queue(&info->status_event_wait_q, &wait);
2837 set_current_state(TASK_RUNNING);
2838 return rc;
2839}
2840
2841/* return the state of the serial control and status signals
2842 */
60b33c13 2843static int tiocmget(struct tty_struct *tty)
1da177e4 2844{
c9f19e96 2845 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2846 unsigned int result;
2847 unsigned long flags;
2848
2849 spin_lock_irqsave(&info->irq_spinlock,flags);
2850 usc_get_serial_signals(info);
2851 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2852
2853 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2854 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2855 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2856 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2857 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2858 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2859
2860 if (debug_level >= DEBUG_LEVEL_INFO)
2861 printk("%s(%d):%s tiocmget() value=%08X\n",
2862 __FILE__,__LINE__, info->device_name, result );
2863 return result;
2864}
2865
2866/* set modem control signals (DTR/RTS)
2867 */
20b9d177
AC
2868static int tiocmset(struct tty_struct *tty,
2869 unsigned int set, unsigned int clear)
1da177e4 2870{
c9f19e96 2871 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
2872 unsigned long flags;
2873
2874 if (debug_level >= DEBUG_LEVEL_INFO)
2875 printk("%s(%d):%s tiocmset(%x,%x)\n",
2876 __FILE__,__LINE__,info->device_name, set, clear);
2877
2878 if (set & TIOCM_RTS)
2879 info->serial_signals |= SerialSignal_RTS;
2880 if (set & TIOCM_DTR)
2881 info->serial_signals |= SerialSignal_DTR;
2882 if (clear & TIOCM_RTS)
2883 info->serial_signals &= ~SerialSignal_RTS;
2884 if (clear & TIOCM_DTR)
2885 info->serial_signals &= ~SerialSignal_DTR;
2886
2887 spin_lock_irqsave(&info->irq_spinlock,flags);
2888 usc_set_serial_signals(info);
2889 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2890
2891 return 0;
2892}
2893
2894/* mgsl_break() Set or clear transmit break condition
2895 *
2896 * Arguments: tty pointer to tty instance data
2897 * break_state -1=set break condition, 0=clear
9e98966c 2898 * Return Value: error code
1da177e4 2899 */
9e98966c 2900static int mgsl_break(struct tty_struct *tty, int break_state)
1da177e4 2901{
c9f19e96 2902 struct mgsl_struct * info = tty->driver_data;
1da177e4
LT
2903 unsigned long flags;
2904
2905 if (debug_level >= DEBUG_LEVEL_INFO)
2906 printk("%s(%d):mgsl_break(%s,%d)\n",
2907 __FILE__,__LINE__, info->device_name, break_state);
2908
2909 if (mgsl_paranoia_check(info, tty->name, "mgsl_break"))
9e98966c 2910 return -EINVAL;
1da177e4
LT
2911
2912 spin_lock_irqsave(&info->irq_spinlock,flags);
2913 if (break_state == -1)
2914 usc_OutReg(info,IOCR,(u16)(usc_InReg(info,IOCR) | BIT7));
2915 else
2916 usc_OutReg(info,IOCR,(u16)(usc_InReg(info,IOCR) & ~BIT7));
2917 spin_unlock_irqrestore(&info->irq_spinlock,flags);
9e98966c 2918 return 0;
1da177e4
LT
2919
2920} /* end of mgsl_break() */
2921
0587102c
AC
2922/*
2923 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
2924 * Return: write counters to the user passed counter struct
2925 * NB: both 1->0 and 0->1 transitions are counted except for
2926 * RI where only 0->1 is counted.
2927 */
2928static int msgl_get_icount(struct tty_struct *tty,
2929 struct serial_icounter_struct *icount)
2930
2931{
2932 struct mgsl_struct * info = tty->driver_data;
2933 struct mgsl_icount cnow; /* kernel counter temps */
2934 unsigned long flags;
2935
2936 spin_lock_irqsave(&info->irq_spinlock,flags);
2937 cnow = info->icount;
2938 spin_unlock_irqrestore(&info->irq_spinlock,flags);
2939
2940 icount->cts = cnow.cts;
2941 icount->dsr = cnow.dsr;
2942 icount->rng = cnow.rng;
2943 icount->dcd = cnow.dcd;
2944 icount->rx = cnow.rx;
2945 icount->tx = cnow.tx;
2946 icount->frame = cnow.frame;
2947 icount->overrun = cnow.overrun;
2948 icount->parity = cnow.parity;
2949 icount->brk = cnow.brk;
2950 icount->buf_overrun = cnow.buf_overrun;
2951 return 0;
2952}
2953
1da177e4
LT
2954/* mgsl_ioctl() Service an IOCTL request
2955 *
2956 * Arguments:
2957 *
2958 * tty pointer to tty instance data
1da177e4
LT
2959 * cmd IOCTL command code
2960 * arg command argument/context
2961 *
2962 * Return Value: 0 if success, otherwise error code
2963 */
6caa76b7 2964static int mgsl_ioctl(struct tty_struct *tty,
1da177e4
LT
2965 unsigned int cmd, unsigned long arg)
2966{
c9f19e96 2967 struct mgsl_struct * info = tty->driver_data;
1da177e4
LT
2968
2969 if (debug_level >= DEBUG_LEVEL_INFO)
2970 printk("%s(%d):mgsl_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2971 info->device_name, cmd );
2972
2973 if (mgsl_paranoia_check(info, tty->name, "mgsl_ioctl"))
2974 return -ENODEV;
2975
2976 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
0587102c 2977 (cmd != TIOCMIWAIT)) {
1da177e4
LT
2978 if (tty->flags & (1 << TTY_IO_ERROR))
2979 return -EIO;
2980 }
2981
f602501d 2982 return mgsl_ioctl_common(info, cmd, arg);
1da177e4
LT
2983}
2984
2985static int mgsl_ioctl_common(struct mgsl_struct *info, unsigned int cmd, unsigned long arg)
2986{
1da177e4 2987 void __user *argp = (void __user *)arg;
1da177e4
LT
2988
2989 switch (cmd) {
2990 case MGSL_IOCGPARAMS:
2991 return mgsl_get_params(info, argp);
2992 case MGSL_IOCSPARAMS:
2993 return mgsl_set_params(info, argp);
2994 case MGSL_IOCGTXIDLE:
2995 return mgsl_get_txidle(info, argp);
2996 case MGSL_IOCSTXIDLE:
2997 return mgsl_set_txidle(info,(int)arg);
2998 case MGSL_IOCTXENABLE:
2999 return mgsl_txenable(info,(int)arg);
3000 case MGSL_IOCRXENABLE:
3001 return mgsl_rxenable(info,(int)arg);
3002 case MGSL_IOCTXABORT:
3003 return mgsl_txabort(info);
3004 case MGSL_IOCGSTATS:
3005 return mgsl_get_stats(info, argp);
3006 case MGSL_IOCWAITEVENT:
3007 return mgsl_wait_event(info, argp);
3008 case MGSL_IOCLOOPTXDONE:
3009 return mgsl_loopmode_send_done(info);
3010 /* Wait for modem input (DCD,RI,DSR,CTS) change
3011 * as specified by mask in arg (TIOCM_RNG/DSR/CD/CTS)
3012 */
3013 case TIOCMIWAIT:
3014 return modem_input_wait(info,(int)arg);
3015
1da177e4
LT
3016 default:
3017 return -ENOIOCTLCMD;
3018 }
3019 return 0;
3020}
3021
3022/* mgsl_set_termios()
3023 *
3024 * Set new termios settings
3025 *
3026 * Arguments:
3027 *
3028 * tty pointer to tty structure
3029 * termios pointer to buffer to hold returned old termios
3030 *
3031 * Return Value: None
3032 */
606d099c 3033static void mgsl_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4 3034{
c9f19e96 3035 struct mgsl_struct *info = tty->driver_data;
1da177e4
LT
3036 unsigned long flags;
3037
3038 if (debug_level >= DEBUG_LEVEL_INFO)
3039 printk("%s(%d):mgsl_set_termios %s\n", __FILE__,__LINE__,
3040 tty->driver->name );
3041
1da177e4
LT
3042 mgsl_change_params(info);
3043
3044 /* Handle transition to B0 status */
3045 if (old_termios->c_cflag & CBAUD &&
adc8d746 3046 !(tty->termios.c_cflag & CBAUD)) {
1da177e4
LT
3047 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
3048 spin_lock_irqsave(&info->irq_spinlock,flags);
3049 usc_set_serial_signals(info);
3050 spin_unlock_irqrestore(&info->irq_spinlock,flags);
3051 }
3052
3053 /* Handle transition away from B0 status */
3054 if (!(old_termios->c_cflag & CBAUD) &&
adc8d746 3055 tty->termios.c_cflag & CBAUD) {
1da177e4 3056 info->serial_signals |= SerialSignal_DTR;
adc8d746 3057 if (!(tty->termios.c_cflag & CRTSCTS) ||
1da177e4
LT
3058 !test_bit(TTY_THROTTLED, &tty->flags)) {
3059 info->serial_signals |= SerialSignal_RTS;
3060 }
3061 spin_lock_irqsave(&info->irq_spinlock,flags);
3062 usc_set_serial_signals(info);
3063 spin_unlock_irqrestore(&info->irq_spinlock,flags);
3064 }
3065
3066 /* Handle turning off CRTSCTS */
3067 if (old_termios->c_cflag & CRTSCTS &&
adc8d746 3068 !(tty->termios.c_cflag & CRTSCTS)) {
1da177e4
LT
3069 tty->hw_stopped = 0;
3070 mgsl_start(tty);
3071 }
3072
3073} /* end of mgsl_set_termios() */
3074
3075/* mgsl_close()
3076 *
3077 * Called when port is closed. Wait for remaining data to be
3078 * sent. Disable port and free resources.
3079 *
3080 * Arguments:
3081 *
3082 * tty pointer to open tty structure
3083 * filp pointer to open file object
3084 *
3085 * Return Value: None
3086 */
3087static void mgsl_close(struct tty_struct *tty, struct file * filp)
3088{
c9f19e96 3089 struct mgsl_struct * info = tty->driver_data;
1da177e4
LT
3090
3091 if (mgsl_paranoia_check(info, tty->name, "mgsl_close"))
3092 return;
3093
3094 if (debug_level >= DEBUG_LEVEL_INFO)
3095 printk("%s(%d):mgsl_close(%s) entry, count=%d\n",
8fb06c77 3096 __FILE__,__LINE__, info->device_name, info->port.count);
1da177e4 3097
a6614999 3098 if (tty_port_close_start(&info->port, tty, filp) == 0)
1da177e4 3099 goto cleanup;
f602501d
AC
3100
3101 mutex_lock(&info->port.mutex);
8fb06c77 3102 if (info->port.flags & ASYNC_INITIALIZED)
1da177e4 3103 mgsl_wait_until_sent(tty, info->timeout);
978e595f 3104 mgsl_flush_buffer(tty);
1da177e4 3105 tty_ldisc_flush(tty);
1da177e4 3106 shutdown(info);
f602501d 3107 mutex_unlock(&info->port.mutex);
a6614999
AC
3108
3109 tty_port_close_end(&info->port, tty);
8fb06c77 3110 info->port.tty = NULL;
1da177e4
LT
3111cleanup:
3112 if (debug_level >= DEBUG_LEVEL_INFO)
3113 printk("%s(%d):mgsl_close(%s) exit, count=%d\n", __FILE__,__LINE__,
8fb06c77 3114 tty->driver->name, info->port.count);
1da177e4
LT
3115
3116} /* end of mgsl_close() */
3117
3118/* mgsl_wait_until_sent()
3119 *
3120 * Wait until the transmitter is empty.
3121 *
3122 * Arguments:
3123 *
3124 * tty pointer to tty info structure
3125 * timeout time to wait for send completion
3126 *
3127 * Return Value: None
3128 */
3129static void mgsl_wait_until_sent(struct tty_struct *tty, int timeout)
3130{
c9f19e96 3131 struct mgsl_struct * info = tty->driver_data;
1da177e4
LT
3132 unsigned long orig_jiffies, char_time;
3133
3134 if (!info )
3135 return;
3136
3137 if (debug_level >= DEBUG_LEVEL_INFO)
3138 printk("%s(%d):mgsl_wait_until_sent(%s) entry\n",
3139 __FILE__,__LINE__, info->device_name );
3140
3141 if (mgsl_paranoia_check(info, tty->name, "mgsl_wait_until_sent"))
3142 return;
3143
8fb06c77 3144 if (!(info->port.flags & ASYNC_INITIALIZED))
1da177e4
LT
3145 goto exit;
3146
3147 orig_jiffies = jiffies;
3148
3149 /* Set check interval to 1/5 of estimated time to
3150 * send a character, and make it at least 1. The check
3151 * interval should also be less than the timeout.
3152 * Note: use tight timings here to satisfy the NIST-PCTS.
3153 */
978e595f 3154
1da177e4
LT
3155 if ( info->params.data_rate ) {
3156 char_time = info->timeout/(32 * 5);
3157 if (!char_time)
3158 char_time++;
3159 } else
3160 char_time = 1;
3161
3162 if (timeout)
3163 char_time = min_t(unsigned long, char_time, timeout);
3164
3165 if ( info->params.mode == MGSL_MODE_HDLC ||
3166 info->params.mode == MGSL_MODE_RAW ) {
3167 while (info->tx_active) {
3168 msleep_interruptible(jiffies_to_msecs(char_time));
3169 if (signal_pending(current))
3170 break;
3171 if (timeout && time_after(jiffies, orig_jiffies + timeout))
3172 break;
3173 }
3174 } else {
3175 while (!(usc_InReg(info,TCSR) & TXSTATUS_ALL_SENT) &&
3176 info->tx_enabled) {
3177 msleep_interruptible(jiffies_to_msecs(char_time));
3178 if (signal_pending(current))
3179 break;
3180 if (timeout && time_after(jiffies, orig_jiffies + timeout))
3181 break;
3182 }
3183 }
3184
3185exit:
3186 if (debug_level >= DEBUG_LEVEL_INFO)
3187 printk("%s(%d):mgsl_wait_until_sent(%s) exit\n",
3188 __FILE__,__LINE__, info->device_name );
3189
3190} /* end of mgsl_wait_until_sent() */
3191
3192/* mgsl_hangup()
3193 *
3194 * Called by tty_hangup() when a hangup is signaled.
3195 * This is the same as to closing all open files for the port.
3196 *
3197 * Arguments: tty pointer to associated tty object
3198 * Return Value: None
3199 */
3200static void mgsl_hangup(struct tty_struct *tty)
3201{
c9f19e96 3202 struct mgsl_struct * info = tty->driver_data;
1da177e4
LT
3203
3204 if (debug_level >= DEBUG_LEVEL_INFO)
3205 printk("%s(%d):mgsl_hangup(%s)\n",
3206 __FILE__,__LINE__, info->device_name );
3207
3208 if (mgsl_paranoia_check(info, tty->name, "mgsl_hangup"))
3209 return;
3210
3211 mgsl_flush_buffer(tty);
3212 shutdown(info);
3213
8fb06c77
AC
3214 info->port.count = 0;
3215 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
3216 info->port.tty = NULL;
1da177e4 3217
8fb06c77 3218 wake_up_interruptible(&info->port.open_wait);
1da177e4
LT
3219
3220} /* end of mgsl_hangup() */
3221
31f35939
AC
3222/*
3223 * carrier_raised()
3224 *
3225 * Return true if carrier is raised
3226 */
3227
3228static int carrier_raised(struct tty_port *port)
3229{
3230 unsigned long flags;
3231 struct mgsl_struct *info = container_of(port, struct mgsl_struct, port);
3232
3233 spin_lock_irqsave(&info->irq_spinlock, flags);
3234 usc_get_serial_signals(info);
3235 spin_unlock_irqrestore(&info->irq_spinlock, flags);
3236 return (info->serial_signals & SerialSignal_DCD) ? 1 : 0;
3237}
3238
fcc8ac18 3239static void dtr_rts(struct tty_port *port, int on)
5d951fb4
AC
3240{
3241 struct mgsl_struct *info = container_of(port, struct mgsl_struct, port);
3242 unsigned long flags;
3243
3244 spin_lock_irqsave(&info->irq_spinlock,flags);
fcc8ac18
AC
3245 if (on)
3246 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
3247 else
3248 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
5d951fb4
AC
3249 usc_set_serial_signals(info);
3250 spin_unlock_irqrestore(&info->irq_spinlock,flags);
3251}
3252
3253
1da177e4
LT
3254/* block_til_ready()
3255 *
3256 * Block the current process until the specified port
3257 * is ready to be opened.
3258 *
3259 * Arguments:
3260 *
3261 * tty pointer to tty info structure
3262 * filp pointer to open file object
3263 * info pointer to device instance data
3264 *
3265 * Return Value: 0 if success, otherwise error code
3266 */
3267static int block_til_ready(struct tty_struct *tty, struct file * filp,
3268 struct mgsl_struct *info)
3269{
3270 DECLARE_WAITQUEUE(wait, current);
3271 int retval;
0fab6de0
JP
3272 bool do_clocal = false;
3273 bool extra_count = false;
1da177e4 3274 unsigned long flags;
31f35939
AC
3275 int dcd;
3276 struct tty_port *port = &info->port;
1da177e4
LT
3277
3278 if (debug_level >= DEBUG_LEVEL_INFO)
3279 printk("%s(%d):block_til_ready on %s\n",
3280 __FILE__,__LINE__, tty->driver->name );
3281
3282 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
3283 /* nonblock mode is set or port is not enabled */
31f35939 3284 port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4
LT
3285 return 0;
3286 }
3287
adc8d746 3288 if (tty->termios.c_cflag & CLOCAL)
0fab6de0 3289 do_clocal = true;
1da177e4
LT
3290
3291 /* Wait for carrier detect and the line to become
3292 * free (i.e., not in use by the callout). While we are in
31f35939 3293 * this loop, port->count is dropped by one, so that
1da177e4
LT
3294 * mgsl_close() knows when to free things. We restore it upon
3295 * exit, either normal or abnormal.
3296 */
3297
3298 retval = 0;
31f35939 3299 add_wait_queue(&port->open_wait, &wait);
1da177e4
LT
3300
3301 if (debug_level >= DEBUG_LEVEL_INFO)
3302 printk("%s(%d):block_til_ready before block on %s count=%d\n",
31f35939 3303 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4
LT
3304
3305 spin_lock_irqsave(&info->irq_spinlock, flags);
3306 if (!tty_hung_up_p(filp)) {
0fab6de0 3307 extra_count = true;
31f35939 3308 port->count--;
1da177e4
LT
3309 }
3310 spin_unlock_irqrestore(&info->irq_spinlock, flags);
31f35939 3311 port->blocked_open++;
1da177e4
LT
3312
3313 while (1) {
adc8d746 3314 if (tty->termios.c_cflag & CBAUD)
5d951fb4 3315 tty_port_raise_dtr_rts(port);
1da177e4
LT
3316
3317 set_current_state(TASK_INTERRUPTIBLE);
3318
31f35939
AC
3319 if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)){
3320 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
1da177e4
LT
3321 -EAGAIN : -ERESTARTSYS;
3322 break;
3323 }
3324
31f35939 3325 dcd = tty_port_carrier_raised(&info->port);
1da177e4 3326
31f35939 3327 if (!(port->flags & ASYNC_CLOSING) && (do_clocal || dcd))
1da177e4 3328 break;
1da177e4
LT
3329
3330 if (signal_pending(current)) {
3331 retval = -ERESTARTSYS;
3332 break;
3333 }
3334
3335 if (debug_level >= DEBUG_LEVEL_INFO)
3336 printk("%s(%d):block_til_ready blocking on %s count=%d\n",
31f35939 3337 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4 3338
89c8d91e 3339 tty_unlock(tty);
1da177e4 3340 schedule();
89c8d91e 3341 tty_lock(tty);
1da177e4
LT
3342 }
3343
3344 set_current_state(TASK_RUNNING);
31f35939 3345 remove_wait_queue(&port->open_wait, &wait);
1da177e4 3346
36c621d8 3347 /* FIXME: Racy on hangup during close wait */
1da177e4 3348 if (extra_count)
31f35939
AC
3349 port->count++;
3350 port->blocked_open--;
1da177e4
LT
3351
3352 if (debug_level >= DEBUG_LEVEL_INFO)
3353 printk("%s(%d):block_til_ready after blocking on %s count=%d\n",
31f35939 3354 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4
LT
3355
3356 if (!retval)
31f35939 3357 port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4
LT
3358
3359 return retval;
3360
3361} /* end of block_til_ready() */
3362
8a3ad104
JS
3363static int mgsl_install(struct tty_driver *driver, struct tty_struct *tty)
3364{
3365 struct mgsl_struct *info;
3366 int line = tty->index;
3367
3368 /* verify range of specified line number */
3369 if (line >= mgsl_device_count) {
3370 printk("%s(%d):mgsl_open with invalid line #%d.\n",
3371 __FILE__, __LINE__, line);
3372 return -ENODEV;
3373 }
3374
3375 /* find the info structure for the specified line */
3376 info = mgsl_device_list;
3377 while (info && info->line != line)
3378 info = info->next_device;
3379 if (mgsl_paranoia_check(info, tty->name, "mgsl_open"))
3380 return -ENODEV;
3381 tty->driver_data = info;
3382
3383 return tty_port_install(&info->port, driver, tty);
3384}
3385
1da177e4
LT
3386/* mgsl_open()
3387 *
3388 * Called when a port is opened. Init and enable port.
3389 * Perform serial-specific initialization for the tty structure.
3390 *
3391 * Arguments: tty pointer to tty info structure
3392 * filp associated file pointer
3393 *
3394 * Return Value: 0 if success, otherwise error code
3395 */
3396static int mgsl_open(struct tty_struct *tty, struct file * filp)
3397{
8a3ad104 3398 struct mgsl_struct *info = tty->driver_data;
1da177e4 3399 unsigned long flags;
8a3ad104 3400 int retval;
1da177e4 3401
8fb06c77 3402 info->port.tty = tty;
1da177e4
LT
3403
3404 if (debug_level >= DEBUG_LEVEL_INFO)
3405 printk("%s(%d):mgsl_open(%s), old ref count = %d\n",
8fb06c77 3406 __FILE__,__LINE__,tty->driver->name, info->port.count);
1da177e4
LT
3407
3408 /* If port is closing, signal caller to try again */
8fb06c77
AC
3409 if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING){
3410 if (info->port.flags & ASYNC_CLOSING)
3411 interruptible_sleep_on(&info->port.close_wait);
3412 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
1da177e4
LT
3413 -EAGAIN : -ERESTARTSYS);
3414 goto cleanup;
3415 }
3416
d6c53c0e 3417 info->port.low_latency = (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
1da177e4
LT
3418
3419 spin_lock_irqsave(&info->netlock, flags);
3420 if (info->netcount) {
3421 retval = -EBUSY;
3422 spin_unlock_irqrestore(&info->netlock, flags);
3423 goto cleanup;
3424 }
8fb06c77 3425 info->port.count++;
1da177e4
LT
3426 spin_unlock_irqrestore(&info->netlock, flags);
3427
8fb06c77 3428 if (info->port.count == 1) {
1da177e4
LT
3429 /* 1st open on this device, init hardware */
3430 retval = startup(info);
3431 if (retval < 0)
3432 goto cleanup;
3433 }
3434
3435 retval = block_til_ready(tty, filp, info);
3436 if (retval) {
3437 if (debug_level >= DEBUG_LEVEL_INFO)
3438 printk("%s(%d):block_til_ready(%s) returned %d\n",
3439 __FILE__,__LINE__, info->device_name, retval);
3440 goto cleanup;
3441 }
3442
3443 if (debug_level >= DEBUG_LEVEL_INFO)
3444 printk("%s(%d):mgsl_open(%s) success\n",
3445 __FILE__,__LINE__, info->device_name);
3446 retval = 0;
3447
3448cleanup:
3449 if (retval) {
3450 if (tty->count == 1)
8fb06c77
AC
3451 info->port.tty = NULL; /* tty layer will release tty struct */
3452 if(info->port.count)
3453 info->port.count--;
1da177e4
LT
3454 }
3455
3456 return retval;
3457
3458} /* end of mgsl_open() */
3459
3460/*
3461 * /proc fs routines....
3462 */
3463
d337829b 3464static inline void line_info(struct seq_file *m, struct mgsl_struct *info)
1da177e4
LT
3465{
3466 char stat_buf[30];
1da177e4
LT
3467 unsigned long flags;
3468
3469 if (info->bus_type == MGSL_BUS_TYPE_PCI) {
d337829b 3470 seq_printf(m, "%s:PCI io:%04X irq:%d mem:%08X lcr:%08X",
1da177e4
LT
3471 info->device_name, info->io_base, info->irq_level,
3472 info->phys_memory_base, info->phys_lcr_base);
3473 } else {
d337829b 3474 seq_printf(m, "%s:(E)ISA io:%04X irq:%d dma:%d",
1da177e4
LT
3475 info->device_name, info->io_base,
3476 info->irq_level, info->dma_level);
3477 }
3478
3479 /* output current serial signal states */
3480 spin_lock_irqsave(&info->irq_spinlock,flags);
3481 usc_get_serial_signals(info);
3482 spin_unlock_irqrestore(&info->irq_spinlock,flags);
3483
3484 stat_buf[0] = 0;
3485 stat_buf[1] = 0;
3486 if (info->serial_signals & SerialSignal_RTS)
3487 strcat(stat_buf, "|RTS");
3488 if (info->serial_signals & SerialSignal_CTS)
3489 strcat(stat_buf, "|CTS");
3490 if (info->serial_signals & SerialSignal_DTR)
3491 strcat(stat_buf, "|DTR");
3492 if (info->serial_signals & SerialSignal_DSR)
3493 strcat(stat_buf, "|DSR");
3494 if (info->serial_signals & SerialSignal_DCD)
3495 strcat(stat_buf, "|CD");
3496 if (info->serial_signals & SerialSignal_RI)
3497 strcat(stat_buf, "|RI");
3498
3499 if (info->params.mode == MGSL_MODE_HDLC ||
3500 info->params.mode == MGSL_MODE_RAW ) {
d337829b 3501 seq_printf(m, " HDLC txok:%d rxok:%d",
1da177e4
LT
3502 info->icount.txok, info->icount.rxok);
3503 if (info->icount.txunder)
d337829b 3504 seq_printf(m, " txunder:%d", info->icount.txunder);
1da177e4 3505 if (info->icount.txabort)
d337829b 3506 seq_printf(m, " txabort:%d", info->icount.txabort);
1da177e4 3507 if (info->icount.rxshort)
d337829b 3508 seq_printf(m, " rxshort:%d", info->icount.rxshort);
1da177e4 3509 if (info->icount.rxlong)
d337829b 3510 seq_printf(m, " rxlong:%d", info->icount.rxlong);
1da177e4 3511 if (info->icount.rxover)
d337829b 3512 seq_printf(m, " rxover:%d", info->icount.rxover);
1da177e4 3513 if (info->icount.rxcrc)
d337829b 3514 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
1da177e4 3515 } else {
d337829b 3516 seq_printf(m, " ASYNC tx:%d rx:%d",
1da177e4
LT
3517 info->icount.tx, info->icount.rx);
3518 if (info->icount.frame)
d337829b 3519 seq_printf(m, " fe:%d", info->icount.frame);
1da177e4 3520 if (info->icount.parity)
d337829b 3521 seq_printf(m, " pe:%d", info->icount.parity);
1da177e4 3522 if (info->icount.brk)
d337829b 3523 seq_printf(m, " brk:%d", info->icount.brk);
1da177e4 3524 if (info->icount.overrun)
d337829b 3525 seq_printf(m, " oe:%d", info->icount.overrun);
1da177e4
LT
3526 }
3527
3528 /* Append serial signal status to end */
d337829b 3529 seq_printf(m, " %s\n", stat_buf+1);
1da177e4 3530
d337829b 3531 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1da177e4
LT
3532 info->tx_active,info->bh_requested,info->bh_running,
3533 info->pending_bh);
3534
3535 spin_lock_irqsave(&info->irq_spinlock,flags);
3536 {
3537 u16 Tcsr = usc_InReg( info, TCSR );
3538 u16 Tdmr = usc_InDmaReg( info, TDMR );
3539 u16 Ticr = usc_InReg( info, TICR );
3540 u16 Rscr = usc_InReg( info, RCSR );
3541 u16 Rdmr = usc_InDmaReg( info, RDMR );
3542 u16 Ricr = usc_InReg( info, RICR );
3543 u16 Icr = usc_InReg( info, ICR );
3544 u16 Dccr = usc_InReg( info, DCCR );
3545 u16 Tmr = usc_InReg( info, TMR );
3546 u16 Tccr = usc_InReg( info, TCCR );
3547 u16 Ccar = inw( info->io_base + CCAR );
d337829b 3548 seq_printf(m, "tcsr=%04X tdmr=%04X ticr=%04X rcsr=%04X rdmr=%04X\n"
1da177e4
LT
3549 "ricr=%04X icr =%04X dccr=%04X tmr=%04X tccr=%04X ccar=%04X\n",
3550 Tcsr,Tdmr,Ticr,Rscr,Rdmr,Ricr,Icr,Dccr,Tmr,Tccr,Ccar );
3551 }
3552 spin_unlock_irqrestore(&info->irq_spinlock,flags);
d337829b 3553}
1da177e4 3554
d337829b
AD
3555/* Called to print information about devices */
3556static int mgsl_proc_show(struct seq_file *m, void *v)
1da177e4 3557{
1da177e4
LT
3558 struct mgsl_struct *info;
3559
d337829b 3560 seq_printf(m, "synclink driver:%s\n", driver_version);
1da177e4
LT
3561
3562 info = mgsl_device_list;
3563 while( info ) {
d337829b 3564 line_info(m, info);
1da177e4
LT
3565 info = info->next_device;
3566 }
d337829b
AD
3567 return 0;
3568}
1da177e4 3569
d337829b
AD
3570static int mgsl_proc_open(struct inode *inode, struct file *file)
3571{
3572 return single_open(file, mgsl_proc_show, NULL);
3573}
3574
3575static const struct file_operations mgsl_proc_fops = {
3576 .owner = THIS_MODULE,
3577 .open = mgsl_proc_open,
3578 .read = seq_read,
3579 .llseek = seq_lseek,
3580 .release = single_release,
3581};
1da177e4
LT
3582
3583/* mgsl_allocate_dma_buffers()
3584 *
3585 * Allocate and format DMA buffers (ISA adapter)
3586 * or format shared memory buffers (PCI adapter).
3587 *
3588 * Arguments: info pointer to device instance data
3589 * Return Value: 0 if success, otherwise error
3590 */
3591static int mgsl_allocate_dma_buffers(struct mgsl_struct *info)
3592{
3593 unsigned short BuffersPerFrame;
3594
3595 info->last_mem_alloc = 0;
3596
3597 /* Calculate the number of DMA buffers necessary to hold the */
3598 /* largest allowable frame size. Note: If the max frame size is */
3599 /* not an even multiple of the DMA buffer size then we need to */
3600 /* round the buffer count per frame up one. */
3601
3602 BuffersPerFrame = (unsigned short)(info->max_frame_size/DMABUFFERSIZE);
3603 if ( info->max_frame_size % DMABUFFERSIZE )
3604 BuffersPerFrame++;
3605
3606 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
3607 /*
3608 * The PCI adapter has 256KBytes of shared memory to use.
3609 * This is 64 PAGE_SIZE buffers.
3610 *
3611 * The first page is used for padding at this time so the
3612 * buffer list does not begin at offset 0 of the PCI
3613 * adapter's shared memory.
3614 *
3615 * The 2nd page is used for the buffer list. A 4K buffer
3616 * list can hold 128 DMA_BUFFER structures at 32 bytes
3617 * each.
3618 *
3619 * This leaves 62 4K pages.
3620 *
3621 * The next N pages are used for transmit frame(s). We
3622 * reserve enough 4K page blocks to hold the required
3623 * number of transmit dma buffers (num_tx_dma_buffers),
3624 * each of MaxFrameSize size.
3625 *
3626 * Of the remaining pages (62-N), determine how many can
3627 * be used to receive full MaxFrameSize inbound frames
3628 */
3629 info->tx_buffer_count = info->num_tx_dma_buffers * BuffersPerFrame;
3630 info->rx_buffer_count = 62 - info->tx_buffer_count;
3631 } else {
3632 /* Calculate the number of PAGE_SIZE buffers needed for */
3633 /* receive and transmit DMA buffers. */
3634
3635
3636 /* Calculate the number of DMA buffers necessary to */
3637 /* hold 7 max size receive frames and one max size transmit frame. */
3638 /* The receive buffer count is bumped by one so we avoid an */
3639 /* End of List condition if all receive buffers are used when */
3640 /* using linked list DMA buffers. */
3641
3642 info->tx_buffer_count = info->num_tx_dma_buffers * BuffersPerFrame;
3643 info->rx_buffer_count = (BuffersPerFrame * MAXRXFRAMES) + 6;
3644
3645 /*
3646 * limit total TxBuffers & RxBuffers to 62 4K total
3647 * (ala PCI Allocation)
3648 */
3649
3650 if ( (info->tx_buffer_count + info->rx_buffer_count) > 62 )
3651 info->rx_buffer_count = 62 - info->tx_buffer_count;
3652
3653 }
3654
3655 if ( debug_level >= DEBUG_LEVEL_INFO )
3656 printk("%s(%d):Allocating %d TX and %d RX DMA buffers.\n",
3657 __FILE__,__LINE__, info->tx_buffer_count,info->rx_buffer_count);
3658
3659 if ( mgsl_alloc_buffer_list_memory( info ) < 0 ||
3660 mgsl_alloc_frame_memory(info, info->rx_buffer_list, info->rx_buffer_count) < 0 ||
3661 mgsl_alloc_frame_memory(info, info->tx_buffer_list, info->tx_buffer_count) < 0 ||
3662 mgsl_alloc_intermediate_rxbuffer_memory(info) < 0 ||
3663 mgsl_alloc_intermediate_txbuffer_memory(info) < 0 ) {
3664 printk("%s(%d):Can't allocate DMA buffer memory\n",__FILE__,__LINE__);
3665 return -ENOMEM;
3666 }
3667
3668 mgsl_reset_rx_dma_buffers( info );
3669 mgsl_reset_tx_dma_buffers( info );
3670
3671 return 0;
3672
3673} /* end of mgsl_allocate_dma_buffers() */
3674
3675/*
3676 * mgsl_alloc_buffer_list_memory()
3677 *
3678 * Allocate a common DMA buffer for use as the
3679 * receive and transmit buffer lists.
3680 *
3681 * A buffer list is a set of buffer entries where each entry contains
3682 * a pointer to an actual buffer and a pointer to the next buffer entry
3683 * (plus some other info about the buffer).
3684 *
3685 * The buffer entries for a list are built to form a circular list so
3686 * that when the entire list has been traversed you start back at the
3687 * beginning.
3688 *
3689 * This function allocates memory for just the buffer entries.
3690 * The links (pointer to next entry) are filled in with the physical
3691 * address of the next entry so the adapter can navigate the list
3692 * using bus master DMA. The pointers to the actual buffers are filled
3693 * out later when the actual buffers are allocated.
3694 *
3695 * Arguments: info pointer to device instance data
3696 * Return Value: 0 if success, otherwise error
3697 */
3698static int mgsl_alloc_buffer_list_memory( struct mgsl_struct *info )
3699{
3700 unsigned int i;
3701
3702 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
3703 /* PCI adapter uses shared memory. */
3704 info->buffer_list = info->memory_base + info->last_mem_alloc;
3705 info->buffer_list_phys = info->last_mem_alloc;
3706 info->last_mem_alloc += BUFFERLISTSIZE;
3707 } else {
3708 /* ISA adapter uses system memory. */
3709 /* The buffer lists are allocated as a common buffer that both */
3710 /* the processor and adapter can access. This allows the driver to */
3711 /* inspect portions of the buffer while other portions are being */
3712 /* updated by the adapter using Bus Master DMA. */
3713
0ff1b2c8
PF
3714 info->buffer_list = dma_alloc_coherent(NULL, BUFFERLISTSIZE, &info->buffer_list_dma_addr, GFP_KERNEL);
3715 if (info->buffer_list == NULL)
1da177e4 3716 return -ENOMEM;
0ff1b2c8 3717 info->buffer_list_phys = (u32)(info->buffer_list_dma_addr);
1da177e4
LT
3718 }
3719
3720 /* We got the memory for the buffer entry lists. */
3721 /* Initialize the memory block to all zeros. */
3722 memset( info->buffer_list, 0, BUFFERLISTSIZE );
3723
3724 /* Save virtual address pointers to the receive and */
3725 /* transmit buffer lists. (Receive 1st). These pointers will */
3726 /* be used by the processor to access the lists. */
3727 info->rx_buffer_list = (DMABUFFERENTRY *)info->buffer_list;
3728 info->tx_buffer_list = (DMABUFFERENTRY *)info->buffer_list;
3729 info->tx_buffer_list += info->rx_buffer_count;
3730
3731 /*
3732 * Build the links for the buffer entry lists such that
3733 * two circular lists are built. (Transmit and Receive).
3734 *
3735 * Note: the links are physical addresses
3736 * which are read by the adapter to determine the next
3737 * buffer entry to use.
3738 */
3739
3740 for ( i = 0; i < info->rx_buffer_count; i++ ) {
3741 /* calculate and store physical address of this buffer entry */
3742 info->rx_buffer_list[i].phys_entry =
3743 info->buffer_list_phys + (i * sizeof(DMABUFFERENTRY));
3744
3745 /* calculate and store physical address of */
3746 /* next entry in cirular list of entries */
3747
3748 info->rx_buffer_list[i].link = info->buffer_list_phys;
3749
3750 if ( i < info->rx_buffer_count - 1 )
3751 info->rx_buffer_list[i].link += (i + 1) * sizeof(DMABUFFERENTRY);
3752 }
3753
3754 for ( i = 0; i < info->tx_buffer_count; i++ ) {
3755 /* calculate and store physical address of this buffer entry */
3756 info->tx_buffer_list[i].phys_entry = info->buffer_list_phys +
3757 ((info->rx_buffer_count + i) * sizeof(DMABUFFERENTRY));
3758
3759 /* calculate and store physical address of */
3760 /* next entry in cirular list of entries */
3761
3762 info->tx_buffer_list[i].link = info->buffer_list_phys +
3763 info->rx_buffer_count * sizeof(DMABUFFERENTRY);
3764
3765 if ( i < info->tx_buffer_count - 1 )
3766 info->tx_buffer_list[i].link += (i + 1) * sizeof(DMABUFFERENTRY);
3767 }
3768
3769 return 0;
3770
3771} /* end of mgsl_alloc_buffer_list_memory() */
3772
3773/* Free DMA buffers allocated for use as the
3774 * receive and transmit buffer lists.
3775 * Warning:
3776 *
3777 * The data transfer buffers associated with the buffer list
3778 * MUST be freed before freeing the buffer list itself because
3779 * the buffer list contains the information necessary to free
3780 * the individual buffers!
3781 */
3782static void mgsl_free_buffer_list_memory( struct mgsl_struct *info )
3783{
0ff1b2c8
PF
3784 if (info->buffer_list && info->bus_type != MGSL_BUS_TYPE_PCI)
3785 dma_free_coherent(NULL, BUFFERLISTSIZE, info->buffer_list, info->buffer_list_dma_addr);
1da177e4
LT
3786
3787 info->buffer_list = NULL;
3788 info->rx_buffer_list = NULL;
3789 info->tx_buffer_list = NULL;
3790
3791} /* end of mgsl_free_buffer_list_memory() */
3792
3793/*
3794 * mgsl_alloc_frame_memory()
3795 *
3796 * Allocate the frame DMA buffers used by the specified buffer list.
3797 * Each DMA buffer will be one memory page in size. This is necessary
3798 * because memory can fragment enough that it may be impossible
3799 * contiguous pages.
3800 *
3801 * Arguments:
3802 *
3803 * info pointer to device instance data
3804 * BufferList pointer to list of buffer entries
3805 * Buffercount count of buffer entries in buffer list
3806 *
3807 * Return Value: 0 if success, otherwise -ENOMEM
3808 */
3809static int mgsl_alloc_frame_memory(struct mgsl_struct *info,DMABUFFERENTRY *BufferList,int Buffercount)
3810{
3811 int i;
0ff1b2c8 3812 u32 phys_addr;
1da177e4
LT
3813
3814 /* Allocate page sized buffers for the receive buffer list */
3815
3816 for ( i = 0; i < Buffercount; i++ ) {
3817 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
3818 /* PCI adapter uses shared memory buffers. */
3819 BufferList[i].virt_addr = info->memory_base + info->last_mem_alloc;
3820 phys_addr = info->last_mem_alloc;
3821 info->last_mem_alloc += DMABUFFERSIZE;
3822 } else {
3823 /* ISA adapter uses system memory. */
0ff1b2c8
PF
3824 BufferList[i].virt_addr = dma_alloc_coherent(NULL, DMABUFFERSIZE, &BufferList[i].dma_addr, GFP_KERNEL);
3825 if (BufferList[i].virt_addr == NULL)
1da177e4 3826 return -ENOMEM;
0ff1b2c8 3827 phys_addr = (u32)(BufferList[i].dma_addr);
1da177e4
LT
3828 }
3829 BufferList[i].phys_addr = phys_addr;
3830 }
3831
3832 return 0;
3833
3834} /* end of mgsl_alloc_frame_memory() */
3835
3836/*
3837 * mgsl_free_frame_memory()
3838 *
3839 * Free the buffers associated with
3840 * each buffer entry of a buffer list.
3841 *
3842 * Arguments:
3843 *
3844 * info pointer to device instance data
3845 * BufferList pointer to list of buffer entries
3846 * Buffercount count of buffer entries in buffer list
3847 *
3848 * Return Value: None
3849 */
3850static void mgsl_free_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList, int Buffercount)
3851{
3852 int i;
3853
3854 if ( BufferList ) {
3855 for ( i = 0 ; i < Buffercount ; i++ ) {
3856 if ( BufferList[i].virt_addr ) {
3857 if ( info->bus_type != MGSL_BUS_TYPE_PCI )
0ff1b2c8 3858 dma_free_coherent(NULL, DMABUFFERSIZE, BufferList[i].virt_addr, BufferList[i].dma_addr);
1da177e4
LT
3859 BufferList[i].virt_addr = NULL;
3860 }
3861 }
3862 }
3863
3864} /* end of mgsl_free_frame_memory() */
3865
3866/* mgsl_free_dma_buffers()
3867 *
3868 * Free DMA buffers
3869 *
3870 * Arguments: info pointer to device instance data
3871 * Return Value: None
3872 */
3873static void mgsl_free_dma_buffers( struct mgsl_struct *info )
3874{
3875 mgsl_free_frame_memory( info, info->rx_buffer_list, info->rx_buffer_count );
3876 mgsl_free_frame_memory( info, info->tx_buffer_list, info->tx_buffer_count );
3877 mgsl_free_buffer_list_memory( info );
3878
3879} /* end of mgsl_free_dma_buffers() */
3880
3881
3882/*
3883 * mgsl_alloc_intermediate_rxbuffer_memory()
3884 *
3885 * Allocate a buffer large enough to hold max_frame_size. This buffer
3886 * is used to pass an assembled frame to the line discipline.
3887 *
3888 * Arguments:
3889 *
3890 * info pointer to device instance data
3891 *
3892 * Return Value: 0 if success, otherwise -ENOMEM
3893 */
3894static int mgsl_alloc_intermediate_rxbuffer_memory(struct mgsl_struct *info)
3895{
3896 info->intermediate_rxbuffer = kmalloc(info->max_frame_size, GFP_KERNEL | GFP_DMA);
3897 if ( info->intermediate_rxbuffer == NULL )
3898 return -ENOMEM;
a6b68a69
PF
3899 /* unused flag buffer to satisfy receive_buf calling interface */
3900 info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL);
3901 if (!info->flag_buf) {
3902 kfree(info->intermediate_rxbuffer);
3903 info->intermediate_rxbuffer = NULL;
3904 return -ENOMEM;
3905 }
1da177e4
LT
3906 return 0;
3907
3908} /* end of mgsl_alloc_intermediate_rxbuffer_memory() */
3909
3910/*
3911 * mgsl_free_intermediate_rxbuffer_memory()
3912 *
3913 *
3914 * Arguments:
3915 *
3916 * info pointer to device instance data
3917 *
3918 * Return Value: None
3919 */
3920static void mgsl_free_intermediate_rxbuffer_memory(struct mgsl_struct *info)
3921{
735d5661 3922 kfree(info->intermediate_rxbuffer);
1da177e4 3923 info->intermediate_rxbuffer = NULL;
a6b68a69
PF
3924 kfree(info->flag_buf);
3925 info->flag_buf = NULL;
1da177e4
LT
3926
3927} /* end of mgsl_free_intermediate_rxbuffer_memory() */
3928
3929/*
3930 * mgsl_alloc_intermediate_txbuffer_memory()
3931 *
3932 * Allocate intermdiate transmit buffer(s) large enough to hold max_frame_size.
3933 * This buffer is used to load transmit frames into the adapter's dma transfer
3934 * buffers when there is sufficient space.
3935 *
3936 * Arguments:
3937 *
3938 * info pointer to device instance data
3939 *
3940 * Return Value: 0 if success, otherwise -ENOMEM
3941 */
3942static int mgsl_alloc_intermediate_txbuffer_memory(struct mgsl_struct *info)
3943{
3944 int i;
3945
3946 if ( debug_level >= DEBUG_LEVEL_INFO )
3947 printk("%s %s(%d) allocating %d tx holding buffers\n",
3948 info->device_name, __FILE__,__LINE__,info->num_tx_holding_buffers);
3949
3950 memset(info->tx_holding_buffers,0,sizeof(info->tx_holding_buffers));
3951
3952 for ( i=0; i<info->num_tx_holding_buffers; ++i) {
3953 info->tx_holding_buffers[i].buffer =
3954 kmalloc(info->max_frame_size, GFP_KERNEL);
d9a2f4a4
AC
3955 if (info->tx_holding_buffers[i].buffer == NULL) {
3956 for (--i; i >= 0; i--) {
3957 kfree(info->tx_holding_buffers[i].buffer);
3958 info->tx_holding_buffers[i].buffer = NULL;
3959 }
1da177e4 3960 return -ENOMEM;
d9a2f4a4 3961 }
1da177e4
LT
3962 }
3963
3964 return 0;
3965
3966} /* end of mgsl_alloc_intermediate_txbuffer_memory() */
3967
3968/*
3969 * mgsl_free_intermediate_txbuffer_memory()
3970 *
3971 *
3972 * Arguments:
3973 *
3974 * info pointer to device instance data
3975 *
3976 * Return Value: None
3977 */
3978static void mgsl_free_intermediate_txbuffer_memory(struct mgsl_struct *info)
3979{
3980 int i;
3981
3982 for ( i=0; i<info->num_tx_holding_buffers; ++i ) {
735d5661
JJ
3983 kfree(info->tx_holding_buffers[i].buffer);
3984 info->tx_holding_buffers[i].buffer = NULL;
1da177e4
LT
3985 }
3986
3987 info->get_tx_holding_index = 0;
3988 info->put_tx_holding_index = 0;
3989 info->tx_holding_count = 0;
3990
3991} /* end of mgsl_free_intermediate_txbuffer_memory() */
3992
3993
3994/*
3995 * load_next_tx_holding_buffer()
3996 *
3997 * attempts to load the next buffered tx request into the
3998 * tx dma buffers
3999 *
4000 * Arguments:
4001 *
4002 * info pointer to device instance data
4003 *
0fab6de0 4004 * Return Value: true if next buffered tx request loaded
1da177e4 4005 * into adapter's tx dma buffer,
0fab6de0 4006 * false otherwise
1da177e4 4007 */
0fab6de0 4008static bool load_next_tx_holding_buffer(struct mgsl_struct *info)
1da177e4 4009{
0fab6de0 4010 bool ret = false;
1da177e4
LT
4011
4012 if ( info->tx_holding_count ) {
4013 /* determine if we have enough tx dma buffers
4014 * to accommodate the next tx frame
4015 */
4016 struct tx_holding_buffer *ptx =
4017 &info->tx_holding_buffers[info->get_tx_holding_index];
4018 int num_free = num_free_tx_dma_buffers(info);
4019 int num_needed = ptx->buffer_size / DMABUFFERSIZE;
4020 if ( ptx->buffer_size % DMABUFFERSIZE )
4021 ++num_needed;
4022
4023 if (num_needed <= num_free) {
4024 info->xmit_cnt = ptx->buffer_size;
4025 mgsl_load_tx_dma_buffer(info,ptx->buffer,ptx->buffer_size);
4026
4027 --info->tx_holding_count;
4028 if ( ++info->get_tx_holding_index >= info->num_tx_holding_buffers)
4029 info->get_tx_holding_index=0;
4030
4031 /* restart transmit timer */
4032 mod_timer(&info->tx_timer, jiffies + msecs_to_jiffies(5000));
4033
0fab6de0 4034 ret = true;
1da177e4
LT
4035 }
4036 }
4037
4038 return ret;
4039}
4040
4041/*
4042 * save_tx_buffer_request()
4043 *
4044 * attempt to store transmit frame request for later transmission
4045 *
4046 * Arguments:
4047 *
4048 * info pointer to device instance data
4049 * Buffer pointer to buffer containing frame to load
4050 * BufferSize size in bytes of frame in Buffer
4051 *
4052 * Return Value: 1 if able to store, 0 otherwise
4053 */
4054static int save_tx_buffer_request(struct mgsl_struct *info,const char *Buffer, unsigned int BufferSize)
4055{
4056 struct tx_holding_buffer *ptx;
4057
4058 if ( info->tx_holding_count >= info->num_tx_holding_buffers ) {
4059 return 0; /* all buffers in use */
4060 }
4061
4062 ptx = &info->tx_holding_buffers[info->put_tx_holding_index];
4063 ptx->buffer_size = BufferSize;
4064 memcpy( ptx->buffer, Buffer, BufferSize);
4065
4066 ++info->tx_holding_count;
4067 if ( ++info->put_tx_holding_index >= info->num_tx_holding_buffers)
4068 info->put_tx_holding_index=0;
4069
4070 return 1;
4071}
4072
4073static int mgsl_claim_resources(struct mgsl_struct *info)
4074{
4075 if (request_region(info->io_base,info->io_addr_size,"synclink") == NULL) {
4076 printk( "%s(%d):I/O address conflict on device %s Addr=%08X\n",
4077 __FILE__,__LINE__,info->device_name, info->io_base);
4078 return -ENODEV;
4079 }
0fab6de0 4080 info->io_addr_requested = true;
1da177e4
LT
4081
4082 if ( request_irq(info->irq_level,mgsl_interrupt,info->irq_flags,
4083 info->device_name, info ) < 0 ) {
25985edc 4084 printk( "%s(%d):Can't request interrupt on device %s IRQ=%d\n",
1da177e4
LT
4085 __FILE__,__LINE__,info->device_name, info->irq_level );
4086 goto errout;
4087 }
0fab6de0 4088 info->irq_requested = true;
1da177e4
LT
4089
4090 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
4091 if (request_mem_region(info->phys_memory_base,0x40000,"synclink") == NULL) {
4092 printk( "%s(%d):mem addr conflict device %s Addr=%08X\n",
4093 __FILE__,__LINE__,info->device_name, info->phys_memory_base);
4094 goto errout;
4095 }
0fab6de0 4096 info->shared_mem_requested = true;
1da177e4
LT
4097 if (request_mem_region(info->phys_lcr_base + info->lcr_offset,128,"synclink") == NULL) {
4098 printk( "%s(%d):lcr mem addr conflict device %s Addr=%08X\n",
4099 __FILE__,__LINE__,info->device_name, info->phys_lcr_base + info->lcr_offset);
4100 goto errout;
4101 }
0fab6de0 4102 info->lcr_mem_requested = true;
1da177e4 4103
24cb2335
AC
4104 info->memory_base = ioremap_nocache(info->phys_memory_base,
4105 0x40000);
1da177e4 4106 if (!info->memory_base) {
25985edc 4107 printk( "%s(%d):Can't map shared memory on device %s MemAddr=%08X\n",
1da177e4
LT
4108 __FILE__,__LINE__,info->device_name, info->phys_memory_base );
4109 goto errout;
4110 }
4111
4112 if ( !mgsl_memory_test(info) ) {
4113 printk( "%s(%d):Failed shared memory test %s MemAddr=%08X\n",
4114 __FILE__,__LINE__,info->device_name, info->phys_memory_base );
4115 goto errout;
4116 }
4117
24cb2335
AC
4118 info->lcr_base = ioremap_nocache(info->phys_lcr_base,
4119 PAGE_SIZE);
1da177e4 4120 if (!info->lcr_base) {
25985edc 4121 printk( "%s(%d):Can't map LCR memory on device %s MemAddr=%08X\n",
1da177e4
LT
4122 __FILE__,__LINE__,info->device_name, info->phys_lcr_base );
4123 goto errout;
4124 }
24cb2335 4125 info->lcr_base += info->lcr_offset;
1da177e4
LT
4126
4127 } else {
4128 /* claim DMA channel */
4129
4130 if (request_dma(info->dma_level,info->device_name) < 0){
25985edc 4131 printk( "%s(%d):Can't request DMA channel on device %s DMA=%d\n",
1da177e4
LT
4132 __FILE__,__LINE__,info->device_name, info->dma_level );
4133 mgsl_release_resources( info );
4134 return -ENODEV;
4135 }
0fab6de0 4136 info->dma_requested = true;
1da177e4
LT
4137
4138 /* ISA adapter uses bus master DMA */
4139 set_dma_mode(info->dma_level,DMA_MODE_CASCADE);
4140 enable_dma(info->dma_level);
4141 }
4142
4143 if ( mgsl_allocate_dma_buffers(info) < 0 ) {
25985edc 4144 printk( "%s(%d):Can't allocate DMA buffers on device %s DMA=%d\n",
1da177e4
LT
4145 __FILE__,__LINE__,info->device_name, info->dma_level );
4146 goto errout;
4147 }
4148
4149 return 0;
4150errout:
4151 mgsl_release_resources(info);
4152 return -ENODEV;
4153
4154} /* end of mgsl_claim_resources() */
4155
4156static void mgsl_release_resources(struct mgsl_struct *info)
4157{
4158 if ( debug_level >= DEBUG_LEVEL_INFO )
4159 printk( "%s(%d):mgsl_release_resources(%s) entry\n",
4160 __FILE__,__LINE__,info->device_name );
4161
4162 if ( info->irq_requested ) {
4163 free_irq(info->irq_level, info);
0fab6de0 4164 info->irq_requested = false;
1da177e4
LT
4165 }
4166 if ( info->dma_requested ) {
4167 disable_dma(info->dma_level);
4168 free_dma(info->dma_level);
0fab6de0 4169 info->dma_requested = false;
1da177e4
LT
4170 }
4171 mgsl_free_dma_buffers(info);
4172 mgsl_free_intermediate_rxbuffer_memory(info);
4173 mgsl_free_intermediate_txbuffer_memory(info);
4174
4175 if ( info->io_addr_requested ) {
4176 release_region(info->io_base,info->io_addr_size);
0fab6de0 4177 info->io_addr_requested = false;
1da177e4
LT
4178 }
4179 if ( info->shared_mem_requested ) {
4180 release_mem_region(info->phys_memory_base,0x40000);
0fab6de0 4181 info->shared_mem_requested = false;
1da177e4
LT
4182 }
4183 if ( info->lcr_mem_requested ) {
4184 release_mem_region(info->phys_lcr_base + info->lcr_offset,128);
0fab6de0 4185 info->lcr_mem_requested = false;
1da177e4
LT
4186 }
4187 if (info->memory_base){
4188 iounmap(info->memory_base);
4189 info->memory_base = NULL;
4190 }
4191 if (info->lcr_base){
4192 iounmap(info->lcr_base - info->lcr_offset);
4193 info->lcr_base = NULL;
4194 }
4195
4196 if ( debug_level >= DEBUG_LEVEL_INFO )
4197 printk( "%s(%d):mgsl_release_resources(%s) exit\n",
4198 __FILE__,__LINE__,info->device_name );
4199
4200} /* end of mgsl_release_resources() */
4201
4202/* mgsl_add_device()
4203 *
4204 * Add the specified device instance data structure to the
4205 * global linked list of devices and increment the device count.
4206 *
4207 * Arguments: info pointer to device instance data
4208 * Return Value: None
4209 */
4210static void mgsl_add_device( struct mgsl_struct *info )
4211{
4212 info->next_device = NULL;
4213 info->line = mgsl_device_count;
4214 sprintf(info->device_name,"ttySL%d",info->line);
4215
4216 if (info->line < MAX_TOTAL_DEVICES) {
4217 if (maxframe[info->line])
4218 info->max_frame_size = maxframe[info->line];
1da177e4
LT
4219
4220 if (txdmabufs[info->line]) {
4221 info->num_tx_dma_buffers = txdmabufs[info->line];
4222 if (info->num_tx_dma_buffers < 1)
4223 info->num_tx_dma_buffers = 1;
4224 }
4225
4226 if (txholdbufs[info->line]) {
4227 info->num_tx_holding_buffers = txholdbufs[info->line];
4228 if (info->num_tx_holding_buffers < 1)
4229 info->num_tx_holding_buffers = 1;
4230 else if (info->num_tx_holding_buffers > MAX_TX_HOLDING_BUFFERS)
4231 info->num_tx_holding_buffers = MAX_TX_HOLDING_BUFFERS;
4232 }
4233 }
4234
4235 mgsl_device_count++;
4236
4237 if ( !mgsl_device_list )
4238 mgsl_device_list = info;
4239 else {
4240 struct mgsl_struct *current_dev = mgsl_device_list;
4241 while( current_dev->next_device )
4242 current_dev = current_dev->next_device;
4243 current_dev->next_device = info;
4244 }
4245
4246 if ( info->max_frame_size < 4096 )
4247 info->max_frame_size = 4096;
4248 else if ( info->max_frame_size > 65535 )
4249 info->max_frame_size = 65535;
4250
4251 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
4252 printk( "SyncLink PCI v%d %s: IO=%04X IRQ=%d Mem=%08X,%08X MaxFrameSize=%u\n",
4253 info->hw_version + 1, info->device_name, info->io_base, info->irq_level,
4254 info->phys_memory_base, info->phys_lcr_base,
4255 info->max_frame_size );
4256 } else {
4257 printk( "SyncLink ISA %s: IO=%04X IRQ=%d DMA=%d MaxFrameSize=%u\n",
4258 info->device_name, info->io_base, info->irq_level, info->dma_level,
4259 info->max_frame_size );
4260 }
4261
af69c7f9 4262#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
4263 hdlcdev_init(info);
4264#endif
4265
4266} /* end of mgsl_add_device() */
4267
31f35939
AC
4268static const struct tty_port_operations mgsl_port_ops = {
4269 .carrier_raised = carrier_raised,
fcc8ac18 4270 .dtr_rts = dtr_rts,
31f35939
AC
4271};
4272
4273
1da177e4
LT
4274/* mgsl_allocate_device()
4275 *
4276 * Allocate and initialize a device instance structure
4277 *
4278 * Arguments: none
4279 * Return Value: pointer to mgsl_struct if success, otherwise NULL
4280 */
4281static struct mgsl_struct* mgsl_allocate_device(void)
4282{
4283 struct mgsl_struct *info;
4284
dd00cc48 4285 info = kzalloc(sizeof(struct mgsl_struct),
1da177e4
LT
4286 GFP_KERNEL);
4287
4288 if (!info) {
4289 printk("Error can't allocate device instance data\n");
4290 } else {
44b7d1b3 4291 tty_port_init(&info->port);
31f35939 4292 info->port.ops = &mgsl_port_ops;
1da177e4 4293 info->magic = MGSL_MAGIC;
c4028958 4294 INIT_WORK(&info->task, mgsl_bh_handler);
1da177e4 4295 info->max_frame_size = 4096;
44b7d1b3
AC
4296 info->port.close_delay = 5*HZ/10;
4297 info->port.closing_wait = 30*HZ;
1da177e4
LT
4298 init_waitqueue_head(&info->status_event_wait_q);
4299 init_waitqueue_head(&info->event_wait_q);
4300 spin_lock_init(&info->irq_spinlock);
4301 spin_lock_init(&info->netlock);
4302 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
4303 info->idle_mode = HDLC_TXIDLE_FLAGS;
4304 info->num_tx_dma_buffers = 1;
4305 info->num_tx_holding_buffers = 0;
4306 }
4307
4308 return info;
4309
4310} /* end of mgsl_allocate_device()*/
4311
b68e31d0 4312static const struct tty_operations mgsl_ops = {
8a3ad104 4313 .install = mgsl_install,
1da177e4
LT
4314 .open = mgsl_open,
4315 .close = mgsl_close,
4316 .write = mgsl_write,
4317 .put_char = mgsl_put_char,
4318 .flush_chars = mgsl_flush_chars,
4319 .write_room = mgsl_write_room,
4320 .chars_in_buffer = mgsl_chars_in_buffer,
4321 .flush_buffer = mgsl_flush_buffer,
4322 .ioctl = mgsl_ioctl,
4323 .throttle = mgsl_throttle,
4324 .unthrottle = mgsl_unthrottle,
4325 .send_xchar = mgsl_send_xchar,
4326 .break_ctl = mgsl_break,
4327 .wait_until_sent = mgsl_wait_until_sent,
1da177e4
LT
4328 .set_termios = mgsl_set_termios,
4329 .stop = mgsl_stop,
4330 .start = mgsl_start,
4331 .hangup = mgsl_hangup,
4332 .tiocmget = tiocmget,
4333 .tiocmset = tiocmset,
0587102c 4334 .get_icount = msgl_get_icount,
d337829b 4335 .proc_fops = &mgsl_proc_fops,
1da177e4
LT
4336};
4337
4338/*
4339 * perform tty device initialization
4340 */
4341static int mgsl_init_tty(void)
4342{
4343 int rc;
4344
4345 serial_driver = alloc_tty_driver(128);
4346 if (!serial_driver)
4347 return -ENOMEM;
4348
1da177e4
LT
4349 serial_driver->driver_name = "synclink";
4350 serial_driver->name = "ttySL";
4351 serial_driver->major = ttymajor;
4352 serial_driver->minor_start = 64;
4353 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
4354 serial_driver->subtype = SERIAL_TYPE_NORMAL;
4355 serial_driver->init_termios = tty_std_termios;
4356 serial_driver->init_termios.c_cflag =
4357 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
606d099c
AC
4358 serial_driver->init_termios.c_ispeed = 9600;
4359 serial_driver->init_termios.c_ospeed = 9600;
1da177e4
LT
4360 serial_driver->flags = TTY_DRIVER_REAL_RAW;
4361 tty_set_operations(serial_driver, &mgsl_ops);
4362 if ((rc = tty_register_driver(serial_driver)) < 0) {
4363 printk("%s(%d):Couldn't register serial driver\n",
4364 __FILE__,__LINE__);
4365 put_tty_driver(serial_driver);
4366 serial_driver = NULL;
4367 return rc;
4368 }
4369
4370 printk("%s %s, tty major#%d\n",
4371 driver_name, driver_version,
4372 serial_driver->major);
4373 return 0;
4374}
4375
4376/* enumerate user specified ISA adapters
4377 */
4378static void mgsl_enum_isa_devices(void)
4379{
4380 struct mgsl_struct *info;
4381 int i;
4382
4383 /* Check for user specified ISA devices */
4384
4385 for (i=0 ;(i < MAX_ISA_DEVICES) && io[i] && irq[i]; i++){
4386 if ( debug_level >= DEBUG_LEVEL_INFO )
4387 printk("ISA device specified io=%04X,irq=%d,dma=%d\n",
4388 io[i], irq[i], dma[i] );
4389
4390 info = mgsl_allocate_device();
4391 if ( !info ) {
4392 /* error allocating device instance data */
4393 if ( debug_level >= DEBUG_LEVEL_ERROR )
4394 printk( "can't allocate device instance data.\n");
4395 continue;
4396 }
4397
4398 /* Copy user configuration info to device instance data */
4399 info->io_base = (unsigned int)io[i];
4400 info->irq_level = (unsigned int)irq[i];
4401 info->irq_level = irq_canonicalize(info->irq_level);
4402 info->dma_level = (unsigned int)dma[i];
4403 info->bus_type = MGSL_BUS_TYPE_ISA;
4404 info->io_addr_size = 16;
4405 info->irq_flags = 0;
4406
4407 mgsl_add_device( info );
4408 }
4409}
4410
4411static void synclink_cleanup(void)
4412{
4413 int rc;
4414 struct mgsl_struct *info;
4415 struct mgsl_struct *tmp;
4416
4417 printk("Unloading %s: %s\n", driver_name, driver_version);
4418
4419 if (serial_driver) {
4420 if ((rc = tty_unregister_driver(serial_driver)))
4421 printk("%s(%d) failed to unregister tty driver err=%d\n",
4422 __FILE__,__LINE__,rc);
4423 put_tty_driver(serial_driver);
4424 }
4425
4426 info = mgsl_device_list;
4427 while(info) {
af69c7f9 4428#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
4429 hdlcdev_exit(info);
4430#endif
4431 mgsl_release_resources(info);
4432 tmp = info;
4433 info = info->next_device;
191c5f10 4434 tty_port_destroy(&tmp->port);
1da177e4
LT
4435 kfree(tmp);
4436 }
4437
1da177e4
LT
4438 if (pci_registered)
4439 pci_unregister_driver(&synclink_pci_driver);
4440}
4441
4442static int __init synclink_init(void)
4443{
4444 int rc;
4445
4446 if (break_on_load) {
4447 mgsl_get_text_ptr();
4448 BREAKPOINT();
4449 }
4450
4451 printk("%s %s\n", driver_name, driver_version);
4452
4453 mgsl_enum_isa_devices();
4454 if ((rc = pci_register_driver(&synclink_pci_driver)) < 0)
4455 printk("%s:failed to register PCI driver, error=%d\n",__FILE__,rc);
4456 else
0fab6de0 4457 pci_registered = true;
1da177e4
LT
4458
4459 if ((rc = mgsl_init_tty()) < 0)
4460 goto error;
4461
4462 return 0;
4463
4464error:
4465 synclink_cleanup();
4466 return rc;
4467}
4468
4469static void __exit synclink_exit(void)
4470{
4471 synclink_cleanup();
4472}
4473
4474module_init(synclink_init);
4475module_exit(synclink_exit);
4476
4477/*
4478 * usc_RTCmd()
4479 *
4480 * Issue a USC Receive/Transmit command to the
4481 * Channel Command/Address Register (CCAR).
4482 *
4483 * Notes:
4484 *
4485 * The command is encoded in the most significant 5 bits <15..11>
4486 * of the CCAR value. Bits <10..7> of the CCAR must be preserved
4487 * and Bits <6..0> must be written as zeros.
4488 *
4489 * Arguments:
4490 *
4491 * info pointer to device information structure
4492 * Cmd command mask (use symbolic macros)
4493 *
4494 * Return Value:
4495 *
4496 * None
4497 */
4498static void usc_RTCmd( struct mgsl_struct *info, u16 Cmd )
4499{
4500 /* output command to CCAR in bits <15..11> */
4501 /* preserve bits <10..7>, bits <6..0> must be zero */
4502
4503 outw( Cmd + info->loopback_bits, info->io_base + CCAR );
4504
4505 /* Read to flush write to CCAR */
4506 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4507 inw( info->io_base + CCAR );
4508
4509} /* end of usc_RTCmd() */
4510
4511/*
4512 * usc_DmaCmd()
4513 *
4514 * Issue a DMA command to the DMA Command/Address Register (DCAR).
4515 *
4516 * Arguments:
4517 *
4518 * info pointer to device information structure
4519 * Cmd DMA command mask (usc_DmaCmd_XX Macros)
4520 *
4521 * Return Value:
4522 *
4523 * None
4524 */
4525static void usc_DmaCmd( struct mgsl_struct *info, u16 Cmd )
4526{
4527 /* write command mask to DCAR */
4528 outw( Cmd + info->mbre_bit, info->io_base );
4529
4530 /* Read to flush write to DCAR */
4531 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4532 inw( info->io_base );
4533
4534} /* end of usc_DmaCmd() */
4535
4536/*
4537 * usc_OutDmaReg()
4538 *
4539 * Write a 16-bit value to a USC DMA register
4540 *
4541 * Arguments:
4542 *
4543 * info pointer to device info structure
4544 * RegAddr register address (number) for write
4545 * RegValue 16-bit value to write to register
4546 *
4547 * Return Value:
4548 *
4549 * None
4550 *
4551 */
4552static void usc_OutDmaReg( struct mgsl_struct *info, u16 RegAddr, u16 RegValue )
4553{
4554 /* Note: The DCAR is located at the adapter base address */
4555 /* Note: must preserve state of BIT8 in DCAR */
4556
4557 outw( RegAddr + info->mbre_bit, info->io_base );
4558 outw( RegValue, info->io_base );
4559
4560 /* Read to flush write to DCAR */
4561 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4562 inw( info->io_base );
4563
4564} /* end of usc_OutDmaReg() */
4565
4566/*
4567 * usc_InDmaReg()
4568 *
4569 * Read a 16-bit value from a DMA register
4570 *
4571 * Arguments:
4572 *
4573 * info pointer to device info structure
4574 * RegAddr register address (number) to read from
4575 *
4576 * Return Value:
4577 *
4578 * The 16-bit value read from register
4579 *
4580 */
4581static u16 usc_InDmaReg( struct mgsl_struct *info, u16 RegAddr )
4582{
4583 /* Note: The DCAR is located at the adapter base address */
4584 /* Note: must preserve state of BIT8 in DCAR */
4585
4586 outw( RegAddr + info->mbre_bit, info->io_base );
4587 return inw( info->io_base );
4588
4589} /* end of usc_InDmaReg() */
4590
4591/*
4592 *
4593 * usc_OutReg()
4594 *
4595 * Write a 16-bit value to a USC serial channel register
4596 *
4597 * Arguments:
4598 *
4599 * info pointer to device info structure
4600 * RegAddr register address (number) to write to
4601 * RegValue 16-bit value to write to register
4602 *
4603 * Return Value:
4604 *
4605 * None
4606 *
4607 */
4608static void usc_OutReg( struct mgsl_struct *info, u16 RegAddr, u16 RegValue )
4609{
4610 outw( RegAddr + info->loopback_bits, info->io_base + CCAR );
4611 outw( RegValue, info->io_base + CCAR );
4612
4613 /* Read to flush write to CCAR */
4614 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4615 inw( info->io_base + CCAR );
4616
4617} /* end of usc_OutReg() */
4618
4619/*
4620 * usc_InReg()
4621 *
4622 * Reads a 16-bit value from a USC serial channel register
4623 *
4624 * Arguments:
4625 *
4626 * info pointer to device extension
4627 * RegAddr register address (number) to read from
4628 *
4629 * Return Value:
4630 *
4631 * 16-bit value read from register
4632 */
4633static u16 usc_InReg( struct mgsl_struct *info, u16 RegAddr )
4634{
4635 outw( RegAddr + info->loopback_bits, info->io_base + CCAR );
4636 return inw( info->io_base + CCAR );
4637
4638} /* end of usc_InReg() */
4639
4640/* usc_set_sdlc_mode()
4641 *
4642 * Set up the adapter for SDLC DMA communications.
4643 *
4644 * Arguments: info pointer to device instance data
4645 * Return Value: NONE
4646 */
4647static void usc_set_sdlc_mode( struct mgsl_struct *info )
4648{
4649 u16 RegValue;
0fab6de0 4650 bool PreSL1660;
1da177e4
LT
4651
4652 /*
4653 * determine if the IUSC on the adapter is pre-SL1660. If
4654 * not, take advantage of the UnderWait feature of more
4655 * modern chips. If an underrun occurs and this bit is set,
4656 * the transmitter will idle the programmed idle pattern
4657 * until the driver has time to service the underrun. Otherwise,
4658 * the dma controller may get the cycles previously requested
4659 * and begin transmitting queued tx data.
4660 */
4661 usc_OutReg(info,TMCR,0x1f);
4662 RegValue=usc_InReg(info,TMDR);
0fab6de0 4663 PreSL1660 = (RegValue == IUSC_PRE_SL1660);
1da177e4
LT
4664
4665 if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
4666 {
4667 /*
4668 ** Channel Mode Register (CMR)
4669 **
4670 ** <15..14> 10 Tx Sub Modes, Send Flag on Underrun
4671 ** <13> 0 0 = Transmit Disabled (initially)
4672 ** <12> 0 1 = Consecutive Idles share common 0
4673 ** <11..8> 1110 Transmitter Mode = HDLC/SDLC Loop
4674 ** <7..4> 0000 Rx Sub Modes, addr/ctrl field handling
4675 ** <3..0> 0110 Receiver Mode = HDLC/SDLC
4676 **
4677 ** 1000 1110 0000 0110 = 0x8e06
4678 */
4679 RegValue = 0x8e06;
4680
4681 /*--------------------------------------------------
4682 * ignore user options for UnderRun Actions and
4683 * preambles
4684 *--------------------------------------------------*/
4685 }
4686 else
4687 {
4688 /* Channel mode Register (CMR)
4689 *
4690 * <15..14> 00 Tx Sub modes, Underrun Action
4691 * <13> 0 1 = Send Preamble before opening flag
4692 * <12> 0 1 = Consecutive Idles share common 0
4693 * <11..8> 0110 Transmitter mode = HDLC/SDLC
4694 * <7..4> 0000 Rx Sub modes, addr/ctrl field handling
4695 * <3..0> 0110 Receiver mode = HDLC/SDLC
4696 *
4697 * 0000 0110 0000 0110 = 0x0606
4698 */
4699 if (info->params.mode == MGSL_MODE_RAW) {
4700 RegValue = 0x0001; /* Set Receive mode = external sync */
4701
4702 usc_OutReg( info, IOCR, /* Set IOCR DCD is RxSync Detect Input */
4703 (unsigned short)((usc_InReg(info, IOCR) & ~(BIT13|BIT12)) | BIT12));
4704
4705 /*
4706 * TxSubMode:
4707 * CMR <15> 0 Don't send CRC on Tx Underrun
4708 * CMR <14> x undefined
4709 * CMR <13> 0 Send preamble before openning sync
4710 * CMR <12> 0 Send 8-bit syncs, 1=send Syncs per TxLength
4711 *
4712 * TxMode:
4713 * CMR <11-8) 0100 MonoSync
4714 *
4715 * 0x00 0100 xxxx xxxx 04xx
4716 */
4717 RegValue |= 0x0400;
4718 }
4719 else {
4720
4721 RegValue = 0x0606;
4722
4723 if ( info->params.flags & HDLC_FLAG_UNDERRUN_ABORT15 )
4724 RegValue |= BIT14;
4725 else if ( info->params.flags & HDLC_FLAG_UNDERRUN_FLAG )
4726 RegValue |= BIT15;
4727 else if ( info->params.flags & HDLC_FLAG_UNDERRUN_CRC )
4728 RegValue |= BIT15 + BIT14;
4729 }
4730
4731 if ( info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE )
4732 RegValue |= BIT13;
4733 }
4734
4735 if ( info->params.mode == MGSL_MODE_HDLC &&
4736 (info->params.flags & HDLC_FLAG_SHARE_ZERO) )
4737 RegValue |= BIT12;
4738
4739 if ( info->params.addr_filter != 0xff )
4740 {
4741 /* set up receive address filtering */
4742 usc_OutReg( info, RSR, info->params.addr_filter );
4743 RegValue |= BIT4;
4744 }
4745
4746 usc_OutReg( info, CMR, RegValue );
4747 info->cmr_value = RegValue;
4748
4749 /* Receiver mode Register (RMR)
4750 *
4751 * <15..13> 000 encoding
4752 * <12..11> 00 FCS = 16bit CRC CCITT (x15 + x12 + x5 + 1)
4753 * <10> 1 1 = Set CRC to all 1s (use for SDLC/HDLC)
4754 * <9> 0 1 = Include Receive chars in CRC
4755 * <8> 1 1 = Use Abort/PE bit as abort indicator
4756 * <7..6> 00 Even parity
4757 * <5> 0 parity disabled
4758 * <4..2> 000 Receive Char Length = 8 bits
4759 * <1..0> 00 Disable Receiver
4760 *
4761 * 0000 0101 0000 0000 = 0x0500
4762 */
4763
4764 RegValue = 0x0500;
4765
4766 switch ( info->params.encoding ) {
4767 case HDLC_ENCODING_NRZB: RegValue |= BIT13; break;
4768 case HDLC_ENCODING_NRZI_MARK: RegValue |= BIT14; break;
4769 case HDLC_ENCODING_NRZI_SPACE: RegValue |= BIT14 + BIT13; break;
4770 case HDLC_ENCODING_BIPHASE_MARK: RegValue |= BIT15; break;
4771 case HDLC_ENCODING_BIPHASE_SPACE: RegValue |= BIT15 + BIT13; break;
4772 case HDLC_ENCODING_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14; break;
4773 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14 + BIT13; break;
4774 }
4775
4776 if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_16_CCITT )
4777 RegValue |= BIT9;
4778 else if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_32_CCITT )
4779 RegValue |= ( BIT12 | BIT10 | BIT9 );
4780
4781 usc_OutReg( info, RMR, RegValue );
4782
4783 /* Set the Receive count Limit Register (RCLR) to 0xffff. */
4784 /* When an opening flag of an SDLC frame is recognized the */
4785 /* Receive Character count (RCC) is loaded with the value in */
4786 /* RCLR. The RCC is decremented for each received byte. The */
4787 /* value of RCC is stored after the closing flag of the frame */
4788 /* allowing the frame size to be computed. */
4789
4790 usc_OutReg( info, RCLR, RCLRVALUE );
4791
4792 usc_RCmd( info, RCmd_SelectRicrdma_level );
4793
4794 /* Receive Interrupt Control Register (RICR)
4795 *
4796 * <15..8> ? RxFIFO DMA Request Level
4797 * <7> 0 Exited Hunt IA (Interrupt Arm)
4798 * <6> 0 Idle Received IA
4799 * <5> 0 Break/Abort IA
4800 * <4> 0 Rx Bound IA
4801 * <3> 1 Queued status reflects oldest 2 bytes in FIFO
4802 * <2> 0 Abort/PE IA
4803 * <1> 1 Rx Overrun IA
4804 * <0> 0 Select TC0 value for readback
4805 *
4806 * 0000 0000 0000 1000 = 0x000a
4807 */
4808
4809 /* Carry over the Exit Hunt and Idle Received bits */
4810 /* in case they have been armed by usc_ArmEvents. */
4811
4812 RegValue = usc_InReg( info, RICR ) & 0xc0;
4813
4814 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4815 usc_OutReg( info, RICR, (u16)(0x030a | RegValue) );
4816 else
4817 usc_OutReg( info, RICR, (u16)(0x140a | RegValue) );
4818
4819 /* Unlatch all Rx status bits and clear Rx status IRQ Pending */
4820
4821 usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
4822 usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
4823
4824 /* Transmit mode Register (TMR)
4825 *
4826 * <15..13> 000 encoding
4827 * <12..11> 00 FCS = 16bit CRC CCITT (x15 + x12 + x5 + 1)
4828 * <10> 1 1 = Start CRC as all 1s (use for SDLC/HDLC)
4829 * <9> 0 1 = Tx CRC Enabled
4830 * <8> 0 1 = Append CRC to end of transmit frame
4831 * <7..6> 00 Transmit parity Even
4832 * <5> 0 Transmit parity Disabled
4833 * <4..2> 000 Tx Char Length = 8 bits
4834 * <1..0> 00 Disable Transmitter
4835 *
4836 * 0000 0100 0000 0000 = 0x0400
4837 */
4838
4839 RegValue = 0x0400;
4840
4841 switch ( info->params.encoding ) {
4842 case HDLC_ENCODING_NRZB: RegValue |= BIT13; break;
4843 case HDLC_ENCODING_NRZI_MARK: RegValue |= BIT14; break;
4844 case HDLC_ENCODING_NRZI_SPACE: RegValue |= BIT14 + BIT13; break;
4845 case HDLC_ENCODING_BIPHASE_MARK: RegValue |= BIT15; break;
4846 case HDLC_ENCODING_BIPHASE_SPACE: RegValue |= BIT15 + BIT13; break;
4847 case HDLC_ENCODING_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14; break;
4848 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14 + BIT13; break;
4849 }
4850
4851 if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_16_CCITT )
4852 RegValue |= BIT9 + BIT8;
4853 else if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_32_CCITT )
4854 RegValue |= ( BIT12 | BIT10 | BIT9 | BIT8);
4855
4856 usc_OutReg( info, TMR, RegValue );
4857
4858 usc_set_txidle( info );
4859
4860
4861 usc_TCmd( info, TCmd_SelectTicrdma_level );
4862
4863 /* Transmit Interrupt Control Register (TICR)
4864 *
4865 * <15..8> ? Transmit FIFO DMA Level
4866 * <7> 0 Present IA (Interrupt Arm)
4867 * <6> 0 Idle Sent IA
4868 * <5> 1 Abort Sent IA
4869 * <4> 1 EOF/EOM Sent IA
4870 * <3> 0 CRC Sent IA
4871 * <2> 1 1 = Wait for SW Trigger to Start Frame
4872 * <1> 1 Tx Underrun IA
4873 * <0> 0 TC0 constant on read back
4874 *
4875 * 0000 0000 0011 0110 = 0x0036
4876 */
4877
4878 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4879 usc_OutReg( info, TICR, 0x0736 );
4880 else
4881 usc_OutReg( info, TICR, 0x1436 );
4882
4883 usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
4884 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
4885
4886 /*
4887 ** Transmit Command/Status Register (TCSR)
4888 **
4889 ** <15..12> 0000 TCmd
4890 ** <11> 0/1 UnderWait
4891 ** <10..08> 000 TxIdle
4892 ** <7> x PreSent
4893 ** <6> x IdleSent
4894 ** <5> x AbortSent
4895 ** <4> x EOF/EOM Sent
4896 ** <3> x CRC Sent
4897 ** <2> x All Sent
4898 ** <1> x TxUnder
4899 ** <0> x TxEmpty
4900 **
4901 ** 0000 0000 0000 0000 = 0x0000
4902 */
4903 info->tcsr_value = 0;
4904
4905 if ( !PreSL1660 )
4906 info->tcsr_value |= TCSR_UNDERWAIT;
4907
4908 usc_OutReg( info, TCSR, info->tcsr_value );
4909
4910 /* Clock mode Control Register (CMCR)
4911 *
4912 * <15..14> 00 counter 1 Source = Disabled
4913 * <13..12> 00 counter 0 Source = Disabled
4914 * <11..10> 11 BRG1 Input is TxC Pin
4915 * <9..8> 11 BRG0 Input is TxC Pin
4916 * <7..6> 01 DPLL Input is BRG1 Output
4917 * <5..3> XXX TxCLK comes from Port 0
4918 * <2..0> XXX RxCLK comes from Port 1
4919 *
4920 * 0000 1111 0111 0111 = 0x0f77
4921 */
4922
4923 RegValue = 0x0f40;
4924
4925 if ( info->params.flags & HDLC_FLAG_RXC_DPLL )
4926 RegValue |= 0x0003; /* RxCLK from DPLL */
4927 else if ( info->params.flags & HDLC_FLAG_RXC_BRG )
4928 RegValue |= 0x0004; /* RxCLK from BRG0 */
4929 else if ( info->params.flags & HDLC_FLAG_RXC_TXCPIN)
4930 RegValue |= 0x0006; /* RxCLK from TXC Input */
4931 else
4932 RegValue |= 0x0007; /* RxCLK from Port1 */
4933
4934 if ( info->params.flags & HDLC_FLAG_TXC_DPLL )
4935 RegValue |= 0x0018; /* TxCLK from DPLL */
4936 else if ( info->params.flags & HDLC_FLAG_TXC_BRG )
4937 RegValue |= 0x0020; /* TxCLK from BRG0 */
4938 else if ( info->params.flags & HDLC_FLAG_TXC_RXCPIN)
4939 RegValue |= 0x0038; /* RxCLK from TXC Input */
4940 else
4941 RegValue |= 0x0030; /* TxCLK from Port0 */
4942
4943 usc_OutReg( info, CMCR, RegValue );
4944
4945
4946 /* Hardware Configuration Register (HCR)
4947 *
4948 * <15..14> 00 CTR0 Divisor:00=32,01=16,10=8,11=4
4949 * <13> 0 CTR1DSel:0=CTR0Div determines CTR0Div
4950 * <12> 0 CVOK:0=report code violation in biphase
4951 * <11..10> 00 DPLL Divisor:00=32,01=16,10=8,11=4
4952 * <9..8> XX DPLL mode:00=disable,01=NRZ,10=Biphase,11=Biphase Level
4953 * <7..6> 00 reserved
4954 * <5> 0 BRG1 mode:0=continuous,1=single cycle
4955 * <4> X BRG1 Enable
4956 * <3..2> 00 reserved
4957 * <1> 0 BRG0 mode:0=continuous,1=single cycle
4958 * <0> 0 BRG0 Enable
4959 */
4960
4961 RegValue = 0x0000;
4962
4963 if ( info->params.flags & (HDLC_FLAG_RXC_DPLL + HDLC_FLAG_TXC_DPLL) ) {
4964 u32 XtalSpeed;
4965 u32 DpllDivisor;
4966 u16 Tc;
4967
4968 /* DPLL is enabled. Use BRG1 to provide continuous reference clock */
4969 /* for DPLL. DPLL mode in HCR is dependent on the encoding used. */
4970
4971 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
4972 XtalSpeed = 11059200;
4973 else
4974 XtalSpeed = 14745600;
4975
4976 if ( info->params.flags & HDLC_FLAG_DPLL_DIV16 ) {
4977 DpllDivisor = 16;
4978 RegValue |= BIT10;
4979 }
4980 else if ( info->params.flags & HDLC_FLAG_DPLL_DIV8 ) {
4981 DpllDivisor = 8;
4982 RegValue |= BIT11;
4983 }
4984 else
4985 DpllDivisor = 32;
4986
4987 /* Tc = (Xtal/Speed) - 1 */
4988 /* If twice the remainder of (Xtal/Speed) is greater than Speed */
4989 /* then rounding up gives a more precise time constant. Instead */
4990 /* of rounding up and then subtracting 1 we just don't subtract */
4991 /* the one in this case. */
4992
4993 /*--------------------------------------------------
4994 * ejz: for DPLL mode, application should use the
4995 * same clock speed as the partner system, even
4996 * though clocking is derived from the input RxData.
4997 * In case the user uses a 0 for the clock speed,
4998 * default to 0xffffffff and don't try to divide by
4999 * zero
5000 *--------------------------------------------------*/
5001 if ( info->params.clock_speed )
5002 {
5003 Tc = (u16)((XtalSpeed/DpllDivisor)/info->params.clock_speed);
5004 if ( !((((XtalSpeed/DpllDivisor) % info->params.clock_speed) * 2)
5005 / info->params.clock_speed) )
5006 Tc--;
5007 }
5008 else
5009 Tc = -1;
5010
5011
5012 /* Write 16-bit Time Constant for BRG1 */
5013 usc_OutReg( info, TC1R, Tc );
5014
5015 RegValue |= BIT4; /* enable BRG1 */
5016
5017 switch ( info->params.encoding ) {
5018 case HDLC_ENCODING_NRZ:
5019 case HDLC_ENCODING_NRZB:
5020 case HDLC_ENCODING_NRZI_MARK:
5021 case HDLC_ENCODING_NRZI_SPACE: RegValue |= BIT8; break;
5022 case HDLC_ENCODING_BIPHASE_MARK:
5023 case HDLC_ENCODING_BIPHASE_SPACE: RegValue |= BIT9; break;
5024 case HDLC_ENCODING_BIPHASE_LEVEL:
5025 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT9 + BIT8; break;
5026 }
5027 }
5028
5029 usc_OutReg( info, HCR, RegValue );
5030
5031
5032 /* Channel Control/status Register (CCSR)
5033 *
5034 * <15> X RCC FIFO Overflow status (RO)
5035 * <14> X RCC FIFO Not Empty status (RO)
5036 * <13> 0 1 = Clear RCC FIFO (WO)
5037 * <12> X DPLL Sync (RW)
5038 * <11> X DPLL 2 Missed Clocks status (RO)
5039 * <10> X DPLL 1 Missed Clock status (RO)
5040 * <9..8> 00 DPLL Resync on rising and falling edges (RW)
5041 * <7> X SDLC Loop On status (RO)
5042 * <6> X SDLC Loop Send status (RO)
5043 * <5> 1 Bypass counters for TxClk and RxClk (RW)
5044 * <4..2> 000 Last Char of SDLC frame has 8 bits (RW)
5045 * <1..0> 00 reserved
5046 *
5047 * 0000 0000 0010 0000 = 0x0020
5048 */
5049
5050 usc_OutReg( info, CCSR, 0x1020 );
5051
5052
5053 if ( info->params.flags & HDLC_FLAG_AUTO_CTS ) {
5054 usc_OutReg( info, SICR,
5055 (u16)(usc_InReg(info,SICR) | SICR_CTS_INACTIVE) );
5056 }
5057
5058
5059 /* enable Master Interrupt Enable bit (MIE) */
5060 usc_EnableMasterIrqBit( info );
5061
5062 usc_ClearIrqPendingBits( info, RECEIVE_STATUS + RECEIVE_DATA +
5063 TRANSMIT_STATUS + TRANSMIT_DATA + MISC);
5064
5065 /* arm RCC underflow interrupt */
5066 usc_OutReg(info, SICR, (u16)(usc_InReg(info,SICR) | BIT3));
5067 usc_EnableInterrupts(info, MISC);
5068
5069 info->mbre_bit = 0;
5070 outw( 0, info->io_base ); /* clear Master Bus Enable (DCAR) */
5071 usc_DmaCmd( info, DmaCmd_ResetAllChannels ); /* disable both DMA channels */
5072 info->mbre_bit = BIT8;
5073 outw( BIT8, info->io_base ); /* set Master Bus Enable (DCAR) */
5074
5075 if (info->bus_type == MGSL_BUS_TYPE_ISA) {
5076 /* Enable DMAEN (Port 7, Bit 14) */
5077 /* This connects the DMA request signal to the ISA bus */
5078 usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT15) & ~BIT14));
5079 }
5080
5081 /* DMA Control Register (DCR)
5082 *
5083 * <15..14> 10 Priority mode = Alternating Tx/Rx
5084 * 01 Rx has priority
5085 * 00 Tx has priority
5086 *
5087 * <13> 1 Enable Priority Preempt per DCR<15..14>
5088 * (WARNING DCR<11..10> must be 00 when this is 1)
5089 * 0 Choose activate channel per DCR<11..10>
5090 *
5091 * <12> 0 Little Endian for Array/List
5092 * <11..10> 00 Both Channels can use each bus grant
5093 * <9..6> 0000 reserved
5094 * <5> 0 7 CLK - Minimum Bus Re-request Interval
5095 * <4> 0 1 = drive D/C and S/D pins
5096 * <3> 1 1 = Add one wait state to all DMA cycles.
5097 * <2> 0 1 = Strobe /UAS on every transfer.
5098 * <1..0> 11 Addr incrementing only affects LS24 bits
5099 *
5100 * 0110 0000 0000 1011 = 0x600b
5101 */
5102
5103 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
5104 /* PCI adapter does not need DMA wait state */
5105 usc_OutDmaReg( info, DCR, 0xa00b );
5106 }
5107 else
5108 usc_OutDmaReg( info, DCR, 0x800b );
5109
5110
5111 /* Receive DMA mode Register (RDMR)
5112 *
5113 * <15..14> 11 DMA mode = Linked List Buffer mode
5114 * <13> 1 RSBinA/L = store Rx status Block in Arrary/List entry
5115 * <12> 1 Clear count of List Entry after fetching
5116 * <11..10> 00 Address mode = Increment
5117 * <9> 1 Terminate Buffer on RxBound
5118 * <8> 0 Bus Width = 16bits
5119 * <7..0> ? status Bits (write as 0s)
5120 *
5121 * 1111 0010 0000 0000 = 0xf200
5122 */
5123
5124 usc_OutDmaReg( info, RDMR, 0xf200 );
5125
5126
5127 /* Transmit DMA mode Register (TDMR)
5128 *
5129 * <15..14> 11 DMA mode = Linked List Buffer mode
5130 * <13> 1 TCBinA/L = fetch Tx Control Block from List entry
5131 * <12> 1 Clear count of List Entry after fetching
5132 * <11..10> 00 Address mode = Increment
5133 * <9> 1 Terminate Buffer on end of frame
5134 * <8> 0 Bus Width = 16bits
5135 * <7..0> ? status Bits (Read Only so write as 0)
5136 *
5137 * 1111 0010 0000 0000 = 0xf200
5138 */
5139
5140 usc_OutDmaReg( info, TDMR, 0xf200 );
5141
5142
5143 /* DMA Interrupt Control Register (DICR)
5144 *
5145 * <15> 1 DMA Interrupt Enable
5146 * <14> 0 1 = Disable IEO from USC
5147 * <13> 0 1 = Don't provide vector during IntAck
5148 * <12> 1 1 = Include status in Vector
5149 * <10..2> 0 reserved, Must be 0s
5150 * <1> 0 1 = Rx DMA Interrupt Enabled
5151 * <0> 0 1 = Tx DMA Interrupt Enabled
5152 *
5153 * 1001 0000 0000 0000 = 0x9000
5154 */
5155
5156 usc_OutDmaReg( info, DICR, 0x9000 );
5157
5158 usc_InDmaReg( info, RDMR ); /* clear pending receive DMA IRQ bits */
5159 usc_InDmaReg( info, TDMR ); /* clear pending transmit DMA IRQ bits */
5160 usc_OutDmaReg( info, CDIR, 0x0303 ); /* clear IUS and Pending for Tx and Rx */
5161
5162 /* Channel Control Register (CCR)
5163 *
5164 * <15..14> 10 Use 32-bit Tx Control Blocks (TCBs)
5165 * <13> 0 Trigger Tx on SW Command Disabled
5166 * <12> 0 Flag Preamble Disabled
5167 * <11..10> 00 Preamble Length
5168 * <9..8> 00 Preamble Pattern
5169 * <7..6> 10 Use 32-bit Rx status Blocks (RSBs)
5170 * <5> 0 Trigger Rx on SW Command Disabled
5171 * <4..0> 0 reserved
5172 *
5173 * 1000 0000 1000 0000 = 0x8080
5174 */
5175
5176 RegValue = 0x8080;
5177
5178 switch ( info->params.preamble_length ) {
5179 case HDLC_PREAMBLE_LENGTH_16BITS: RegValue |= BIT10; break;
5180 case HDLC_PREAMBLE_LENGTH_32BITS: RegValue |= BIT11; break;
5181 case HDLC_PREAMBLE_LENGTH_64BITS: RegValue |= BIT11 + BIT10; break;
5182 }
5183
5184 switch ( info->params.preamble ) {
5185 case HDLC_PREAMBLE_PATTERN_FLAGS: RegValue |= BIT8 + BIT12; break;
5186 case HDLC_PREAMBLE_PATTERN_ONES: RegValue |= BIT8; break;
5187 case HDLC_PREAMBLE_PATTERN_10: RegValue |= BIT9; break;
5188 case HDLC_PREAMBLE_PATTERN_01: RegValue |= BIT9 + BIT8; break;
5189 }
5190
5191 usc_OutReg( info, CCR, RegValue );
5192
5193
5194 /*
5195 * Burst/Dwell Control Register
5196 *
5197 * <15..8> 0x20 Maximum number of transfers per bus grant
5198 * <7..0> 0x00 Maximum number of clock cycles per bus grant
5199 */
5200
5201 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
5202 /* don't limit bus occupancy on PCI adapter */
5203 usc_OutDmaReg( info, BDCR, 0x0000 );
5204 }
5205 else
5206 usc_OutDmaReg( info, BDCR, 0x2000 );
5207
5208 usc_stop_transmitter(info);
5209 usc_stop_receiver(info);
5210
5211} /* end of usc_set_sdlc_mode() */
5212
5213/* usc_enable_loopback()
5214 *
5215 * Set the 16C32 for internal loopback mode.
5216 * The TxCLK and RxCLK signals are generated from the BRG0 and
5217 * the TxD is looped back to the RxD internally.
5218 *
5219 * Arguments: info pointer to device instance data
5220 * enable 1 = enable loopback, 0 = disable
5221 * Return Value: None
5222 */
5223static void usc_enable_loopback(struct mgsl_struct *info, int enable)
5224{
5225 if (enable) {
5226 /* blank external TXD output */
5227 usc_OutReg(info,IOCR,usc_InReg(info,IOCR) | (BIT7+BIT6));
5228
5229 /* Clock mode Control Register (CMCR)
5230 *
5231 * <15..14> 00 counter 1 Disabled
5232 * <13..12> 00 counter 0 Disabled
5233 * <11..10> 11 BRG1 Input is TxC Pin
5234 * <9..8> 11 BRG0 Input is TxC Pin
5235 * <7..6> 01 DPLL Input is BRG1 Output
5236 * <5..3> 100 TxCLK comes from BRG0
5237 * <2..0> 100 RxCLK comes from BRG0
5238 *
5239 * 0000 1111 0110 0100 = 0x0f64
5240 */
5241
5242 usc_OutReg( info, CMCR, 0x0f64 );
5243
5244 /* Write 16-bit Time Constant for BRG0 */
5245 /* use clock speed if available, otherwise use 8 for diagnostics */
5246 if (info->params.clock_speed) {
5247 if (info->bus_type == MGSL_BUS_TYPE_PCI)
5248 usc_OutReg(info, TC0R, (u16)((11059200/info->params.clock_speed)-1));
5249 else
5250 usc_OutReg(info, TC0R, (u16)((14745600/info->params.clock_speed)-1));
5251 } else
5252 usc_OutReg(info, TC0R, (u16)8);
5253
5254 /* Hardware Configuration Register (HCR) Clear Bit 1, BRG0
5255 mode = Continuous Set Bit 0 to enable BRG0. */
5256 usc_OutReg( info, HCR, (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
5257
5258 /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
5259 usc_OutReg(info, IOCR, (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004));
5260
5261 /* set Internal Data loopback mode */
5262 info->loopback_bits = 0x300;
5263 outw( 0x0300, info->io_base + CCAR );
5264 } else {
5265 /* enable external TXD output */
5266 usc_OutReg(info,IOCR,usc_InReg(info,IOCR) & ~(BIT7+BIT6));
5267
5268 /* clear Internal Data loopback mode */
5269 info->loopback_bits = 0;
5270 outw( 0,info->io_base + CCAR );
5271 }
5272
5273} /* end of usc_enable_loopback() */
5274
5275/* usc_enable_aux_clock()
5276 *
5277 * Enabled the AUX clock output at the specified frequency.
5278 *
5279 * Arguments:
5280 *
5281 * info pointer to device extension
5282 * data_rate data rate of clock in bits per second
5283 * A data rate of 0 disables the AUX clock.
5284 *
5285 * Return Value: None
5286 */
5287static void usc_enable_aux_clock( struct mgsl_struct *info, u32 data_rate )
5288{
5289 u32 XtalSpeed;
5290 u16 Tc;
5291
5292 if ( data_rate ) {
5293 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
5294 XtalSpeed = 11059200;
5295 else
5296 XtalSpeed = 14745600;
5297
5298
5299 /* Tc = (Xtal/Speed) - 1 */
5300 /* If twice the remainder of (Xtal/Speed) is greater than Speed */
5301 /* then rounding up gives a more precise time constant. Instead */
5302 /* of rounding up and then subtracting 1 we just don't subtract */
5303 /* the one in this case. */
5304
5305
5306 Tc = (u16)(XtalSpeed/data_rate);
5307 if ( !(((XtalSpeed % data_rate) * 2) / data_rate) )
5308 Tc--;
5309
5310 /* Write 16-bit Time Constant for BRG0 */
5311 usc_OutReg( info, TC0R, Tc );
5312
5313 /*
5314 * Hardware Configuration Register (HCR)
5315 * Clear Bit 1, BRG0 mode = Continuous
5316 * Set Bit 0 to enable BRG0.
5317 */
5318
5319 usc_OutReg( info, HCR, (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
5320
5321 /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
5322 usc_OutReg( info, IOCR, (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004) );
5323 } else {
5324 /* data rate == 0 so turn off BRG0 */
5325 usc_OutReg( info, HCR, (u16)(usc_InReg( info, HCR ) & ~BIT0) );
5326 }
5327
5328} /* end of usc_enable_aux_clock() */
5329
5330/*
5331 *
5332 * usc_process_rxoverrun_sync()
5333 *
5334 * This function processes a receive overrun by resetting the
5335 * receive DMA buffers and issuing a Purge Rx FIFO command
5336 * to allow the receiver to continue receiving.
5337 *
5338 * Arguments:
5339 *
5340 * info pointer to device extension
5341 *
5342 * Return Value: None
5343 */
5344static void usc_process_rxoverrun_sync( struct mgsl_struct *info )
5345{
5346 int start_index;
5347 int end_index;
5348 int frame_start_index;
0fab6de0
JP
5349 bool start_of_frame_found = false;
5350 bool end_of_frame_found = false;
5351 bool reprogram_dma = false;
1da177e4
LT
5352
5353 DMABUFFERENTRY *buffer_list = info->rx_buffer_list;
5354 u32 phys_addr;
5355
5356 usc_DmaCmd( info, DmaCmd_PauseRxChannel );
5357 usc_RCmd( info, RCmd_EnterHuntmode );
5358 usc_RTCmd( info, RTCmd_PurgeRxFifo );
5359
5360 /* CurrentRxBuffer points to the 1st buffer of the next */
5361 /* possibly available receive frame. */
5362
5363 frame_start_index = start_index = end_index = info->current_rx_buffer;
5364
5365 /* Search for an unfinished string of buffers. This means */
5366 /* that a receive frame started (at least one buffer with */
5367 /* count set to zero) but there is no terminiting buffer */
5368 /* (status set to non-zero). */
5369
5370 while( !buffer_list[end_index].count )
5371 {
5372 /* Count field has been reset to zero by 16C32. */
5373 /* This buffer is currently in use. */
5374
5375 if ( !start_of_frame_found )
5376 {
0fab6de0 5377 start_of_frame_found = true;
1da177e4 5378 frame_start_index = end_index;
0fab6de0 5379 end_of_frame_found = false;
1da177e4
LT
5380 }
5381
5382 if ( buffer_list[end_index].status )
5383 {
5384 /* Status field has been set by 16C32. */
5385 /* This is the last buffer of a received frame. */
5386
5387 /* We want to leave the buffers for this frame intact. */
5388 /* Move on to next possible frame. */
5389
0fab6de0
JP
5390 start_of_frame_found = false;
5391 end_of_frame_found = true;
1da177e4
LT
5392 }
5393
5394 /* advance to next buffer entry in linked list */
5395 end_index++;
5396 if ( end_index == info->rx_buffer_count )
5397 end_index = 0;
5398
5399 if ( start_index == end_index )
5400 {
5401 /* The entire list has been searched with all Counts == 0 and */
5402 /* all Status == 0. The receive buffers are */
5403 /* completely screwed, reset all receive buffers! */
5404 mgsl_reset_rx_dma_buffers( info );
5405 frame_start_index = 0;
0fab6de0
JP
5406 start_of_frame_found = false;
5407 reprogram_dma = true;
1da177e4
LT
5408 break;
5409 }
5410 }
5411
5412 if ( start_of_frame_found && !end_of_frame_found )
5413 {
5414 /* There is an unfinished string of receive DMA buffers */
5415 /* as a result of the receiver overrun. */
5416
5417 /* Reset the buffers for the unfinished frame */
5418 /* and reprogram the receive DMA controller to start */
5419 /* at the 1st buffer of unfinished frame. */
5420
5421 start_index = frame_start_index;
5422
5423 do
5424 {
5425 *((unsigned long *)&(info->rx_buffer_list[start_index++].count)) = DMABUFFERSIZE;
5426
5427 /* Adjust index for wrap around. */
5428 if ( start_index == info->rx_buffer_count )
5429 start_index = 0;
5430
5431 } while( start_index != end_index );
5432
0fab6de0 5433 reprogram_dma = true;
1da177e4
LT
5434 }
5435
5436 if ( reprogram_dma )
5437 {
5438 usc_UnlatchRxstatusBits(info,RXSTATUS_ALL);
5439 usc_ClearIrqPendingBits(info, RECEIVE_DATA|RECEIVE_STATUS);
5440 usc_UnlatchRxstatusBits(info, RECEIVE_DATA|RECEIVE_STATUS);
5441
5442 usc_EnableReceiver(info,DISABLE_UNCONDITIONAL);
5443
5444 /* This empties the receive FIFO and loads the RCC with RCLR */
5445 usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
5446
5447 /* program 16C32 with physical address of 1st DMA buffer entry */
5448 phys_addr = info->rx_buffer_list[frame_start_index].phys_entry;
5449 usc_OutDmaReg( info, NRARL, (u16)phys_addr );
5450 usc_OutDmaReg( info, NRARU, (u16)(phys_addr >> 16) );
5451
5452 usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
5453 usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
5454 usc_EnableInterrupts( info, RECEIVE_STATUS );
5455
5456 /* 1. Arm End of Buffer (EOB) Receive DMA Interrupt (BIT2 of RDIAR) */
5457 /* 2. Enable Receive DMA Interrupts (BIT1 of DICR) */
5458
5459 usc_OutDmaReg( info, RDIAR, BIT3 + BIT2 );
5460 usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT1) );
5461 usc_DmaCmd( info, DmaCmd_InitRxChannel );
5462 if ( info->params.flags & HDLC_FLAG_AUTO_DCD )
5463 usc_EnableReceiver(info,ENABLE_AUTO_DCD);
5464 else
5465 usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
5466 }
5467 else
5468 {
5469 /* This empties the receive FIFO and loads the RCC with RCLR */
5470 usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
5471 usc_RTCmd( info, RTCmd_PurgeRxFifo );
5472 }
5473
5474} /* end of usc_process_rxoverrun_sync() */
5475
5476/* usc_stop_receiver()
5477 *
5478 * Disable USC receiver
5479 *
5480 * Arguments: info pointer to device instance data
5481 * Return Value: None
5482 */
5483static void usc_stop_receiver( struct mgsl_struct *info )
5484{
5485 if (debug_level >= DEBUG_LEVEL_ISR)
5486 printk("%s(%d):usc_stop_receiver(%s)\n",
5487 __FILE__,__LINE__, info->device_name );
5488
5489 /* Disable receive DMA channel. */
5490 /* This also disables receive DMA channel interrupts */
5491 usc_DmaCmd( info, DmaCmd_ResetRxChannel );
5492
5493 usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
5494 usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
5495 usc_DisableInterrupts( info, RECEIVE_DATA + RECEIVE_STATUS );
5496
5497 usc_EnableReceiver(info,DISABLE_UNCONDITIONAL);
5498
5499 /* This empties the receive FIFO and loads the RCC with RCLR */
5500 usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
5501 usc_RTCmd( info, RTCmd_PurgeRxFifo );
5502
0fab6de0
JP
5503 info->rx_enabled = false;
5504 info->rx_overflow = false;
5505 info->rx_rcc_underrun = false;
1da177e4
LT
5506
5507} /* end of stop_receiver() */
5508
5509/* usc_start_receiver()
5510 *
5511 * Enable the USC receiver
5512 *
5513 * Arguments: info pointer to device instance data
5514 * Return Value: None
5515 */
5516static void usc_start_receiver( struct mgsl_struct *info )
5517{
5518 u32 phys_addr;
5519
5520 if (debug_level >= DEBUG_LEVEL_ISR)
5521 printk("%s(%d):usc_start_receiver(%s)\n",
5522 __FILE__,__LINE__, info->device_name );
5523
5524 mgsl_reset_rx_dma_buffers( info );
5525 usc_stop_receiver( info );
5526
5527 usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
5528 usc_RTCmd( info, RTCmd_PurgeRxFifo );
5529
5530 if ( info->params.mode == MGSL_MODE_HDLC ||
5531 info->params.mode == MGSL_MODE_RAW ) {
5532 /* DMA mode Transfers */
5533 /* Program the DMA controller. */
5534 /* Enable the DMA controller end of buffer interrupt. */
5535
5536 /* program 16C32 with physical address of 1st DMA buffer entry */
5537 phys_addr = info->rx_buffer_list[0].phys_entry;
5538 usc_OutDmaReg( info, NRARL, (u16)phys_addr );
5539 usc_OutDmaReg( info, NRARU, (u16)(phys_addr >> 16) );
5540
5541 usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
5542 usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
5543 usc_EnableInterrupts( info, RECEIVE_STATUS );
5544
5545 /* 1. Arm End of Buffer (EOB) Receive DMA Interrupt (BIT2 of RDIAR) */
5546 /* 2. Enable Receive DMA Interrupts (BIT1 of DICR) */
5547
5548 usc_OutDmaReg( info, RDIAR, BIT3 + BIT2 );
5549 usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT1) );
5550 usc_DmaCmd( info, DmaCmd_InitRxChannel );
5551 if ( info->params.flags & HDLC_FLAG_AUTO_DCD )
5552 usc_EnableReceiver(info,ENABLE_AUTO_DCD);
5553 else
5554 usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
5555 } else {
5556 usc_UnlatchRxstatusBits(info, RXSTATUS_ALL);
5557 usc_ClearIrqPendingBits(info, RECEIVE_DATA + RECEIVE_STATUS);
5558 usc_EnableInterrupts(info, RECEIVE_DATA);
5559
5560 usc_RTCmd( info, RTCmd_PurgeRxFifo );
5561 usc_RCmd( info, RCmd_EnterHuntmode );
5562
5563 usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
5564 }
5565
5566 usc_OutReg( info, CCSR, 0x1020 );
5567
0fab6de0 5568 info->rx_enabled = true;
1da177e4
LT
5569
5570} /* end of usc_start_receiver() */
5571
5572/* usc_start_transmitter()
5573 *
5574 * Enable the USC transmitter and send a transmit frame if
5575 * one is loaded in the DMA buffers.
5576 *
5577 * Arguments: info pointer to device instance data
5578 * Return Value: None
5579 */
5580static void usc_start_transmitter( struct mgsl_struct *info )
5581{
5582 u32 phys_addr;
5583 unsigned int FrameSize;
5584
5585 if (debug_level >= DEBUG_LEVEL_ISR)
5586 printk("%s(%d):usc_start_transmitter(%s)\n",
5587 __FILE__,__LINE__, info->device_name );
5588
5589 if ( info->xmit_cnt ) {
5590
5591 /* If auto RTS enabled and RTS is inactive, then assert */
5592 /* RTS and set a flag indicating that the driver should */
5593 /* negate RTS when the transmission completes. */
5594
0fab6de0 5595 info->drop_rts_on_tx_done = false;
1da177e4
LT
5596
5597 if ( info->params.flags & HDLC_FLAG_AUTO_RTS ) {
5598 usc_get_serial_signals( info );
5599 if ( !(info->serial_signals & SerialSignal_RTS) ) {
5600 info->serial_signals |= SerialSignal_RTS;
5601 usc_set_serial_signals( info );
0fab6de0 5602 info->drop_rts_on_tx_done = true;
1da177e4
LT
5603 }
5604 }
5605
5606
5607 if ( info->params.mode == MGSL_MODE_ASYNC ) {
5608 if ( !info->tx_active ) {
5609 usc_UnlatchTxstatusBits(info, TXSTATUS_ALL);
5610 usc_ClearIrqPendingBits(info, TRANSMIT_STATUS + TRANSMIT_DATA);
5611 usc_EnableInterrupts(info, TRANSMIT_DATA);
5612 usc_load_txfifo(info);
5613 }
5614 } else {
5615 /* Disable transmit DMA controller while programming. */
5616 usc_DmaCmd( info, DmaCmd_ResetTxChannel );
5617
5618 /* Transmit DMA buffer is loaded, so program USC */
5619 /* to send the frame contained in the buffers. */
5620
5621 FrameSize = info->tx_buffer_list[info->start_tx_dma_buffer].rcc;
5622
5623 /* if operating in Raw sync mode, reset the rcc component
5624 * of the tx dma buffer entry, otherwise, the serial controller
5625 * will send a closing sync char after this count.
5626 */
5627 if ( info->params.mode == MGSL_MODE_RAW )
5628 info->tx_buffer_list[info->start_tx_dma_buffer].rcc = 0;
5629
5630 /* Program the Transmit Character Length Register (TCLR) */
5631 /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
5632 usc_OutReg( info, TCLR, (u16)FrameSize );
5633
5634 usc_RTCmd( info, RTCmd_PurgeTxFifo );
5635
5636 /* Program the address of the 1st DMA Buffer Entry in linked list */
5637 phys_addr = info->tx_buffer_list[info->start_tx_dma_buffer].phys_entry;
5638 usc_OutDmaReg( info, NTARL, (u16)phys_addr );
5639 usc_OutDmaReg( info, NTARU, (u16)(phys_addr >> 16) );
5640
5641 usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
5642 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
5643 usc_EnableInterrupts( info, TRANSMIT_STATUS );
5644
5645 if ( info->params.mode == MGSL_MODE_RAW &&
5646 info->num_tx_dma_buffers > 1 ) {
5647 /* When running external sync mode, attempt to 'stream' transmit */
5648 /* by filling tx dma buffers as they become available. To do this */
5649 /* we need to enable Tx DMA EOB Status interrupts : */
5650 /* */
5651 /* 1. Arm End of Buffer (EOB) Transmit DMA Interrupt (BIT2 of TDIAR) */
5652 /* 2. Enable Transmit DMA Interrupts (BIT0 of DICR) */
5653
5654 usc_OutDmaReg( info, TDIAR, BIT2|BIT3 );
5655 usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT0) );
5656 }
5657
5658 /* Initialize Transmit DMA Channel */
5659 usc_DmaCmd( info, DmaCmd_InitTxChannel );
5660
5661 usc_TCmd( info, TCmd_SendFrame );
5662
40565f19
JS
5663 mod_timer(&info->tx_timer, jiffies +
5664 msecs_to_jiffies(5000));
1da177e4 5665 }
0fab6de0 5666 info->tx_active = true;
1da177e4
LT
5667 }
5668
5669 if ( !info->tx_enabled ) {
0fab6de0 5670 info->tx_enabled = true;
1da177e4
LT
5671 if ( info->params.flags & HDLC_FLAG_AUTO_CTS )
5672 usc_EnableTransmitter(info,ENABLE_AUTO_CTS);
5673 else
5674 usc_EnableTransmitter(info,ENABLE_UNCONDITIONAL);
5675 }
5676
5677} /* end of usc_start_transmitter() */
5678
5679/* usc_stop_transmitter()
5680 *
5681 * Stops the transmitter and DMA
5682 *
5683 * Arguments: info pointer to device isntance data
5684 * Return Value: None
5685 */
5686static void usc_stop_transmitter( struct mgsl_struct *info )
5687{
5688 if (debug_level >= DEBUG_LEVEL_ISR)
5689 printk("%s(%d):usc_stop_transmitter(%s)\n",
5690 __FILE__,__LINE__, info->device_name );
5691
5692 del_timer(&info->tx_timer);
5693
5694 usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
5695 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS + TRANSMIT_DATA );
5696 usc_DisableInterrupts( info, TRANSMIT_STATUS + TRANSMIT_DATA );
5697
5698 usc_EnableTransmitter(info,DISABLE_UNCONDITIONAL);
5699 usc_DmaCmd( info, DmaCmd_ResetTxChannel );
5700 usc_RTCmd( info, RTCmd_PurgeTxFifo );
5701
0fab6de0
JP
5702 info->tx_enabled = false;
5703 info->tx_active = false;
1da177e4
LT
5704
5705} /* end of usc_stop_transmitter() */
5706
5707/* usc_load_txfifo()
5708 *
5709 * Fill the transmit FIFO until the FIFO is full or
5710 * there is no more data to load.
5711 *
5712 * Arguments: info pointer to device extension (instance data)
5713 * Return Value: None
5714 */
5715static void usc_load_txfifo( struct mgsl_struct *info )
5716{
5717 int Fifocount;
5718 u8 TwoBytes[2];
5719
5720 if ( !info->xmit_cnt && !info->x_char )
5721 return;
5722
5723 /* Select transmit FIFO status readback in TICR */
5724 usc_TCmd( info, TCmd_SelectTicrTxFifostatus );
5725
5726 /* load the Transmit FIFO until FIFOs full or all data sent */
5727
5728 while( (Fifocount = usc_InReg(info, TICR) >> 8) && info->xmit_cnt ) {
5729 /* there is more space in the transmit FIFO and */
5730 /* there is more data in transmit buffer */
5731
5732 if ( (info->xmit_cnt > 1) && (Fifocount > 1) && !info->x_char ) {
5733 /* write a 16-bit word from transmit buffer to 16C32 */
5734
5735 TwoBytes[0] = info->xmit_buf[info->xmit_tail++];
5736 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
5737 TwoBytes[1] = info->xmit_buf[info->xmit_tail++];
5738 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
5739
5740 outw( *((u16 *)TwoBytes), info->io_base + DATAREG);
5741
5742 info->xmit_cnt -= 2;
5743 info->icount.tx += 2;
5744 } else {
5745 /* only 1 byte left to transmit or 1 FIFO slot left */
5746
5747 outw( (inw( info->io_base + CCAR) & 0x0780) | (TDR+LSBONLY),
5748 info->io_base + CCAR );
5749
5750 if (info->x_char) {
5751 /* transmit pending high priority char */
5752 outw( info->x_char,info->io_base + CCAR );
5753 info->x_char = 0;
5754 } else {
5755 outw( info->xmit_buf[info->xmit_tail++],info->io_base + CCAR );
5756 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
5757 info->xmit_cnt--;
5758 }
5759 info->icount.tx++;
5760 }
5761 }
5762
5763} /* end of usc_load_txfifo() */
5764
5765/* usc_reset()
5766 *
5767 * Reset the adapter to a known state and prepare it for further use.
5768 *
5769 * Arguments: info pointer to device instance data
5770 * Return Value: None
5771 */
5772static void usc_reset( struct mgsl_struct *info )
5773{
5774 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
5775 int i;
5776 u32 readval;
5777
5778 /* Set BIT30 of Misc Control Register */
5779 /* (Local Control Register 0x50) to force reset of USC. */
5780
5781 volatile u32 *MiscCtrl = (u32 *)(info->lcr_base + 0x50);
5782 u32 *LCR0BRDR = (u32 *)(info->lcr_base + 0x28);
5783
5784 info->misc_ctrl_value |= BIT30;
5785 *MiscCtrl = info->misc_ctrl_value;
5786
5787 /*
5788 * Force at least 170ns delay before clearing
5789 * reset bit. Each read from LCR takes at least
5790 * 30ns so 10 times for 300ns to be safe.
5791 */
5792 for(i=0;i<10;i++)
5793 readval = *MiscCtrl;
5794
5795 info->misc_ctrl_value &= ~BIT30;
5796 *MiscCtrl = info->misc_ctrl_value;
5797
5798 *LCR0BRDR = BUS_DESCRIPTOR(
5799 1, // Write Strobe Hold (0-3)
5800 2, // Write Strobe Delay (0-3)
5801 2, // Read Strobe Delay (0-3)
5802 0, // NWDD (Write data-data) (0-3)
5803 4, // NWAD (Write Addr-data) (0-31)
5804 0, // NXDA (Read/Write Data-Addr) (0-3)
5805 0, // NRDD (Read Data-Data) (0-3)
5806 5 // NRAD (Read Addr-Data) (0-31)
5807 );
5808 } else {
5809 /* do HW reset */
5810 outb( 0,info->io_base + 8 );
5811 }
5812
5813 info->mbre_bit = 0;
5814 info->loopback_bits = 0;
5815 info->usc_idle_mode = 0;
5816
5817 /*
5818 * Program the Bus Configuration Register (BCR)
5819 *
5820 * <15> 0 Don't use separate address
5821 * <14..6> 0 reserved
5822 * <5..4> 00 IAckmode = Default, don't care
5823 * <3> 1 Bus Request Totem Pole output
5824 * <2> 1 Use 16 Bit data bus
5825 * <1> 0 IRQ Totem Pole output
5826 * <0> 0 Don't Shift Right Addr
5827 *
5828 * 0000 0000 0000 1100 = 0x000c
5829 *
5830 * By writing to io_base + SDPIN the Wait/Ack pin is
5831 * programmed to work as a Wait pin.
5832 */
5833
5834 outw( 0x000c,info->io_base + SDPIN );
5835
5836
5837 outw( 0,info->io_base );
5838 outw( 0,info->io_base + CCAR );
5839
5840 /* select little endian byte ordering */
5841 usc_RTCmd( info, RTCmd_SelectLittleEndian );
5842
5843
5844 /* Port Control Register (PCR)
5845 *
5846 * <15..14> 11 Port 7 is Output (~DMAEN, Bit 14 : 0 = Enabled)
5847 * <13..12> 11 Port 6 is Output (~INTEN, Bit 12 : 0 = Enabled)
5848 * <11..10> 00 Port 5 is Input (No Connect, Don't Care)
5849 * <9..8> 00 Port 4 is Input (No Connect, Don't Care)
5850 * <7..6> 11 Port 3 is Output (~RTS, Bit 6 : 0 = Enabled )
5851 * <5..4> 11 Port 2 is Output (~DTR, Bit 4 : 0 = Enabled )
5852 * <3..2> 01 Port 1 is Input (Dedicated RxC)
5853 * <1..0> 01 Port 0 is Input (Dedicated TxC)
5854 *
5855 * 1111 0000 1111 0101 = 0xf0f5
5856 */
5857
5858 usc_OutReg( info, PCR, 0xf0f5 );
5859
5860
5861 /*
5862 * Input/Output Control Register
5863 *
5864 * <15..14> 00 CTS is active low input
5865 * <13..12> 00 DCD is active low input
5866 * <11..10> 00 TxREQ pin is input (DSR)
5867 * <9..8> 00 RxREQ pin is input (RI)
5868 * <7..6> 00 TxD is output (Transmit Data)
5869 * <5..3> 000 TxC Pin in Input (14.7456MHz Clock)
5870 * <2..0> 100 RxC is Output (drive with BRG0)
5871 *
5872 * 0000 0000 0000 0100 = 0x0004
5873 */
5874
5875 usc_OutReg( info, IOCR, 0x0004 );
5876
5877} /* end of usc_reset() */
5878
5879/* usc_set_async_mode()
5880 *
5881 * Program adapter for asynchronous communications.
5882 *
5883 * Arguments: info pointer to device instance data
5884 * Return Value: None
5885 */
5886static void usc_set_async_mode( struct mgsl_struct *info )
5887{
5888 u16 RegValue;
5889
5890 /* disable interrupts while programming USC */
5891 usc_DisableMasterIrqBit( info );
5892
5893 outw( 0, info->io_base ); /* clear Master Bus Enable (DCAR) */
5894 usc_DmaCmd( info, DmaCmd_ResetAllChannels ); /* disable both DMA channels */
5895
5896 usc_loopback_frame( info );
5897
5898 /* Channel mode Register (CMR)
5899 *
5900 * <15..14> 00 Tx Sub modes, 00 = 1 Stop Bit
5901 * <13..12> 00 00 = 16X Clock
5902 * <11..8> 0000 Transmitter mode = Asynchronous
5903 * <7..6> 00 reserved?
5904 * <5..4> 00 Rx Sub modes, 00 = 16X Clock
5905 * <3..0> 0000 Receiver mode = Asynchronous
5906 *
5907 * 0000 0000 0000 0000 = 0x0
5908 */
5909
5910 RegValue = 0;
5911 if ( info->params.stop_bits != 1 )
5912 RegValue |= BIT14;
5913 usc_OutReg( info, CMR, RegValue );
5914
5915
5916 /* Receiver mode Register (RMR)
5917 *
5918 * <15..13> 000 encoding = None
5919 * <12..08> 00000 reserved (Sync Only)
5920 * <7..6> 00 Even parity
5921 * <5> 0 parity disabled
5922 * <4..2> 000 Receive Char Length = 8 bits
5923 * <1..0> 00 Disable Receiver
5924 *
5925 * 0000 0000 0000 0000 = 0x0
5926 */
5927
5928 RegValue = 0;
5929
5930 if ( info->params.data_bits != 8 )
5931 RegValue |= BIT4+BIT3+BIT2;
5932
5933 if ( info->params.parity != ASYNC_PARITY_NONE ) {
5934 RegValue |= BIT5;
5935 if ( info->params.parity != ASYNC_PARITY_ODD )
5936 RegValue |= BIT6;
5937 }
5938
5939 usc_OutReg( info, RMR, RegValue );
5940
5941
5942 /* Set IRQ trigger level */
5943
5944 usc_RCmd( info, RCmd_SelectRicrIntLevel );
5945
5946
5947 /* Receive Interrupt Control Register (RICR)
5948 *
5949 * <15..8> ? RxFIFO IRQ Request Level
5950 *
5951 * Note: For async mode the receive FIFO level must be set
7f927fcc 5952 * to 0 to avoid the situation where the FIFO contains fewer bytes
1da177e4
LT
5953 * than the trigger level and no more data is expected.
5954 *
5955 * <7> 0 Exited Hunt IA (Interrupt Arm)
5956 * <6> 0 Idle Received IA
5957 * <5> 0 Break/Abort IA
5958 * <4> 0 Rx Bound IA
5959 * <3> 0 Queued status reflects oldest byte in FIFO
5960 * <2> 0 Abort/PE IA
5961 * <1> 0 Rx Overrun IA
5962 * <0> 0 Select TC0 value for readback
5963 *
5964 * 0000 0000 0100 0000 = 0x0000 + (FIFOLEVEL in MSB)
5965 */
5966
5967 usc_OutReg( info, RICR, 0x0000 );
5968
5969 usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
5970 usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
5971
5972
5973 /* Transmit mode Register (TMR)
5974 *
5975 * <15..13> 000 encoding = None
5976 * <12..08> 00000 reserved (Sync Only)
5977 * <7..6> 00 Transmit parity Even
5978 * <5> 0 Transmit parity Disabled
5979 * <4..2> 000 Tx Char Length = 8 bits
5980 * <1..0> 00 Disable Transmitter
5981 *
5982 * 0000 0000 0000 0000 = 0x0
5983 */
5984
5985 RegValue = 0;
5986
5987 if ( info->params.data_bits != 8 )
5988 RegValue |= BIT4+BIT3+BIT2;
5989
5990 if ( info->params.parity != ASYNC_PARITY_NONE ) {
5991 RegValue |= BIT5;
5992 if ( info->params.parity != ASYNC_PARITY_ODD )
5993 RegValue |= BIT6;
5994 }
5995
5996 usc_OutReg( info, TMR, RegValue );
5997
5998 usc_set_txidle( info );
5999
6000
6001 /* Set IRQ trigger level */
6002
6003 usc_TCmd( info, TCmd_SelectTicrIntLevel );
6004
6005
6006 /* Transmit Interrupt Control Register (TICR)
6007 *
6008 * <15..8> ? Transmit FIFO IRQ Level
6009 * <7> 0 Present IA (Interrupt Arm)
6010 * <6> 1 Idle Sent IA
6011 * <5> 0 Abort Sent IA
6012 * <4> 0 EOF/EOM Sent IA
6013 * <3> 0 CRC Sent IA
6014 * <2> 0 1 = Wait for SW Trigger to Start Frame
6015 * <1> 0 Tx Underrun IA
6016 * <0> 0 TC0 constant on read back
6017 *
6018 * 0000 0000 0100 0000 = 0x0040
6019 */
6020
6021 usc_OutReg( info, TICR, 0x1f40 );
6022
6023 usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
6024 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
6025
6026 usc_enable_async_clock( info, info->params.data_rate );
6027
6028
6029 /* Channel Control/status Register (CCSR)
6030 *
6031 * <15> X RCC FIFO Overflow status (RO)
6032 * <14> X RCC FIFO Not Empty status (RO)
6033 * <13> 0 1 = Clear RCC FIFO (WO)
6034 * <12> X DPLL in Sync status (RO)
6035 * <11> X DPLL 2 Missed Clocks status (RO)
6036 * <10> X DPLL 1 Missed Clock status (RO)
6037 * <9..8> 00 DPLL Resync on rising and falling edges (RW)
6038 * <7> X SDLC Loop On status (RO)
6039 * <6> X SDLC Loop Send status (RO)
6040 * <5> 1 Bypass counters for TxClk and RxClk (RW)
6041 * <4..2> 000 Last Char of SDLC frame has 8 bits (RW)
6042 * <1..0> 00 reserved
6043 *
6044 * 0000 0000 0010 0000 = 0x0020
6045 */
6046
6047 usc_OutReg( info, CCSR, 0x0020 );
6048
6049 usc_DisableInterrupts( info, TRANSMIT_STATUS + TRANSMIT_DATA +
6050 RECEIVE_DATA + RECEIVE_STATUS );
6051
6052 usc_ClearIrqPendingBits( info, TRANSMIT_STATUS + TRANSMIT_DATA +
6053 RECEIVE_DATA + RECEIVE_STATUS );
6054
6055 usc_EnableMasterIrqBit( info );
6056
6057 if (info->bus_type == MGSL_BUS_TYPE_ISA) {
6058 /* Enable INTEN (Port 6, Bit12) */
6059 /* This connects the IRQ request signal to the ISA bus */
6060 usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) & ~BIT12));
6061 }
6062
7c1fff58
PF
6063 if (info->params.loopback) {
6064 info->loopback_bits = 0x300;
6065 outw(0x0300, info->io_base + CCAR);
6066 }
6067
1da177e4
LT
6068} /* end of usc_set_async_mode() */
6069
6070/* usc_loopback_frame()
6071 *
6072 * Loop back a small (2 byte) dummy SDLC frame.
6073 * Interrupts and DMA are NOT used. The purpose of this is to
6074 * clear any 'stale' status info left over from running in async mode.
6075 *
6076 * The 16C32 shows the strange behaviour of marking the 1st
6077 * received SDLC frame with a CRC error even when there is no
6078 * CRC error. To get around this a small dummy from of 2 bytes
6079 * is looped back when switching from async to sync mode.
6080 *
6081 * Arguments: info pointer to device instance data
6082 * Return Value: None
6083 */
6084static void usc_loopback_frame( struct mgsl_struct *info )
6085{
6086 int i;
6087 unsigned long oldmode = info->params.mode;
6088
6089 info->params.mode = MGSL_MODE_HDLC;
6090
6091 usc_DisableMasterIrqBit( info );
6092
6093 usc_set_sdlc_mode( info );
6094 usc_enable_loopback( info, 1 );
6095
6096 /* Write 16-bit Time Constant for BRG0 */
6097 usc_OutReg( info, TC0R, 0 );
6098
6099 /* Channel Control Register (CCR)
6100 *
6101 * <15..14> 00 Don't use 32-bit Tx Control Blocks (TCBs)
6102 * <13> 0 Trigger Tx on SW Command Disabled
6103 * <12> 0 Flag Preamble Disabled
6104 * <11..10> 00 Preamble Length = 8-Bits
6105 * <9..8> 01 Preamble Pattern = flags
6106 * <7..6> 10 Don't use 32-bit Rx status Blocks (RSBs)
6107 * <5> 0 Trigger Rx on SW Command Disabled
6108 * <4..0> 0 reserved
6109 *
6110 * 0000 0001 0000 0000 = 0x0100
6111 */
6112
6113 usc_OutReg( info, CCR, 0x0100 );
6114
6115 /* SETUP RECEIVER */
6116 usc_RTCmd( info, RTCmd_PurgeRxFifo );
6117 usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
6118
6119 /* SETUP TRANSMITTER */
6120 /* Program the Transmit Character Length Register (TCLR) */
6121 /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
6122 usc_OutReg( info, TCLR, 2 );
6123 usc_RTCmd( info, RTCmd_PurgeTxFifo );
6124
6125 /* unlatch Tx status bits, and start transmit channel. */
6126 usc_UnlatchTxstatusBits(info,TXSTATUS_ALL);
6127 outw(0,info->io_base + DATAREG);
6128
6129 /* ENABLE TRANSMITTER */
6130 usc_TCmd( info, TCmd_SendFrame );
6131 usc_EnableTransmitter(info,ENABLE_UNCONDITIONAL);
6132
6133 /* WAIT FOR RECEIVE COMPLETE */
6134 for (i=0 ; i<1000 ; i++)
6135 if (usc_InReg( info, RCSR ) & (BIT8 + BIT4 + BIT3 + BIT1))
6136 break;
6137
6138 /* clear Internal Data loopback mode */
6139 usc_enable_loopback(info, 0);
6140
6141 usc_EnableMasterIrqBit(info);
6142
6143 info->params.mode = oldmode;
6144
6145} /* end of usc_loopback_frame() */
6146
6147/* usc_set_sync_mode() Programs the USC for SDLC communications.
6148 *
6149 * Arguments: info pointer to adapter info structure
6150 * Return Value: None
6151 */
6152static void usc_set_sync_mode( struct mgsl_struct *info )
6153{
6154 usc_loopback_frame( info );
6155 usc_set_sdlc_mode( info );
6156
6157 if (info->bus_type == MGSL_BUS_TYPE_ISA) {
6158 /* Enable INTEN (Port 6, Bit12) */
6159 /* This connects the IRQ request signal to the ISA bus */
6160 usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) & ~BIT12));
6161 }
6162
6163 usc_enable_aux_clock(info, info->params.clock_speed);
6164
6165 if (info->params.loopback)
6166 usc_enable_loopback(info,1);
6167
6168} /* end of mgsl_set_sync_mode() */
6169
6170/* usc_set_txidle() Set the HDLC idle mode for the transmitter.
6171 *
6172 * Arguments: info pointer to device instance data
6173 * Return Value: None
6174 */
6175static void usc_set_txidle( struct mgsl_struct *info )
6176{
6177 u16 usc_idle_mode = IDLEMODE_FLAGS;
6178
6179 /* Map API idle mode to USC register bits */
6180
6181 switch( info->idle_mode ){
6182 case HDLC_TXIDLE_FLAGS: usc_idle_mode = IDLEMODE_FLAGS; break;
6183 case HDLC_TXIDLE_ALT_ZEROS_ONES: usc_idle_mode = IDLEMODE_ALT_ONE_ZERO; break;
6184 case HDLC_TXIDLE_ZEROS: usc_idle_mode = IDLEMODE_ZERO; break;
6185 case HDLC_TXIDLE_ONES: usc_idle_mode = IDLEMODE_ONE; break;
6186 case HDLC_TXIDLE_ALT_MARK_SPACE: usc_idle_mode = IDLEMODE_ALT_MARK_SPACE; break;
6187 case HDLC_TXIDLE_SPACE: usc_idle_mode = IDLEMODE_SPACE; break;
6188 case HDLC_TXIDLE_MARK: usc_idle_mode = IDLEMODE_MARK; break;
6189 }
6190
6191 info->usc_idle_mode = usc_idle_mode;
6192 //usc_OutReg(info, TCSR, usc_idle_mode);
6193 info->tcsr_value &= ~IDLEMODE_MASK; /* clear idle mode bits */
6194 info->tcsr_value += usc_idle_mode;
6195 usc_OutReg(info, TCSR, info->tcsr_value);
6196
6197 /*
6198 * if SyncLink WAN adapter is running in external sync mode, the
6199 * transmitter has been set to Monosync in order to try to mimic
6200 * a true raw outbound bit stream. Monosync still sends an open/close
6201 * sync char at the start/end of a frame. Try to match those sync
6202 * patterns to the idle mode set here
6203 */
6204 if ( info->params.mode == MGSL_MODE_RAW ) {
6205 unsigned char syncpat = 0;
6206 switch( info->idle_mode ) {
6207 case HDLC_TXIDLE_FLAGS:
6208 syncpat = 0x7e;
6209 break;
6210 case HDLC_TXIDLE_ALT_ZEROS_ONES:
6211 syncpat = 0x55;
6212 break;
6213 case HDLC_TXIDLE_ZEROS:
6214 case HDLC_TXIDLE_SPACE:
6215 syncpat = 0x00;
6216 break;
6217 case HDLC_TXIDLE_ONES:
6218 case HDLC_TXIDLE_MARK:
6219 syncpat = 0xff;
6220 break;
6221 case HDLC_TXIDLE_ALT_MARK_SPACE:
6222 syncpat = 0xaa;
6223 break;
6224 }
6225
6226 usc_SetTransmitSyncChars(info,syncpat,syncpat);
6227 }
6228
6229} /* end of usc_set_txidle() */
6230
6231/* usc_get_serial_signals()
6232 *
6233 * Query the adapter for the state of the V24 status (input) signals.
6234 *
6235 * Arguments: info pointer to device instance data
6236 * Return Value: None
6237 */
6238static void usc_get_serial_signals( struct mgsl_struct *info )
6239{
6240 u16 status;
6241
6242 /* clear all serial signals except DTR and RTS */
6243 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
6244
6245 /* Read the Misc Interrupt status Register (MISR) to get */
6246 /* the V24 status signals. */
6247
6248 status = usc_InReg( info, MISR );
6249
6250 /* set serial signal bits to reflect MISR */
6251
6252 if ( status & MISCSTATUS_CTS )
6253 info->serial_signals |= SerialSignal_CTS;
6254
6255 if ( status & MISCSTATUS_DCD )
6256 info->serial_signals |= SerialSignal_DCD;
6257
6258 if ( status & MISCSTATUS_RI )
6259 info->serial_signals |= SerialSignal_RI;
6260
6261 if ( status & MISCSTATUS_DSR )
6262 info->serial_signals |= SerialSignal_DSR;
6263
6264} /* end of usc_get_serial_signals() */
6265
6266/* usc_set_serial_signals()
6267 *
6268 * Set the state of DTR and RTS based on contents of
6269 * serial_signals member of device extension.
6270 *
6271 * Arguments: info pointer to device instance data
6272 * Return Value: None
6273 */
6274static void usc_set_serial_signals( struct mgsl_struct *info )
6275{
6276 u16 Control;
6277 unsigned char V24Out = info->serial_signals;
6278
6279 /* get the current value of the Port Control Register (PCR) */
6280
6281 Control = usc_InReg( info, PCR );
6282
6283 if ( V24Out & SerialSignal_RTS )
6284 Control &= ~(BIT6);
6285 else
6286 Control |= BIT6;
6287
6288 if ( V24Out & SerialSignal_DTR )
6289 Control &= ~(BIT4);
6290 else
6291 Control |= BIT4;
6292
6293 usc_OutReg( info, PCR, Control );
6294
6295} /* end of usc_set_serial_signals() */
6296
6297/* usc_enable_async_clock()
6298 *
6299 * Enable the async clock at the specified frequency.
6300 *
6301 * Arguments: info pointer to device instance data
6302 * data_rate data rate of clock in bps
6303 * 0 disables the AUX clock.
6304 * Return Value: None
6305 */
6306static void usc_enable_async_clock( struct mgsl_struct *info, u32 data_rate )
6307{
6308 if ( data_rate ) {
6309 /*
6310 * Clock mode Control Register (CMCR)
6311 *
6312 * <15..14> 00 counter 1 Disabled
6313 * <13..12> 00 counter 0 Disabled
6314 * <11..10> 11 BRG1 Input is TxC Pin
6315 * <9..8> 11 BRG0 Input is TxC Pin
6316 * <7..6> 01 DPLL Input is BRG1 Output
6317 * <5..3> 100 TxCLK comes from BRG0
6318 * <2..0> 100 RxCLK comes from BRG0
6319 *
6320 * 0000 1111 0110 0100 = 0x0f64
6321 */
6322
6323 usc_OutReg( info, CMCR, 0x0f64 );
6324
6325
6326 /*
6327 * Write 16-bit Time Constant for BRG0
6328 * Time Constant = (ClkSpeed / data_rate) - 1
6329 * ClkSpeed = 921600 (ISA), 691200 (PCI)
6330 */
6331
6332 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
6333 usc_OutReg( info, TC0R, (u16)((691200/data_rate) - 1) );
6334 else
6335 usc_OutReg( info, TC0R, (u16)((921600/data_rate) - 1) );
6336
6337
6338 /*
6339 * Hardware Configuration Register (HCR)
6340 * Clear Bit 1, BRG0 mode = Continuous
6341 * Set Bit 0 to enable BRG0.
6342 */
6343
6344 usc_OutReg( info, HCR,
6345 (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
6346
6347
6348 /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
6349
6350 usc_OutReg( info, IOCR,
6351 (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004) );
6352 } else {
6353 /* data rate == 0 so turn off BRG0 */
6354 usc_OutReg( info, HCR, (u16)(usc_InReg( info, HCR ) & ~BIT0) );
6355 }
6356
6357} /* end of usc_enable_async_clock() */
6358
6359/*
6360 * Buffer Structures:
6361 *
6362 * Normal memory access uses virtual addresses that can make discontiguous
6363 * physical memory pages appear to be contiguous in the virtual address
6364 * space (the processors memory mapping handles the conversions).
6365 *
6366 * DMA transfers require physically contiguous memory. This is because
6367 * the DMA system controller and DMA bus masters deal with memory using
6368 * only physical addresses.
6369 *
6370 * This causes a problem under Windows NT when large DMA buffers are
6371 * needed. Fragmentation of the nonpaged pool prevents allocations of
6372 * physically contiguous buffers larger than the PAGE_SIZE.
6373 *
6374 * However the 16C32 supports Bus Master Scatter/Gather DMA which
6375 * allows DMA transfers to physically discontiguous buffers. Information
6376 * about each data transfer buffer is contained in a memory structure
6377 * called a 'buffer entry'. A list of buffer entries is maintained
6378 * to track and control the use of the data transfer buffers.
6379 *
6380 * To support this strategy we will allocate sufficient PAGE_SIZE
6381 * contiguous memory buffers to allow for the total required buffer
6382 * space.
6383 *
6384 * The 16C32 accesses the list of buffer entries using Bus Master
6385 * DMA. Control information is read from the buffer entries by the
6386 * 16C32 to control data transfers. status information is written to
6387 * the buffer entries by the 16C32 to indicate the status of completed
6388 * transfers.
6389 *
6390 * The CPU writes control information to the buffer entries to control
6391 * the 16C32 and reads status information from the buffer entries to
6392 * determine information about received and transmitted frames.
6393 *
6394 * Because the CPU and 16C32 (adapter) both need simultaneous access
6395 * to the buffer entries, the buffer entry memory is allocated with
6396 * HalAllocateCommonBuffer(). This restricts the size of the buffer
6397 * entry list to PAGE_SIZE.
6398 *
6399 * The actual data buffers on the other hand will only be accessed
6400 * by the CPU or the adapter but not by both simultaneously. This allows
6401 * Scatter/Gather packet based DMA procedures for using physically
6402 * discontiguous pages.
6403 */
6404
6405/*
6406 * mgsl_reset_tx_dma_buffers()
6407 *
6408 * Set the count for all transmit buffers to 0 to indicate the
6409 * buffer is available for use and set the current buffer to the
6410 * first buffer. This effectively makes all buffers free and
6411 * discards any data in buffers.
6412 *
6413 * Arguments: info pointer to device instance data
6414 * Return Value: None
6415 */
6416static void mgsl_reset_tx_dma_buffers( struct mgsl_struct *info )
6417{
6418 unsigned int i;
6419
6420 for ( i = 0; i < info->tx_buffer_count; i++ ) {
6421 *((unsigned long *)&(info->tx_buffer_list[i].count)) = 0;
6422 }
6423
6424 info->current_tx_buffer = 0;
6425 info->start_tx_dma_buffer = 0;
6426 info->tx_dma_buffers_used = 0;
6427
6428 info->get_tx_holding_index = 0;
6429 info->put_tx_holding_index = 0;
6430 info->tx_holding_count = 0;
6431
6432} /* end of mgsl_reset_tx_dma_buffers() */
6433
6434/*
6435 * num_free_tx_dma_buffers()
6436 *
6437 * returns the number of free tx dma buffers available
6438 *
6439 * Arguments: info pointer to device instance data
6440 * Return Value: number of free tx dma buffers
6441 */
6442static int num_free_tx_dma_buffers(struct mgsl_struct *info)
6443{
6444 return info->tx_buffer_count - info->tx_dma_buffers_used;
6445}
6446
6447/*
6448 * mgsl_reset_rx_dma_buffers()
6449 *
6450 * Set the count for all receive buffers to DMABUFFERSIZE
6451 * and set the current buffer to the first buffer. This effectively
6452 * makes all buffers free and discards any data in buffers.
6453 *
6454 * Arguments: info pointer to device instance data
6455 * Return Value: None
6456 */
6457static void mgsl_reset_rx_dma_buffers( struct mgsl_struct *info )
6458{
6459 unsigned int i;
6460
6461 for ( i = 0; i < info->rx_buffer_count; i++ ) {
6462 *((unsigned long *)&(info->rx_buffer_list[i].count)) = DMABUFFERSIZE;
6463// info->rx_buffer_list[i].count = DMABUFFERSIZE;
6464// info->rx_buffer_list[i].status = 0;
6465 }
6466
6467 info->current_rx_buffer = 0;
6468
6469} /* end of mgsl_reset_rx_dma_buffers() */
6470
6471/*
6472 * mgsl_free_rx_frame_buffers()
6473 *
6474 * Free the receive buffers used by a received SDLC
6475 * frame such that the buffers can be reused.
6476 *
6477 * Arguments:
6478 *
6479 * info pointer to device instance data
6480 * StartIndex index of 1st receive buffer of frame
6481 * EndIndex index of last receive buffer of frame
6482 *
6483 * Return Value: None
6484 */
6485static void mgsl_free_rx_frame_buffers( struct mgsl_struct *info, unsigned int StartIndex, unsigned int EndIndex )
6486{
0fab6de0 6487 bool Done = false;
1da177e4
LT
6488 DMABUFFERENTRY *pBufEntry;
6489 unsigned int Index;
6490
6491 /* Starting with 1st buffer entry of the frame clear the status */
6492 /* field and set the count field to DMA Buffer Size. */
6493
6494 Index = StartIndex;
6495
6496 while( !Done ) {
6497 pBufEntry = &(info->rx_buffer_list[Index]);
6498
6499 if ( Index == EndIndex ) {
6500 /* This is the last buffer of the frame! */
0fab6de0 6501 Done = true;
1da177e4
LT
6502 }
6503
6504 /* reset current buffer for reuse */
6505// pBufEntry->status = 0;
6506// pBufEntry->count = DMABUFFERSIZE;
6507 *((unsigned long *)&(pBufEntry->count)) = DMABUFFERSIZE;
6508
6509 /* advance to next buffer entry in linked list */
6510 Index++;
6511 if ( Index == info->rx_buffer_count )
6512 Index = 0;
6513 }
6514
6515 /* set current buffer to next buffer after last buffer of frame */
6516 info->current_rx_buffer = Index;
6517
6518} /* end of free_rx_frame_buffers() */
6519
6520/* mgsl_get_rx_frame()
6521 *
6522 * This function attempts to return a received SDLC frame from the
6523 * receive DMA buffers. Only frames received without errors are returned.
6524 *
6525 * Arguments: info pointer to device extension
0fab6de0 6526 * Return Value: true if frame returned, otherwise false
1da177e4 6527 */
0fab6de0 6528static bool mgsl_get_rx_frame(struct mgsl_struct *info)
1da177e4
LT
6529{
6530 unsigned int StartIndex, EndIndex; /* index of 1st and last buffers of Rx frame */
6531 unsigned short status;
6532 DMABUFFERENTRY *pBufEntry;
6533 unsigned int framesize = 0;
0fab6de0 6534 bool ReturnCode = false;
1da177e4 6535 unsigned long flags;
8fb06c77 6536 struct tty_struct *tty = info->port.tty;
0fab6de0 6537 bool return_frame = false;
1da177e4
LT
6538
6539 /*
6540 * current_rx_buffer points to the 1st buffer of the next available
6541 * receive frame. To find the last buffer of the frame look for
6542 * a non-zero status field in the buffer entries. (The status
6543 * field is set by the 16C32 after completing a receive frame.
6544 */
6545
6546 StartIndex = EndIndex = info->current_rx_buffer;
6547
6548 while( !info->rx_buffer_list[EndIndex].status ) {
6549 /*
6550 * If the count field of the buffer entry is non-zero then
6551 * this buffer has not been used. (The 16C32 clears the count
6552 * field when it starts using the buffer.) If an unused buffer
6553 * is encountered then there are no frames available.
6554 */
6555
6556 if ( info->rx_buffer_list[EndIndex].count )
6557 goto Cleanup;
6558
6559 /* advance to next buffer entry in linked list */
6560 EndIndex++;
6561 if ( EndIndex == info->rx_buffer_count )
6562 EndIndex = 0;
6563
6564 /* if entire list searched then no frame available */
6565 if ( EndIndex == StartIndex ) {
6566 /* If this occurs then something bad happened,
6567 * all buffers have been 'used' but none mark
6568 * the end of a frame. Reset buffers and receiver.
6569 */
6570
6571 if ( info->rx_enabled ){
6572 spin_lock_irqsave(&info->irq_spinlock,flags);
6573 usc_start_receiver(info);
6574 spin_unlock_irqrestore(&info->irq_spinlock,flags);
6575 }
6576 goto Cleanup;
6577 }
6578 }
6579
6580
6581 /* check status of receive frame */
6582
6583 status = info->rx_buffer_list[EndIndex].status;
6584
6585 if ( status & (RXSTATUS_SHORT_FRAME + RXSTATUS_OVERRUN +
6586 RXSTATUS_CRC_ERROR + RXSTATUS_ABORT) ) {
6587 if ( status & RXSTATUS_SHORT_FRAME )
6588 info->icount.rxshort++;
6589 else if ( status & RXSTATUS_ABORT )
6590 info->icount.rxabort++;
6591 else if ( status & RXSTATUS_OVERRUN )
6592 info->icount.rxover++;
6593 else {
6594 info->icount.rxcrc++;
6595 if ( info->params.crc_type & HDLC_CRC_RETURN_EX )
0fab6de0 6596 return_frame = true;
1da177e4
LT
6597 }
6598 framesize = 0;
af69c7f9 6599#if SYNCLINK_GENERIC_HDLC
1da177e4 6600 {
198191c4
KH
6601 info->netdev->stats.rx_errors++;
6602 info->netdev->stats.rx_frame_errors++;
1da177e4
LT
6603 }
6604#endif
6605 } else
0fab6de0 6606 return_frame = true;
1da177e4
LT
6607
6608 if ( return_frame ) {
6609 /* receive frame has no errors, get frame size.
6610 * The frame size is the starting value of the RCC (which was
6611 * set to 0xffff) minus the ending value of the RCC (decremented
6612 * once for each receive character) minus 2 for the 16-bit CRC.
6613 */
6614
6615 framesize = RCLRVALUE - info->rx_buffer_list[EndIndex].rcc;
6616
6617 /* adjust frame size for CRC if any */
6618 if ( info->params.crc_type == HDLC_CRC_16_CCITT )
6619 framesize -= 2;
6620 else if ( info->params.crc_type == HDLC_CRC_32_CCITT )
6621 framesize -= 4;
6622 }
6623
6624 if ( debug_level >= DEBUG_LEVEL_BH )
6625 printk("%s(%d):mgsl_get_rx_frame(%s) status=%04X size=%d\n",
6626 __FILE__,__LINE__,info->device_name,status,framesize);
6627
6628 if ( debug_level >= DEBUG_LEVEL_DATA )
6629 mgsl_trace_block(info,info->rx_buffer_list[StartIndex].virt_addr,
6630 min_t(int, framesize, DMABUFFERSIZE),0);
6631
6632 if (framesize) {
6633 if ( ( (info->params.crc_type & HDLC_CRC_RETURN_EX) &&
6634 ((framesize+1) > info->max_frame_size) ) ||
6635 (framesize > info->max_frame_size) )
6636 info->icount.rxlong++;
6637 else {
6638 /* copy dma buffer(s) to contiguous intermediate buffer */
6639 int copy_count = framesize;
6640 int index = StartIndex;
6641 unsigned char *ptmp = info->intermediate_rxbuffer;
6642
6643 if ( !(status & RXSTATUS_CRC_ERROR))
6644 info->icount.rxok++;
6645
6646 while(copy_count) {
6647 int partial_count;
6648 if ( copy_count > DMABUFFERSIZE )
6649 partial_count = DMABUFFERSIZE;
6650 else
6651 partial_count = copy_count;
6652
6653 pBufEntry = &(info->rx_buffer_list[index]);
6654 memcpy( ptmp, pBufEntry->virt_addr, partial_count );
6655 ptmp += partial_count;
6656 copy_count -= partial_count;
6657
6658 if ( ++index == info->rx_buffer_count )
6659 index = 0;
6660 }
6661
6662 if ( info->params.crc_type & HDLC_CRC_RETURN_EX ) {
6663 ++framesize;
6664 *ptmp = (status & RXSTATUS_CRC_ERROR ?
6665 RX_CRC_ERROR :
6666 RX_OK);
6667
6668 if ( debug_level >= DEBUG_LEVEL_DATA )
6669 printk("%s(%d):mgsl_get_rx_frame(%s) rx frame status=%d\n",
6670 __FILE__,__LINE__,info->device_name,
6671 *ptmp);
6672 }
6673
af69c7f9 6674#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
6675 if (info->netcount)
6676 hdlcdev_rx(info,info->intermediate_rxbuffer,framesize);
6677 else
6678#endif
6679 ldisc_receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);
6680 }
6681 }
6682 /* Free the buffers used by this frame. */
6683 mgsl_free_rx_frame_buffers( info, StartIndex, EndIndex );
6684
0fab6de0 6685 ReturnCode = true;
1da177e4
LT
6686
6687Cleanup:
6688
6689 if ( info->rx_enabled && info->rx_overflow ) {
6690 /* The receiver needs to restarted because of
6691 * a receive overflow (buffer or FIFO). If the
6692 * receive buffers are now empty, then restart receiver.
6693 */
6694
6695 if ( !info->rx_buffer_list[EndIndex].status &&
6696 info->rx_buffer_list[EndIndex].count ) {
6697 spin_lock_irqsave(&info->irq_spinlock,flags);
6698 usc_start_receiver(info);
6699 spin_unlock_irqrestore(&info->irq_spinlock,flags);
6700 }
6701 }
6702
6703 return ReturnCode;
6704
6705} /* end of mgsl_get_rx_frame() */
6706
6707/* mgsl_get_raw_rx_frame()
6708 *
6709 * This function attempts to return a received frame from the
6710 * receive DMA buffers when running in external loop mode. In this mode,
6711 * we will return at most one DMABUFFERSIZE frame to the application.
6712 * The USC receiver is triggering off of DCD going active to start a new
6713 * frame, and DCD going inactive to terminate the frame (similar to
6714 * processing a closing flag character).
6715 *
6716 * In this routine, we will return DMABUFFERSIZE "chunks" at a time.
6717 * If DCD goes inactive, the last Rx DMA Buffer will have a non-zero
6718 * status field and the RCC field will indicate the length of the
6719 * entire received frame. We take this RCC field and get the modulus
6720 * of RCC and DMABUFFERSIZE to determine if number of bytes in the
6721 * last Rx DMA buffer and return that last portion of the frame.
6722 *
6723 * Arguments: info pointer to device extension
0fab6de0 6724 * Return Value: true if frame returned, otherwise false
1da177e4 6725 */
0fab6de0 6726static bool mgsl_get_raw_rx_frame(struct mgsl_struct *info)
1da177e4
LT
6727{
6728 unsigned int CurrentIndex, NextIndex;
6729 unsigned short status;
6730 DMABUFFERENTRY *pBufEntry;
6731 unsigned int framesize = 0;
0fab6de0 6732 bool ReturnCode = false;
1da177e4 6733 unsigned long flags;
8fb06c77 6734 struct tty_struct *tty = info->port.tty;
1da177e4
LT
6735
6736 /*
6737 * current_rx_buffer points to the 1st buffer of the next available
6738 * receive frame. The status field is set by the 16C32 after
6739 * completing a receive frame. If the status field of this buffer
6740 * is zero, either the USC is still filling this buffer or this
6741 * is one of a series of buffers making up a received frame.
6742 *
6743 * If the count field of this buffer is zero, the USC is either
6744 * using this buffer or has used this buffer. Look at the count
6745 * field of the next buffer. If that next buffer's count is
6746 * non-zero, the USC is still actively using the current buffer.
6747 * Otherwise, if the next buffer's count field is zero, the
6748 * current buffer is complete and the USC is using the next
6749 * buffer.
6750 */
6751 CurrentIndex = NextIndex = info->current_rx_buffer;
6752 ++NextIndex;
6753 if ( NextIndex == info->rx_buffer_count )
6754 NextIndex = 0;
6755
6756 if ( info->rx_buffer_list[CurrentIndex].status != 0 ||
6757 (info->rx_buffer_list[CurrentIndex].count == 0 &&
6758 info->rx_buffer_list[NextIndex].count == 0)) {
6759 /*
6760 * Either the status field of this dma buffer is non-zero
6761 * (indicating the last buffer of a receive frame) or the next
6762 * buffer is marked as in use -- implying this buffer is complete
6763 * and an intermediate buffer for this received frame.
6764 */
6765
6766 status = info->rx_buffer_list[CurrentIndex].status;
6767
6768 if ( status & (RXSTATUS_SHORT_FRAME + RXSTATUS_OVERRUN +
6769 RXSTATUS_CRC_ERROR + RXSTATUS_ABORT) ) {
6770 if ( status & RXSTATUS_SHORT_FRAME )
6771 info->icount.rxshort++;
6772 else if ( status & RXSTATUS_ABORT )
6773 info->icount.rxabort++;
6774 else if ( status & RXSTATUS_OVERRUN )
6775 info->icount.rxover++;
6776 else
6777 info->icount.rxcrc++;
6778 framesize = 0;
6779 } else {
6780 /*
6781 * A receive frame is available, get frame size and status.
6782 *
6783 * The frame size is the starting value of the RCC (which was
6784 * set to 0xffff) minus the ending value of the RCC (decremented
6785 * once for each receive character) minus 2 or 4 for the 16-bit
6786 * or 32-bit CRC.
6787 *
6788 * If the status field is zero, this is an intermediate buffer.
6789 * It's size is 4K.
6790 *
6791 * If the DMA Buffer Entry's Status field is non-zero, the
6792 * receive operation completed normally (ie: DCD dropped). The
6793 * RCC field is valid and holds the received frame size.
6794 * It is possible that the RCC field will be zero on a DMA buffer
6795 * entry with a non-zero status. This can occur if the total
6796 * frame size (number of bytes between the time DCD goes active
6797 * to the time DCD goes inactive) exceeds 65535 bytes. In this
6798 * case the 16C32 has underrun on the RCC count and appears to
6799 * stop updating this counter to let us know the actual received
6800 * frame size. If this happens (non-zero status and zero RCC),
6801 * simply return the entire RxDMA Buffer
6802 */
6803 if ( status ) {
6804 /*
6805 * In the event that the final RxDMA Buffer is
6806 * terminated with a non-zero status and the RCC
6807 * field is zero, we interpret this as the RCC
6808 * having underflowed (received frame > 65535 bytes).
6809 *
6810 * Signal the event to the user by passing back
6811 * a status of RxStatus_CrcError returning the full
6812 * buffer and let the app figure out what data is
6813 * actually valid
6814 */
6815 if ( info->rx_buffer_list[CurrentIndex].rcc )
6816 framesize = RCLRVALUE - info->rx_buffer_list[CurrentIndex].rcc;
6817 else
6818 framesize = DMABUFFERSIZE;
6819 }
6820 else
6821 framesize = DMABUFFERSIZE;
6822 }
6823
6824 if ( framesize > DMABUFFERSIZE ) {
6825 /*
6826 * if running in raw sync mode, ISR handler for
6827 * End Of Buffer events terminates all buffers at 4K.
6828 * If this frame size is said to be >4K, get the
6829 * actual number of bytes of the frame in this buffer.
6830 */
6831 framesize = framesize % DMABUFFERSIZE;
6832 }
6833
6834
6835 if ( debug_level >= DEBUG_LEVEL_BH )
6836 printk("%s(%d):mgsl_get_raw_rx_frame(%s) status=%04X size=%d\n",
6837 __FILE__,__LINE__,info->device_name,status,framesize);
6838
6839 if ( debug_level >= DEBUG_LEVEL_DATA )
6840 mgsl_trace_block(info,info->rx_buffer_list[CurrentIndex].virt_addr,
6841 min_t(int, framesize, DMABUFFERSIZE),0);
6842
6843 if (framesize) {
6844 /* copy dma buffer(s) to contiguous intermediate buffer */
6845 /* NOTE: we never copy more than DMABUFFERSIZE bytes */
6846
6847 pBufEntry = &(info->rx_buffer_list[CurrentIndex]);
6848 memcpy( info->intermediate_rxbuffer, pBufEntry->virt_addr, framesize);
6849 info->icount.rxok++;
6850
6851 ldisc_receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);
6852 }
6853
6854 /* Free the buffers used by this frame. */
6855 mgsl_free_rx_frame_buffers( info, CurrentIndex, CurrentIndex );
6856
0fab6de0 6857 ReturnCode = true;
1da177e4
LT
6858 }
6859
6860
6861 if ( info->rx_enabled && info->rx_overflow ) {
6862 /* The receiver needs to restarted because of
6863 * a receive overflow (buffer or FIFO). If the
6864 * receive buffers are now empty, then restart receiver.
6865 */
6866
6867 if ( !info->rx_buffer_list[CurrentIndex].status &&
6868 info->rx_buffer_list[CurrentIndex].count ) {
6869 spin_lock_irqsave(&info->irq_spinlock,flags);
6870 usc_start_receiver(info);
6871 spin_unlock_irqrestore(&info->irq_spinlock,flags);
6872 }
6873 }
6874
6875 return ReturnCode;
6876
6877} /* end of mgsl_get_raw_rx_frame() */
6878
6879/* mgsl_load_tx_dma_buffer()
6880 *
6881 * Load the transmit DMA buffer with the specified data.
6882 *
6883 * Arguments:
6884 *
6885 * info pointer to device extension
6886 * Buffer pointer to buffer containing frame to load
6887 * BufferSize size in bytes of frame in Buffer
6888 *
6889 * Return Value: None
6890 */
6891static void mgsl_load_tx_dma_buffer(struct mgsl_struct *info,
6892 const char *Buffer, unsigned int BufferSize)
6893{
6894 unsigned short Copycount;
6895 unsigned int i = 0;
6896 DMABUFFERENTRY *pBufEntry;
6897
6898 if ( debug_level >= DEBUG_LEVEL_DATA )
6899 mgsl_trace_block(info,Buffer, min_t(int, BufferSize, DMABUFFERSIZE), 1);
6900
6901 if (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) {
6902 /* set CMR:13 to start transmit when
6903 * next GoAhead (abort) is received
6904 */
6905 info->cmr_value |= BIT13;
6906 }
6907
6908 /* begin loading the frame in the next available tx dma
6909 * buffer, remember it's starting location for setting
6910 * up tx dma operation
6911 */
6912 i = info->current_tx_buffer;
6913 info->start_tx_dma_buffer = i;
6914
6915 /* Setup the status and RCC (Frame Size) fields of the 1st */
6916 /* buffer entry in the transmit DMA buffer list. */
6917
6918 info->tx_buffer_list[i].status = info->cmr_value & 0xf000;
6919 info->tx_buffer_list[i].rcc = BufferSize;
6920 info->tx_buffer_list[i].count = BufferSize;
6921
6922 /* Copy frame data from 1st source buffer to the DMA buffers. */
6923 /* The frame data may span multiple DMA buffers. */
6924
6925 while( BufferSize ){
6926 /* Get a pointer to next DMA buffer entry. */
6927 pBufEntry = &info->tx_buffer_list[i++];
6928
6929 if ( i == info->tx_buffer_count )
6930 i=0;
6931
6932 /* Calculate the number of bytes that can be copied from */
6933 /* the source buffer to this DMA buffer. */
6934 if ( BufferSize > DMABUFFERSIZE )
6935 Copycount = DMABUFFERSIZE;
6936 else
6937 Copycount = BufferSize;
6938
6939 /* Actually copy data from source buffer to DMA buffer. */
6940 /* Also set the data count for this individual DMA buffer. */
6941 if ( info->bus_type == MGSL_BUS_TYPE_PCI )
6942 mgsl_load_pci_memory(pBufEntry->virt_addr, Buffer,Copycount);
6943 else
6944 memcpy(pBufEntry->virt_addr, Buffer, Copycount);
6945
6946 pBufEntry->count = Copycount;
6947
6948 /* Advance source pointer and reduce remaining data count. */
6949 Buffer += Copycount;
6950 BufferSize -= Copycount;
6951
6952 ++info->tx_dma_buffers_used;
6953 }
6954
6955 /* remember next available tx dma buffer */
6956 info->current_tx_buffer = i;
6957
6958} /* end of mgsl_load_tx_dma_buffer() */
6959
6960/*
6961 * mgsl_register_test()
6962 *
6963 * Performs a register test of the 16C32.
6964 *
6965 * Arguments: info pointer to device instance data
0fab6de0 6966 * Return Value: true if test passed, otherwise false
1da177e4 6967 */
0fab6de0 6968static bool mgsl_register_test( struct mgsl_struct *info )
1da177e4
LT
6969{
6970 static unsigned short BitPatterns[] =
6971 { 0x0000, 0xffff, 0xaaaa, 0x5555, 0x1234, 0x6969, 0x9696, 0x0f0f };
fe971071 6972 static unsigned int Patterncount = ARRAY_SIZE(BitPatterns);
1da177e4 6973 unsigned int i;
0fab6de0 6974 bool rc = true;
1da177e4
LT
6975 unsigned long flags;
6976
6977 spin_lock_irqsave(&info->irq_spinlock,flags);
6978 usc_reset(info);
6979
6980 /* Verify the reset state of some registers. */
6981
6982 if ( (usc_InReg( info, SICR ) != 0) ||
6983 (usc_InReg( info, IVR ) != 0) ||
6984 (usc_InDmaReg( info, DIVR ) != 0) ){
0fab6de0 6985 rc = false;
1da177e4
LT
6986 }
6987
0fab6de0 6988 if ( rc ){
1da177e4
LT
6989 /* Write bit patterns to various registers but do it out of */
6990 /* sync, then read back and verify values. */
6991
6992 for ( i = 0 ; i < Patterncount ; i++ ) {
6993 usc_OutReg( info, TC0R, BitPatterns[i] );
6994 usc_OutReg( info, TC1R, BitPatterns[(i+1)%Patterncount] );
6995 usc_OutReg( info, TCLR, BitPatterns[(i+2)%Patterncount] );
6996 usc_OutReg( info, RCLR, BitPatterns[(i+3)%Patterncount] );
6997 usc_OutReg( info, RSR, BitPatterns[(i+4)%Patterncount] );
6998 usc_OutDmaReg( info, TBCR, BitPatterns[(i+5)%Patterncount] );
6999
7000 if ( (usc_InReg( info, TC0R ) != BitPatterns[i]) ||
7001 (usc_InReg( info, TC1R ) != BitPatterns[(i+1)%Patterncount]) ||
7002 (usc_InReg( info, TCLR ) != BitPatterns[(i+2)%Patterncount]) ||
7003 (usc_InReg( info, RCLR ) != BitPatterns[(i+3)%Patterncount]) ||
7004 (usc_InReg( info, RSR ) != BitPatterns[(i+4)%Patterncount]) ||
7005 (usc_InDmaReg( info, TBCR ) != BitPatterns[(i+5)%Patterncount]) ){
0fab6de0 7006 rc = false;
1da177e4
LT
7007 break;
7008 }
7009 }
7010 }
7011
7012 usc_reset(info);
7013 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7014
7015 return rc;
7016
7017} /* end of mgsl_register_test() */
7018
7019/* mgsl_irq_test() Perform interrupt test of the 16C32.
7020 *
7021 * Arguments: info pointer to device instance data
0fab6de0 7022 * Return Value: true if test passed, otherwise false
1da177e4 7023 */
0fab6de0 7024static bool mgsl_irq_test( struct mgsl_struct *info )
1da177e4
LT
7025{
7026 unsigned long EndTime;
7027 unsigned long flags;
7028
7029 spin_lock_irqsave(&info->irq_spinlock,flags);
7030 usc_reset(info);
7031
7032 /*
7033 * Setup 16C32 to interrupt on TxC pin (14MHz clock) transition.
0fab6de0 7034 * The ISR sets irq_occurred to true.
1da177e4
LT
7035 */
7036
0fab6de0 7037 info->irq_occurred = false;
1da177e4
LT
7038
7039 /* Enable INTEN gate for ISA adapter (Port 6, Bit12) */
7040 /* Enable INTEN (Port 6, Bit12) */
7041 /* This connects the IRQ request signal to the ISA bus */
7042 /* on the ISA adapter. This has no effect for the PCI adapter */
7043 usc_OutReg( info, PCR, (unsigned short)((usc_InReg(info, PCR) | BIT13) & ~BIT12) );
7044
7045 usc_EnableMasterIrqBit(info);
7046 usc_EnableInterrupts(info, IO_PIN);
7047 usc_ClearIrqPendingBits(info, IO_PIN);
7048
7049 usc_UnlatchIostatusBits(info, MISCSTATUS_TXC_LATCHED);
7050 usc_EnableStatusIrqs(info, SICR_TXC_ACTIVE + SICR_TXC_INACTIVE);
7051
7052 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7053
7054 EndTime=100;
7055 while( EndTime-- && !info->irq_occurred ) {
7056 msleep_interruptible(10);
7057 }
7058
7059 spin_lock_irqsave(&info->irq_spinlock,flags);
7060 usc_reset(info);
7061 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7062
0fab6de0 7063 return info->irq_occurred;
1da177e4
LT
7064
7065} /* end of mgsl_irq_test() */
7066
7067/* mgsl_dma_test()
7068 *
7069 * Perform a DMA test of the 16C32. A small frame is
7070 * transmitted via DMA from a transmit buffer to a receive buffer
7071 * using single buffer DMA mode.
7072 *
7073 * Arguments: info pointer to device instance data
0fab6de0 7074 * Return Value: true if test passed, otherwise false
1da177e4 7075 */
0fab6de0 7076static bool mgsl_dma_test( struct mgsl_struct *info )
1da177e4
LT
7077{
7078 unsigned short FifoLevel;
7079 unsigned long phys_addr;
7080 unsigned int FrameSize;
7081 unsigned int i;
7082 char *TmpPtr;
0fab6de0 7083 bool rc = true;
1da177e4
LT
7084 unsigned short status=0;
7085 unsigned long EndTime;
7086 unsigned long flags;
7087 MGSL_PARAMS tmp_params;
7088
7089 /* save current port options */
7090 memcpy(&tmp_params,&info->params,sizeof(MGSL_PARAMS));
7091 /* load default port options */
7092 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
7093
7094#define TESTFRAMESIZE 40
7095
7096 spin_lock_irqsave(&info->irq_spinlock,flags);
7097
7098 /* setup 16C32 for SDLC DMA transfer mode */
7099
7100 usc_reset(info);
7101 usc_set_sdlc_mode(info);
7102 usc_enable_loopback(info,1);
7103
7104 /* Reprogram the RDMR so that the 16C32 does NOT clear the count
7105 * field of the buffer entry after fetching buffer address. This
7106 * way we can detect a DMA failure for a DMA read (which should be
7107 * non-destructive to system memory) before we try and write to
7108 * memory (where a failure could corrupt system memory).
7109 */
7110
7111 /* Receive DMA mode Register (RDMR)
7112 *
7113 * <15..14> 11 DMA mode = Linked List Buffer mode
7114 * <13> 1 RSBinA/L = store Rx status Block in List entry
7115 * <12> 0 1 = Clear count of List Entry after fetching
7116 * <11..10> 00 Address mode = Increment
7117 * <9> 1 Terminate Buffer on RxBound
7118 * <8> 0 Bus Width = 16bits
7119 * <7..0> ? status Bits (write as 0s)
7120 *
7121 * 1110 0010 0000 0000 = 0xe200
7122 */
7123
7124 usc_OutDmaReg( info, RDMR, 0xe200 );
7125
7126 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7127
7128
7129 /* SETUP TRANSMIT AND RECEIVE DMA BUFFERS */
7130
7131 FrameSize = TESTFRAMESIZE;
7132
7133 /* setup 1st transmit buffer entry: */
7134 /* with frame size and transmit control word */
7135
7136 info->tx_buffer_list[0].count = FrameSize;
7137 info->tx_buffer_list[0].rcc = FrameSize;
7138 info->tx_buffer_list[0].status = 0x4000;
7139
7140 /* build a transmit frame in 1st transmit DMA buffer */
7141
7142 TmpPtr = info->tx_buffer_list[0].virt_addr;
7143 for (i = 0; i < FrameSize; i++ )
7144 *TmpPtr++ = i;
7145
7146 /* setup 1st receive buffer entry: */
7147 /* clear status, set max receive buffer size */
7148
7149 info->rx_buffer_list[0].status = 0;
7150 info->rx_buffer_list[0].count = FrameSize + 4;
7151
7152 /* zero out the 1st receive buffer */
7153
7154 memset( info->rx_buffer_list[0].virt_addr, 0, FrameSize + 4 );
7155
7156 /* Set count field of next buffer entries to prevent */
7157 /* 16C32 from using buffers after the 1st one. */
7158
7159 info->tx_buffer_list[1].count = 0;
7160 info->rx_buffer_list[1].count = 0;
7161
7162
7163 /***************************/
7164 /* Program 16C32 receiver. */
7165 /***************************/
7166
7167 spin_lock_irqsave(&info->irq_spinlock,flags);
7168
7169 /* setup DMA transfers */
7170 usc_RTCmd( info, RTCmd_PurgeRxFifo );
7171
7172 /* program 16C32 receiver with physical address of 1st DMA buffer entry */
7173 phys_addr = info->rx_buffer_list[0].phys_entry;
7174 usc_OutDmaReg( info, NRARL, (unsigned short)phys_addr );
7175 usc_OutDmaReg( info, NRARU, (unsigned short)(phys_addr >> 16) );
7176
7177 /* Clear the Rx DMA status bits (read RDMR) and start channel */
7178 usc_InDmaReg( info, RDMR );
7179 usc_DmaCmd( info, DmaCmd_InitRxChannel );
7180
7181 /* Enable Receiver (RMR <1..0> = 10) */
7182 usc_OutReg( info, RMR, (unsigned short)((usc_InReg(info, RMR) & 0xfffc) | 0x0002) );
7183
7184 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7185
7186
7187 /*************************************************************/
7188 /* WAIT FOR RECEIVER TO DMA ALL PARAMETERS FROM BUFFER ENTRY */
7189 /*************************************************************/
7190
7191 /* Wait 100ms for interrupt. */
7192 EndTime = jiffies + msecs_to_jiffies(100);
7193
7194 for(;;) {
7195 if (time_after(jiffies, EndTime)) {
0fab6de0 7196 rc = false;
1da177e4
LT
7197 break;
7198 }
7199
7200 spin_lock_irqsave(&info->irq_spinlock,flags);
7201 status = usc_InDmaReg( info, RDMR );
7202 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7203
7204 if ( !(status & BIT4) && (status & BIT5) ) {
7205 /* INITG (BIT 4) is inactive (no entry read in progress) AND */
7206 /* BUSY (BIT 5) is active (channel still active). */
7207 /* This means the buffer entry read has completed. */
7208 break;
7209 }
7210 }
7211
7212
7213 /******************************/
7214 /* Program 16C32 transmitter. */
7215 /******************************/
7216
7217 spin_lock_irqsave(&info->irq_spinlock,flags);
7218
7219 /* Program the Transmit Character Length Register (TCLR) */
7220 /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
7221
7222 usc_OutReg( info, TCLR, (unsigned short)info->tx_buffer_list[0].count );
7223 usc_RTCmd( info, RTCmd_PurgeTxFifo );
7224
7225 /* Program the address of the 1st DMA Buffer Entry in linked list */
7226
7227 phys_addr = info->tx_buffer_list[0].phys_entry;
7228 usc_OutDmaReg( info, NTARL, (unsigned short)phys_addr );
7229 usc_OutDmaReg( info, NTARU, (unsigned short)(phys_addr >> 16) );
7230
7231 /* unlatch Tx status bits, and start transmit channel. */
7232
7233 usc_OutReg( info, TCSR, (unsigned short)(( usc_InReg(info, TCSR) & 0x0f00) | 0xfa) );
7234 usc_DmaCmd( info, DmaCmd_InitTxChannel );
7235
7236 /* wait for DMA controller to fill transmit FIFO */
7237
7238 usc_TCmd( info, TCmd_SelectTicrTxFifostatus );
7239
7240 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7241
7242
7243 /**********************************/
7244 /* WAIT FOR TRANSMIT FIFO TO FILL */
7245 /**********************************/
7246
7247 /* Wait 100ms */
7248 EndTime = jiffies + msecs_to_jiffies(100);
7249
7250 for(;;) {
7251 if (time_after(jiffies, EndTime)) {
0fab6de0 7252 rc = false;
1da177e4
LT
7253 break;
7254 }
7255
7256 spin_lock_irqsave(&info->irq_spinlock,flags);
7257 FifoLevel = usc_InReg(info, TICR) >> 8;
7258 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7259
7260 if ( FifoLevel < 16 )
7261 break;
7262 else
7263 if ( FrameSize < 32 ) {
7264 /* This frame is smaller than the entire transmit FIFO */
7265 /* so wait for the entire frame to be loaded. */
7266 if ( FifoLevel <= (32 - FrameSize) )
7267 break;
7268 }
7269 }
7270
7271
0fab6de0 7272 if ( rc )
1da177e4
LT
7273 {
7274 /* Enable 16C32 transmitter. */
7275
7276 spin_lock_irqsave(&info->irq_spinlock,flags);
7277
7278 /* Transmit mode Register (TMR), <1..0> = 10, Enable Transmitter */
7279 usc_TCmd( info, TCmd_SendFrame );
7280 usc_OutReg( info, TMR, (unsigned short)((usc_InReg(info, TMR) & 0xfffc) | 0x0002) );
7281
7282 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7283
7284
7285 /******************************/
7286 /* WAIT FOR TRANSMIT COMPLETE */
7287 /******************************/
7288
7289 /* Wait 100ms */
7290 EndTime = jiffies + msecs_to_jiffies(100);
7291
7292 /* While timer not expired wait for transmit complete */
7293
7294 spin_lock_irqsave(&info->irq_spinlock,flags);
7295 status = usc_InReg( info, TCSR );
7296 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7297
7298 while ( !(status & (BIT6+BIT5+BIT4+BIT2+BIT1)) ) {
7299 if (time_after(jiffies, EndTime)) {
0fab6de0 7300 rc = false;
1da177e4
LT
7301 break;
7302 }
7303
7304 spin_lock_irqsave(&info->irq_spinlock,flags);
7305 status = usc_InReg( info, TCSR );
7306 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7307 }
7308 }
7309
7310
0fab6de0 7311 if ( rc ){
1da177e4
LT
7312 /* CHECK FOR TRANSMIT ERRORS */
7313 if ( status & (BIT5 + BIT1) )
0fab6de0 7314 rc = false;
1da177e4
LT
7315 }
7316
0fab6de0 7317 if ( rc ) {
1da177e4
LT
7318 /* WAIT FOR RECEIVE COMPLETE */
7319
7320 /* Wait 100ms */
7321 EndTime = jiffies + msecs_to_jiffies(100);
7322
7323 /* Wait for 16C32 to write receive status to buffer entry. */
7324 status=info->rx_buffer_list[0].status;
7325 while ( status == 0 ) {
7326 if (time_after(jiffies, EndTime)) {
0fab6de0 7327 rc = false;
1da177e4
LT
7328 break;
7329 }
7330 status=info->rx_buffer_list[0].status;
7331 }
7332 }
7333
7334
0fab6de0 7335 if ( rc ) {
1da177e4
LT
7336 /* CHECK FOR RECEIVE ERRORS */
7337 status = info->rx_buffer_list[0].status;
7338
7339 if ( status & (BIT8 + BIT3 + BIT1) ) {
7340 /* receive error has occurred */
0fab6de0 7341 rc = false;
1da177e4
LT
7342 } else {
7343 if ( memcmp( info->tx_buffer_list[0].virt_addr ,
7344 info->rx_buffer_list[0].virt_addr, FrameSize ) ){
0fab6de0 7345 rc = false;
1da177e4
LT
7346 }
7347 }
7348 }
7349
7350 spin_lock_irqsave(&info->irq_spinlock,flags);
7351 usc_reset( info );
7352 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7353
7354 /* restore current port options */
7355 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
7356
7357 return rc;
7358
7359} /* end of mgsl_dma_test() */
7360
7361/* mgsl_adapter_test()
7362 *
7363 * Perform the register, IRQ, and DMA tests for the 16C32.
7364 *
7365 * Arguments: info pointer to device instance data
7366 * Return Value: 0 if success, otherwise -ENODEV
7367 */
7368static int mgsl_adapter_test( struct mgsl_struct *info )
7369{
7370 if ( debug_level >= DEBUG_LEVEL_INFO )
7371 printk( "%s(%d):Testing device %s\n",
7372 __FILE__,__LINE__,info->device_name );
7373
7374 if ( !mgsl_register_test( info ) ) {
7375 info->init_error = DiagStatus_AddressFailure;
7376 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
7377 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
7378 return -ENODEV;
7379 }
7380
7381 if ( !mgsl_irq_test( info ) ) {
7382 info->init_error = DiagStatus_IrqFailure;
7383 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
7384 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
7385 return -ENODEV;
7386 }
7387
7388 if ( !mgsl_dma_test( info ) ) {
7389 info->init_error = DiagStatus_DmaFailure;
7390 printk( "%s(%d):DMA test failure for device %s DMA=%d\n",
7391 __FILE__,__LINE__,info->device_name, (unsigned short)(info->dma_level) );
7392 return -ENODEV;
7393 }
7394
7395 if ( debug_level >= DEBUG_LEVEL_INFO )
7396 printk( "%s(%d):device %s passed diagnostics\n",
7397 __FILE__,__LINE__,info->device_name );
7398
7399 return 0;
7400
7401} /* end of mgsl_adapter_test() */
7402
7403/* mgsl_memory_test()
7404 *
7405 * Test the shared memory on a PCI adapter.
7406 *
7407 * Arguments: info pointer to device instance data
0fab6de0 7408 * Return Value: true if test passed, otherwise false
1da177e4 7409 */
0fab6de0 7410static bool mgsl_memory_test( struct mgsl_struct *info )
1da177e4 7411{
fe971071
TK
7412 static unsigned long BitPatterns[] =
7413 { 0x0, 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999, 0xffffffff, 0x12345678 };
7414 unsigned long Patterncount = ARRAY_SIZE(BitPatterns);
1da177e4
LT
7415 unsigned long i;
7416 unsigned long TestLimit = SHARED_MEM_ADDRESS_SIZE/sizeof(unsigned long);
7417 unsigned long * TestAddr;
7418
7419 if ( info->bus_type != MGSL_BUS_TYPE_PCI )
0fab6de0 7420 return true;
1da177e4
LT
7421
7422 TestAddr = (unsigned long *)info->memory_base;
7423
7424 /* Test data lines with test pattern at one location. */
7425
7426 for ( i = 0 ; i < Patterncount ; i++ ) {
7427 *TestAddr = BitPatterns[i];
7428 if ( *TestAddr != BitPatterns[i] )
0fab6de0 7429 return false;
1da177e4
LT
7430 }
7431
7432 /* Test address lines with incrementing pattern over */
7433 /* entire address range. */
7434
7435 for ( i = 0 ; i < TestLimit ; i++ ) {
7436 *TestAddr = i * 4;
7437 TestAddr++;
7438 }
7439
7440 TestAddr = (unsigned long *)info->memory_base;
7441
7442 for ( i = 0 ; i < TestLimit ; i++ ) {
7443 if ( *TestAddr != i * 4 )
0fab6de0 7444 return false;
1da177e4
LT
7445 TestAddr++;
7446 }
7447
7448 memset( info->memory_base, 0, SHARED_MEM_ADDRESS_SIZE );
7449
0fab6de0 7450 return true;
1da177e4
LT
7451
7452} /* End Of mgsl_memory_test() */
7453
7454
7455/* mgsl_load_pci_memory()
7456 *
7457 * Load a large block of data into the PCI shared memory.
7458 * Use this instead of memcpy() or memmove() to move data
7459 * into the PCI shared memory.
7460 *
7461 * Notes:
7462 *
7463 * This function prevents the PCI9050 interface chip from hogging
7464 * the adapter local bus, which can starve the 16C32 by preventing
7465 * 16C32 bus master cycles.
7466 *
7467 * The PCI9050 documentation says that the 9050 will always release
7468 * control of the local bus after completing the current read
7469 * or write operation.
7470 *
7471 * It appears that as long as the PCI9050 write FIFO is full, the
7472 * PCI9050 treats all of the writes as a single burst transaction
7473 * and will not release the bus. This causes DMA latency problems
7474 * at high speeds when copying large data blocks to the shared
7475 * memory.
7476 *
7477 * This function in effect, breaks the a large shared memory write
7478 * into multiple transations by interleaving a shared memory read
7479 * which will flush the write FIFO and 'complete' the write
7480 * transation. This allows any pending DMA request to gain control
7481 * of the local bus in a timely fasion.
7482 *
7483 * Arguments:
7484 *
7485 * TargetPtr pointer to target address in PCI shared memory
7486 * SourcePtr pointer to source buffer for data
7487 * count count in bytes of data to copy
7488 *
7489 * Return Value: None
7490 */
7491static void mgsl_load_pci_memory( char* TargetPtr, const char* SourcePtr,
7492 unsigned short count )
7493{
7494 /* 16 32-bit writes @ 60ns each = 960ns max latency on local bus */
7495#define PCI_LOAD_INTERVAL 64
7496
7497 unsigned short Intervalcount = count / PCI_LOAD_INTERVAL;
7498 unsigned short Index;
7499 unsigned long Dummy;
7500
7501 for ( Index = 0 ; Index < Intervalcount ; Index++ )
7502 {
7503 memcpy(TargetPtr, SourcePtr, PCI_LOAD_INTERVAL);
7504 Dummy = *((volatile unsigned long *)TargetPtr);
7505 TargetPtr += PCI_LOAD_INTERVAL;
7506 SourcePtr += PCI_LOAD_INTERVAL;
7507 }
7508
7509 memcpy( TargetPtr, SourcePtr, count % PCI_LOAD_INTERVAL );
7510
7511} /* End Of mgsl_load_pci_memory() */
7512
7513static void mgsl_trace_block(struct mgsl_struct *info,const char* data, int count, int xmit)
7514{
7515 int i;
7516 int linecount;
7517 if (xmit)
7518 printk("%s tx data:\n",info->device_name);
7519 else
7520 printk("%s rx data:\n",info->device_name);
7521
7522 while(count) {
7523 if (count > 16)
7524 linecount = 16;
7525 else
7526 linecount = count;
7527
7528 for(i=0;i<linecount;i++)
7529 printk("%02X ",(unsigned char)data[i]);
7530 for(;i<17;i++)
7531 printk(" ");
7532 for(i=0;i<linecount;i++) {
7533 if (data[i]>=040 && data[i]<=0176)
7534 printk("%c",data[i]);
7535 else
7536 printk(".");
7537 }
7538 printk("\n");
7539
7540 data += linecount;
7541 count -= linecount;
7542 }
7543} /* end of mgsl_trace_block() */
7544
7545/* mgsl_tx_timeout()
7546 *
7547 * called when HDLC frame times out
7548 * update stats and do tx completion processing
7549 *
7550 * Arguments: context pointer to device instance data
7551 * Return Value: None
7552 */
7553static void mgsl_tx_timeout(unsigned long context)
7554{
7555 struct mgsl_struct *info = (struct mgsl_struct*)context;
7556 unsigned long flags;
7557
7558 if ( debug_level >= DEBUG_LEVEL_INFO )
7559 printk( "%s(%d):mgsl_tx_timeout(%s)\n",
7560 __FILE__,__LINE__,info->device_name);
7561 if(info->tx_active &&
7562 (info->params.mode == MGSL_MODE_HDLC ||
7563 info->params.mode == MGSL_MODE_RAW) ) {
7564 info->icount.txtimeout++;
7565 }
7566 spin_lock_irqsave(&info->irq_spinlock,flags);
0fab6de0 7567 info->tx_active = false;
1da177e4
LT
7568 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
7569
7570 if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
7571 usc_loopmode_cancel_transmit( info );
7572
7573 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7574
af69c7f9 7575#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
7576 if (info->netcount)
7577 hdlcdev_tx_done(info);
7578 else
7579#endif
7580 mgsl_bh_transmit(info);
7581
7582} /* end of mgsl_tx_timeout() */
7583
7584/* signal that there are no more frames to send, so that
7585 * line is 'released' by echoing RxD to TxD when current
7586 * transmission is complete (or immediately if no tx in progress).
7587 */
7588static int mgsl_loopmode_send_done( struct mgsl_struct * info )
7589{
7590 unsigned long flags;
7591
7592 spin_lock_irqsave(&info->irq_spinlock,flags);
7593 if (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) {
7594 if (info->tx_active)
0fab6de0 7595 info->loopmode_send_done_requested = true;
1da177e4
LT
7596 else
7597 usc_loopmode_send_done(info);
7598 }
7599 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7600
7601 return 0;
7602}
7603
7604/* release the line by echoing RxD to TxD
7605 * upon completion of a transmit frame
7606 */
7607static void usc_loopmode_send_done( struct mgsl_struct * info )
7608{
0fab6de0 7609 info->loopmode_send_done_requested = false;
1da177e4
LT
7610 /* clear CMR:13 to 0 to start echoing RxData to TxData */
7611 info->cmr_value &= ~BIT13;
7612 usc_OutReg(info, CMR, info->cmr_value);
7613}
7614
7615/* abort a transmit in progress while in HDLC LoopMode
7616 */
7617static void usc_loopmode_cancel_transmit( struct mgsl_struct * info )
7618{
7619 /* reset tx dma channel and purge TxFifo */
7620 usc_RTCmd( info, RTCmd_PurgeTxFifo );
7621 usc_DmaCmd( info, DmaCmd_ResetTxChannel );
7622 usc_loopmode_send_done( info );
7623}
7624
7625/* for HDLC/SDLC LoopMode, setting CMR:13 after the transmitter is enabled
7626 * is an Insert Into Loop action. Upon receipt of a GoAhead sequence (RxAbort)
7627 * we must clear CMR:13 to begin repeating TxData to RxData
7628 */
7629static void usc_loopmode_insert_request( struct mgsl_struct * info )
7630{
0fab6de0 7631 info->loopmode_insert_requested = true;
1da177e4
LT
7632
7633 /* enable RxAbort irq. On next RxAbort, clear CMR:13 to
7634 * begin repeating TxData on RxData (complete insertion)
7635 */
7636 usc_OutReg( info, RICR,
7637 (usc_InReg( info, RICR ) | RXSTATUS_ABORT_RECEIVED ) );
7638
7639 /* set CMR:13 to insert into loop on next GoAhead (RxAbort) */
7640 info->cmr_value |= BIT13;
7641 usc_OutReg(info, CMR, info->cmr_value);
7642}
7643
7644/* return 1 if station is inserted into the loop, otherwise 0
7645 */
7646static int usc_loopmode_active( struct mgsl_struct * info)
7647{
7648 return usc_InReg( info, CCSR ) & BIT7 ? 1 : 0 ;
7649}
7650
af69c7f9 7651#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
7652
7653/**
7654 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
7655 * set encoding and frame check sequence (FCS) options
7656 *
7657 * dev pointer to network device structure
7658 * encoding serial encoding setting
7659 * parity FCS setting
7660 *
7661 * returns 0 if success, otherwise error code
7662 */
7663static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
7664 unsigned short parity)
7665{
7666 struct mgsl_struct *info = dev_to_port(dev);
7667 unsigned char new_encoding;
7668 unsigned short new_crctype;
7669
7670 /* return error if TTY interface open */
8fb06c77 7671 if (info->port.count)
1da177e4
LT
7672 return -EBUSY;
7673
7674 switch (encoding)
7675 {
7676 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
7677 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
7678 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
7679 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
7680 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
7681 default: return -EINVAL;
7682 }
7683
7684 switch (parity)
7685 {
7686 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
7687 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
7688 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
7689 default: return -EINVAL;
7690 }
7691
7692 info->params.encoding = new_encoding;
53b3531b 7693 info->params.crc_type = new_crctype;
1da177e4
LT
7694
7695 /* if network interface up, reprogram hardware */
7696 if (info->netcount)
7697 mgsl_program_hw(info);
7698
7699 return 0;
7700}
7701
7702/**
7703 * called by generic HDLC layer to send frame
7704 *
7705 * skb socket buffer containing HDLC frame
7706 * dev pointer to network device structure
1da177e4 7707 */
4c5d502d
SH
7708static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
7709 struct net_device *dev)
1da177e4
LT
7710{
7711 struct mgsl_struct *info = dev_to_port(dev);
1da177e4
LT
7712 unsigned long flags;
7713
7714 if (debug_level >= DEBUG_LEVEL_INFO)
7715 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
7716
7717 /* stop sending until this frame completes */
7718 netif_stop_queue(dev);
7719
7720 /* copy data to device buffers */
7721 info->xmit_cnt = skb->len;
7722 mgsl_load_tx_dma_buffer(info, skb->data, skb->len);
7723
7724 /* update network statistics */
198191c4
KH
7725 dev->stats.tx_packets++;
7726 dev->stats.tx_bytes += skb->len;
1da177e4
LT
7727
7728 /* done with socket buffer, so free it */
7729 dev_kfree_skb(skb);
7730
7731 /* save start time for transmit timeout detection */
7732 dev->trans_start = jiffies;
7733
7734 /* start hardware transmitter if necessary */
7735 spin_lock_irqsave(&info->irq_spinlock,flags);
7736 if (!info->tx_active)
7737 usc_start_transmitter(info);
7738 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7739
4c5d502d 7740 return NETDEV_TX_OK;
1da177e4
LT
7741}
7742
7743/**
7744 * called by network layer when interface enabled
7745 * claim resources and initialize hardware
7746 *
7747 * dev pointer to network device structure
7748 *
7749 * returns 0 if success, otherwise error code
7750 */
7751static int hdlcdev_open(struct net_device *dev)
7752{
7753 struct mgsl_struct *info = dev_to_port(dev);
7754 int rc;
7755 unsigned long flags;
7756
7757 if (debug_level >= DEBUG_LEVEL_INFO)
7758 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
7759
7760 /* generic HDLC layer open processing */
7761 if ((rc = hdlc_open(dev)))
7762 return rc;
7763
7764 /* arbitrate between network and tty opens */
7765 spin_lock_irqsave(&info->netlock, flags);
8fb06c77 7766 if (info->port.count != 0 || info->netcount != 0) {
1da177e4
LT
7767 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
7768 spin_unlock_irqrestore(&info->netlock, flags);
7769 return -EBUSY;
7770 }
7771 info->netcount=1;
7772 spin_unlock_irqrestore(&info->netlock, flags);
7773
7774 /* claim resources and init adapter */
7775 if ((rc = startup(info)) != 0) {
7776 spin_lock_irqsave(&info->netlock, flags);
7777 info->netcount=0;
7778 spin_unlock_irqrestore(&info->netlock, flags);
7779 return rc;
7780 }
7781
7782 /* assert DTR and RTS, apply hardware settings */
7783 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
7784 mgsl_program_hw(info);
7785
7786 /* enable network layer transmit */
7787 dev->trans_start = jiffies;
7788 netif_start_queue(dev);
7789
7790 /* inform generic HDLC layer of current DCD status */
7791 spin_lock_irqsave(&info->irq_spinlock, flags);
7792 usc_get_serial_signals(info);
7793 spin_unlock_irqrestore(&info->irq_spinlock, flags);
fbeff3c1
KH
7794 if (info->serial_signals & SerialSignal_DCD)
7795 netif_carrier_on(dev);
7796 else
7797 netif_carrier_off(dev);
1da177e4
LT
7798 return 0;
7799}
7800
7801/**
7802 * called by network layer when interface is disabled
7803 * shutdown hardware and release resources
7804 *
7805 * dev pointer to network device structure
7806 *
7807 * returns 0 if success, otherwise error code
7808 */
7809static int hdlcdev_close(struct net_device *dev)
7810{
7811 struct mgsl_struct *info = dev_to_port(dev);
7812 unsigned long flags;
7813
7814 if (debug_level >= DEBUG_LEVEL_INFO)
7815 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
7816
7817 netif_stop_queue(dev);
7818
7819 /* shutdown adapter and release resources */
7820 shutdown(info);
7821
7822 hdlc_close(dev);
7823
7824 spin_lock_irqsave(&info->netlock, flags);
7825 info->netcount=0;
7826 spin_unlock_irqrestore(&info->netlock, flags);
7827
7828 return 0;
7829}
7830
7831/**
7832 * called by network layer to process IOCTL call to network device
7833 *
7834 * dev pointer to network device structure
7835 * ifr pointer to network interface request structure
7836 * cmd IOCTL command code
7837 *
7838 * returns 0 if success, otherwise error code
7839 */
7840static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
7841{
7842 const size_t size = sizeof(sync_serial_settings);
7843 sync_serial_settings new_line;
7844 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
7845 struct mgsl_struct *info = dev_to_port(dev);
7846 unsigned int flags;
7847
7848 if (debug_level >= DEBUG_LEVEL_INFO)
7849 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
7850
7851 /* return error if TTY interface open */
8fb06c77 7852 if (info->port.count)
1da177e4
LT
7853 return -EBUSY;
7854
7855 if (cmd != SIOCWANDEV)
7856 return hdlc_ioctl(dev, ifr, cmd);
7857
7858 switch(ifr->ifr_settings.type) {
7859 case IF_GET_IFACE: /* return current sync_serial_settings */
7860
7861 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
7862 if (ifr->ifr_settings.size < size) {
7863 ifr->ifr_settings.size = size; /* data size wanted */
7864 return -ENOBUFS;
7865 }
7866
7867 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
7868 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
7869 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
7870 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
7871
7872 switch (flags){
7873 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
7874 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
7875 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
7876 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
7877 default: new_line.clock_type = CLOCK_DEFAULT;
7878 }
7879
7880 new_line.clock_rate = info->params.clock_speed;
7881 new_line.loopback = info->params.loopback ? 1:0;
7882
7883 if (copy_to_user(line, &new_line, size))
7884 return -EFAULT;
7885 return 0;
7886
7887 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
7888
7889 if(!capable(CAP_NET_ADMIN))
7890 return -EPERM;
7891 if (copy_from_user(&new_line, line, size))
7892 return -EFAULT;
7893
7894 switch (new_line.clock_type)
7895 {
7896 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
7897 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
7898 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
7899 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
7900 case CLOCK_DEFAULT: flags = info->params.flags &
7901 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
7902 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
7903 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
7904 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
7905 default: return -EINVAL;
7906 }
7907
7908 if (new_line.loopback != 0 && new_line.loopback != 1)
7909 return -EINVAL;
7910
7911 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
7912 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
7913 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
7914 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
7915 info->params.flags |= flags;
7916
7917 info->params.loopback = new_line.loopback;
7918
7919 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
7920 info->params.clock_speed = new_line.clock_rate;
7921 else
7922 info->params.clock_speed = 0;
7923
7924 /* if network interface up, reprogram hardware */
7925 if (info->netcount)
7926 mgsl_program_hw(info);
7927 return 0;
7928
7929 default:
7930 return hdlc_ioctl(dev, ifr, cmd);
7931 }
7932}
7933
7934/**
7935 * called by network layer when transmit timeout is detected
7936 *
7937 * dev pointer to network device structure
7938 */
7939static void hdlcdev_tx_timeout(struct net_device *dev)
7940{
7941 struct mgsl_struct *info = dev_to_port(dev);
1da177e4
LT
7942 unsigned long flags;
7943
7944 if (debug_level >= DEBUG_LEVEL_INFO)
7945 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
7946
198191c4
KH
7947 dev->stats.tx_errors++;
7948 dev->stats.tx_aborted_errors++;
1da177e4
LT
7949
7950 spin_lock_irqsave(&info->irq_spinlock,flags);
7951 usc_stop_transmitter(info);
7952 spin_unlock_irqrestore(&info->irq_spinlock,flags);
7953
7954 netif_wake_queue(dev);
7955}
7956
7957/**
7958 * called by device driver when transmit completes
7959 * reenable network layer transmit if stopped
7960 *
7961 * info pointer to device instance information
7962 */
7963static void hdlcdev_tx_done(struct mgsl_struct *info)
7964{
7965 if (netif_queue_stopped(info->netdev))
7966 netif_wake_queue(info->netdev);
7967}
7968
7969/**
7970 * called by device driver when frame received
7971 * pass frame to network layer
7972 *
7973 * info pointer to device instance information
7974 * buf pointer to buffer contianing frame data
7975 * size count of data bytes in buf
7976 */
7977static void hdlcdev_rx(struct mgsl_struct *info, char *buf, int size)
7978{
7979 struct sk_buff *skb = dev_alloc_skb(size);
7980 struct net_device *dev = info->netdev;
1da177e4
LT
7981
7982 if (debug_level >= DEBUG_LEVEL_INFO)
198191c4 7983 printk("hdlcdev_rx(%s)\n", dev->name);
1da177e4
LT
7984
7985 if (skb == NULL) {
198191c4
KH
7986 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n",
7987 dev->name);
7988 dev->stats.rx_dropped++;
1da177e4
LT
7989 return;
7990 }
7991
198191c4 7992 memcpy(skb_put(skb, size), buf, size);
1da177e4 7993
198191c4 7994 skb->protocol = hdlc_type_trans(skb, dev);
1da177e4 7995
198191c4
KH
7996 dev->stats.rx_packets++;
7997 dev->stats.rx_bytes += size;
1da177e4
LT
7998
7999 netif_rx(skb);
1da177e4
LT
8000}
8001
991990a1
KH
8002static const struct net_device_ops hdlcdev_ops = {
8003 .ndo_open = hdlcdev_open,
8004 .ndo_stop = hdlcdev_close,
8005 .ndo_change_mtu = hdlc_change_mtu,
8006 .ndo_start_xmit = hdlc_start_xmit,
8007 .ndo_do_ioctl = hdlcdev_ioctl,
8008 .ndo_tx_timeout = hdlcdev_tx_timeout,
8009};
8010
1da177e4
LT
8011/**
8012 * called by device driver when adding device instance
8013 * do generic HDLC initialization
8014 *
8015 * info pointer to device instance information
8016 *
8017 * returns 0 if success, otherwise error code
8018 */
8019static int hdlcdev_init(struct mgsl_struct *info)
8020{
8021 int rc;
8022 struct net_device *dev;
8023 hdlc_device *hdlc;
8024
8025 /* allocate and initialize network and HDLC layer objects */
8026
8027 if (!(dev = alloc_hdlcdev(info))) {
8028 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
8029 return -ENOMEM;
8030 }
8031
8032 /* for network layer reporting purposes only */
8033 dev->base_addr = info->io_base;
8034 dev->irq = info->irq_level;
8035 dev->dma = info->dma_level;
8036
8037 /* network layer callbacks and settings */
991990a1
KH
8038 dev->netdev_ops = &hdlcdev_ops;
8039 dev->watchdog_timeo = 10 * HZ;
1da177e4
LT
8040 dev->tx_queue_len = 50;
8041
8042 /* generic HDLC layer callbacks and settings */
8043 hdlc = dev_to_hdlc(dev);
8044 hdlc->attach = hdlcdev_attach;
8045 hdlc->xmit = hdlcdev_xmit;
8046
8047 /* register objects with HDLC layer */
8048 if ((rc = register_hdlc_device(dev))) {
8049 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
8050 free_netdev(dev);
8051 return rc;
8052 }
8053
8054 info->netdev = dev;
8055 return 0;
8056}
8057
8058/**
8059 * called by device driver when removing device instance
8060 * do generic HDLC cleanup
8061 *
8062 * info pointer to device instance information
8063 */
8064static void hdlcdev_exit(struct mgsl_struct *info)
8065{
8066 unregister_hdlc_device(info->netdev);
8067 free_netdev(info->netdev);
8068 info->netdev = NULL;
8069}
8070
8071#endif /* CONFIG_HDLC */
8072
8073
9671f099 8074static int synclink_init_one (struct pci_dev *dev,
1da177e4
LT
8075 const struct pci_device_id *ent)
8076{
8077 struct mgsl_struct *info;
8078
8079 if (pci_enable_device(dev)) {
8080 printk("error enabling pci device %p\n", dev);
8081 return -EIO;
8082 }
8083
8084 if (!(info = mgsl_allocate_device())) {
8085 printk("can't allocate device instance data.\n");
8086 return -EIO;
8087 }
8088
8089 /* Copy user configuration info to device instance data */
8090
8091 info->io_base = pci_resource_start(dev, 2);
8092 info->irq_level = dev->irq;
8093 info->phys_memory_base = pci_resource_start(dev, 3);
8094
8095 /* Because veremap only works on page boundaries we must map
8096 * a larger area than is actually implemented for the LCR
8097 * memory range. We map a full page starting at the page boundary.
8098 */
8099 info->phys_lcr_base = pci_resource_start(dev, 0);
8100 info->lcr_offset = info->phys_lcr_base & (PAGE_SIZE-1);
8101 info->phys_lcr_base &= ~(PAGE_SIZE-1);
8102
8103 info->bus_type = MGSL_BUS_TYPE_PCI;
8104 info->io_addr_size = 8;
0f2ed4c6 8105 info->irq_flags = IRQF_SHARED;
1da177e4
LT
8106
8107 if (dev->device == 0x0210) {
8108 /* Version 1 PCI9030 based universal PCI adapter */
8109 info->misc_ctrl_value = 0x007c4080;
8110 info->hw_version = 1;
8111 } else {
8112 /* Version 0 PCI9050 based 5V PCI adapter
8113 * A PCI9050 bug prevents reading LCR registers if
8114 * LCR base address bit 7 is set. Maintain shadow
8115 * value so we can write to LCR misc control reg.
8116 */
8117 info->misc_ctrl_value = 0x087e4546;
8118 info->hw_version = 0;
8119 }
8120
8121 mgsl_add_device(info);
8122
8123 return 0;
8124}
8125
ae8d8a14 8126static void synclink_remove_one (struct pci_dev *dev)
1da177e4
LT
8127{
8128}
8129