Blame view

drivers/tty/synclinkmp.c 147 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
7f3edb945   Paul Fulghum   [PATCH] synclinkm...
2
   * $Id: synclinkmp.c,v 4.38 2005/07/15 13:29:44 paulkf Exp $
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
   *
   * Device driver for Microgate SyncLink Multiport
   * high speed multiprotocol serial adapter.
   *
   * written by Paul Fulghum for Microgate Corporation
   * paulkf@microgate.com
   *
   * Microgate and SyncLink are trademarks of Microgate Corporation
   *
   * Derived from serial.c written by Theodore Ts'o and Linus Torvalds
   * This code is released under the GNU General Public License (GPL)
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
   * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   * OF THE POSSIBILITY OF SUCH DAMAGE.
   */
  
  #define VERSION(ver,rel,seq) (((ver)<<16) | ((rel)<<8) | (seq))
  #if defined(__i386__)
  #  define BREAKPOINT() asm("   int $3");
  #else
  #  define BREAKPOINT() { }
  #endif
  
  #define MAX_DEVICES 12
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  #include <linux/module.h>
  #include <linux/errno.h>
  #include <linux/signal.h>
  #include <linux/sched.h>
  #include <linux/timer.h>
  #include <linux/interrupt.h>
  #include <linux/pci.h>
  #include <linux/tty.h>
  #include <linux/tty_flip.h>
  #include <linux/serial.h>
  #include <linux/major.h>
  #include <linux/string.h>
  #include <linux/fcntl.h>
  #include <linux/ptrace.h>
  #include <linux/ioport.h>
  #include <linux/mm.h>
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
52
  #include <linux/seq_file.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
54
55
56
  #include <linux/slab.h>
  #include <linux/netdevice.h>
  #include <linux/vmalloc.h>
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
60
61
62
63
64
65
66
67
68
  #include <linux/delay.h>
  #include <linux/ioctl.h>
  
  #include <asm/system.h>
  #include <asm/io.h>
  #include <asm/irq.h>
  #include <asm/dma.h>
  #include <linux/bitops.h>
  #include <asm/types.h>
  #include <linux/termios.h>
  #include <linux/workqueue.h>
  #include <linux/hdlc.h>
3dd1247f4   Robert P. J. Day   synclink: standar...
69
  #include <linux/synclink.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70

af69c7f92   Paul Fulghum   [PATCH] generic H...
71
72
73
74
  #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINKMP_MODULE))
  #define SYNCLINK_GENERIC_HDLC 1
  #else
  #define SYNCLINK_GENERIC_HDLC 0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
78
79
80
81
82
  #endif
  
  #define GET_USER(error,value,addr) error = get_user(value,addr)
  #define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
  #define PUT_USER(error,value,addr) error = put_user(value,addr)
  #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
  
  #include <asm/uaccess.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  static MGSL_PARAMS default_params = {
  	MGSL_MODE_HDLC,			/* unsigned long mode */
  	0,				/* unsigned char loopback; */
  	HDLC_FLAG_UNDERRUN_ABORT15,	/* unsigned short flags; */
  	HDLC_ENCODING_NRZI_SPACE,	/* unsigned char encoding; */
  	0,				/* unsigned long clock_speed; */
  	0xff,				/* unsigned char addr_filter; */
  	HDLC_CRC_16_CCITT,		/* unsigned short crc_type; */
  	HDLC_PREAMBLE_LENGTH_8BITS,	/* unsigned char preamble_length; */
  	HDLC_PREAMBLE_PATTERN_NONE,	/* unsigned char preamble; */
  	9600,				/* unsigned long data_rate; */
  	8,				/* unsigned char data_bits; */
  	1,				/* unsigned char stop_bits; */
  	ASYNC_PARITY_NONE		/* unsigned char parity; */
  };
  
  /* size in bytes of DMA data buffers */
  #define SCABUFSIZE 	1024
  #define SCA_MEM_SIZE	0x40000
  #define SCA_BASE_SIZE   512
  #define SCA_REG_SIZE    16
  #define SCA_MAX_PORTS   4
  #define SCAMAXDESC 	128
  
  #define	BUFFERLISTSIZE	4096
  
  /* SCA-I style DMA buffer descriptor */
  typedef struct _SCADESC
  {
  	u16	next;		/* lower l6 bits of next descriptor addr */
  	u16	buf_ptr;	/* lower 16 bits of buffer addr */
  	u8	buf_base;	/* upper 8 bits of buffer addr */
  	u8	pad1;
  	u16	length;		/* length of buffer */
  	u8	status;		/* status of buffer */
  	u8	pad2;
  } SCADESC, *PSCADESC;
  
  typedef struct _SCADESC_EX
  {
  	/* device driver bookkeeping section */
  	char 	*virt_addr;    	/* virtual address of data buffer */
  	u16	phys_entry;	/* lower 16-bits of physical address of this descriptor */
  } SCADESC_EX, *PSCADESC_EX;
  
  /* The queue of BH actions to be performed */
  
  #define BH_RECEIVE  1
  #define BH_TRANSMIT 2
  #define BH_STATUS   4
  
  #define IO_PIN_SHUTDOWN_LIMIT 100
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  struct	_input_signal_events {
  	int	ri_up;
  	int	ri_down;
  	int	dsr_up;
  	int	dsr_down;
  	int	dcd_up;
  	int	dcd_down;
  	int	cts_up;
  	int	cts_down;
  };
  
  /*
   * Device instance data structure
   */
  typedef struct _synclinkmp_info {
  	void *if_ptr;				/* General purpose pointer (used by SPPP) */
  	int			magic;
8fb06c771   Alan Cox   synclink: use tty...
152
  	struct tty_port		port;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153
154
155
156
157
  	int			line;
  	unsigned short		close_delay;
  	unsigned short		closing_wait;	/* time to wait before closing */
  
  	struct mgsl_icount	icount;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
159
  	int			timeout;
  	int			x_char;		/* xon/xoff character */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
160
161
162
163
164
165
166
167
  	u16			read_status_mask1;  /* break detection (SR1 indications) */
  	u16			read_status_mask2;  /* parity/framing/overun (SR2 indications) */
  	unsigned char 		ignore_status_mask1;  /* break detection (SR1 indications) */
  	unsigned char		ignore_status_mask2;  /* parity/framing/overun (SR2 indications) */
  	unsigned char 		*tx_buf;
  	int			tx_put;
  	int			tx_get;
  	int			tx_count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
169
170
171
172
173
174
175
176
177
178
179
  	wait_queue_head_t	status_event_wait_q;
  	wait_queue_head_t	event_wait_q;
  	struct timer_list	tx_timer;	/* HDLC transmit timeout timer */
  	struct _synclinkmp_info	*next_device;	/* device list link */
  	struct timer_list	status_timer;	/* input signal status check timer */
  
  	spinlock_t lock;		/* spinlock for synchronizing with ISR */
  	struct work_struct task;	 		/* task structure for scheduling bh */
  
  	u32 max_frame_size;			/* as set by device config */
  
  	u32 pending_bh;
0fab6de09   Joe Perches   synclink drivers ...
180
  	bool bh_running;				/* Protection from multiple */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
181
  	int isr_overflow;
0fab6de09   Joe Perches   synclink drivers ...
182
  	bool bh_requested;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
  
  	int dcd_chkcount;			/* check counts to prevent */
  	int cts_chkcount;			/* too many IRQs if a signal */
  	int dsr_chkcount;			/* is floating */
  	int ri_chkcount;
  
  	char *buffer_list;			/* virtual address of Rx & Tx buffer lists */
  	unsigned long buffer_list_phys;
  
  	unsigned int rx_buf_count;		/* count of total allocated Rx buffers */
  	SCADESC *rx_buf_list;   		/* list of receive buffer entries */
  	SCADESC_EX rx_buf_list_ex[SCAMAXDESC]; /* list of receive buffer entries */
  	unsigned int current_rx_buf;
  
  	unsigned int tx_buf_count;		/* count of total allocated Tx buffers */
  	SCADESC *tx_buf_list;		/* list of transmit buffer entries */
  	SCADESC_EX tx_buf_list_ex[SCAMAXDESC]; /* list of transmit buffer entries */
  	unsigned int last_tx_buf;
  
  	unsigned char *tmp_rx_buf;
  	unsigned int tmp_rx_buf_count;
0fab6de09   Joe Perches   synclink drivers ...
204
205
  	bool rx_enabled;
  	bool rx_overflow;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
206

0fab6de09   Joe Perches   synclink drivers ...
207
208
  	bool tx_enabled;
  	bool tx_active;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  	u32 idle_mode;
  
  	unsigned char ie0_value;
  	unsigned char ie1_value;
  	unsigned char ie2_value;
  	unsigned char ctrlreg_value;
  	unsigned char old_signals;
  
  	char device_name[25];			/* device instance name */
  
  	int port_count;
  	int adapter_num;
  	int port_num;
  
  	struct _synclinkmp_info *port_array[SCA_MAX_PORTS];
  
  	unsigned int bus_type;			/* expansion bus type (ISA,EISA,PCI) */
  
  	unsigned int irq_level;			/* interrupt level */
  	unsigned long irq_flags;
0fab6de09   Joe Perches   synclink drivers ...
229
  	bool irq_requested;			/* true if IRQ requested */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
230
231
232
233
  
  	MGSL_PARAMS params;			/* communications parameters */
  
  	unsigned char serial_signals;		/* current serial signal states */
0fab6de09   Joe Perches   synclink drivers ...
234
  	bool irq_occurred;			/* for diagnostics use */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
240
241
242
243
244
  	unsigned int init_error;		/* Initialization startup error */
  
  	u32 last_mem_alloc;
  	unsigned char* memory_base;		/* shared memory address (PCI only) */
  	u32 phys_memory_base;
      	int shared_mem_requested;
  
  	unsigned char* sca_base;		/* HD64570 SCA Memory address */
  	u32 phys_sca_base;
  	u32 sca_offset;
0fab6de09   Joe Perches   synclink drivers ...
245
  	bool sca_base_requested;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
246
247
248
249
250
251
252
253
254
  
  	unsigned char* lcr_base;		/* local config registers (PCI only) */
  	u32 phys_lcr_base;
  	u32 lcr_offset;
  	int lcr_mem_requested;
  
  	unsigned char* statctrl_base;		/* status/control register memory */
  	u32 phys_statctrl_base;
  	u32 statctrl_offset;
0fab6de09   Joe Perches   synclink drivers ...
255
  	bool sca_statctrl_requested;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
258
259
  
  	u32 misc_ctrl_value;
  	char flag_buf[MAX_ASYNC_BUFFER_SIZE];
  	char char_buf[MAX_ASYNC_BUFFER_SIZE];
0fab6de09   Joe Perches   synclink drivers ...
260
  	bool drop_rts_on_tx_done;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
263
264
265
  
  	struct	_input_signal_events	input_signal_events;
  
  	/* SPPP/Cisco HDLC device parts */
  	int netcount;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266
  	spinlock_t netlock;
af69c7f92   Paul Fulghum   [PATCH] generic H...
267
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
  	struct net_device *netdev;
  #endif
  
  } SLMP_INFO;
  
  #define MGSL_MAGIC 0x5401
  
  /*
   * define serial signal status change macros
   */
  #define	MISCSTATUS_DCD_LATCHED	(SerialSignal_DCD<<8)	/* indicates change in DCD */
  #define MISCSTATUS_RI_LATCHED	(SerialSignal_RI<<8)	/* indicates change in RI */
  #define MISCSTATUS_CTS_LATCHED	(SerialSignal_CTS<<8)	/* indicates change in CTS */
  #define MISCSTATUS_DSR_LATCHED	(SerialSignal_DSR<<8)	/* change in DSR */
  
  /* Common Register macros */
  #define LPR	0x00
  #define PABR0	0x02
  #define PABR1	0x03
  #define WCRL	0x04
  #define WCRM	0x05
  #define WCRH	0x06
  #define DPCR	0x08
  #define DMER	0x09
  #define ISR0	0x10
  #define ISR1	0x11
  #define ISR2	0x12
  #define IER0	0x14
  #define IER1	0x15
  #define IER2	0x16
  #define ITCR	0x18
  #define INTVR 	0x1a
  #define IMVR	0x1c
  
  /* MSCI Register macros */
  #define TRB	0x20
  #define TRBL	0x20
  #define TRBH	0x21
  #define SR0	0x22
  #define SR1	0x23
  #define SR2	0x24
  #define SR3	0x25
  #define FST	0x26
  #define IE0	0x28
  #define IE1	0x29
  #define IE2	0x2a
  #define FIE	0x2b
  #define CMD	0x2c
  #define MD0	0x2e
  #define MD1	0x2f
  #define MD2	0x30
  #define CTL	0x31
  #define SA0	0x32
  #define SA1	0x33
  #define IDL	0x34
  #define TMC	0x35
  #define RXS	0x36
  #define TXS	0x37
  #define TRC0	0x38
  #define TRC1	0x39
  #define RRC	0x3a
  #define CST0	0x3c
  #define CST1	0x3d
  
  /* Timer Register Macros */
  #define TCNT	0x60
  #define TCNTL	0x60
  #define TCNTH	0x61
  #define TCONR	0x62
  #define TCONRL	0x62
  #define TCONRH	0x63
  #define TMCS	0x64
  #define TEPR	0x65
  
  /* DMA Controller Register macros */
  #define DARL	0x80
  #define DARH	0x81
  #define DARB	0x82
  #define BAR	0x80
  #define BARL	0x80
  #define BARH	0x81
  #define BARB	0x82
  #define SAR	0x84
  #define SARL	0x84
  #define SARH	0x85
  #define SARB	0x86
  #define CPB	0x86
  #define CDA	0x88
  #define CDAL	0x88
  #define CDAH	0x89
  #define EDA	0x8a
  #define EDAL	0x8a
  #define EDAH	0x8b
  #define BFL	0x8c
  #define BFLL	0x8c
  #define BFLH	0x8d
  #define BCR	0x8e
  #define BCRL	0x8e
  #define BCRH	0x8f
  #define DSR	0x90
  #define DMR	0x91
  #define FCT	0x93
  #define DIR	0x94
  #define DCMD	0x95
  
  /* combine with timer or DMA register address */
  #define TIMER0	0x00
  #define TIMER1	0x08
  #define TIMER2	0x10
  #define TIMER3	0x18
  #define RXDMA 	0x00
  #define TXDMA 	0x20
  
  /* SCA Command Codes */
  #define NOOP		0x00
  #define TXRESET		0x01
  #define TXENABLE	0x02
  #define TXDISABLE	0x03
  #define TXCRCINIT	0x04
  #define TXCRCEXCL	0x05
  #define TXEOM		0x06
  #define TXABORT		0x07
  #define MPON		0x08
  #define TXBUFCLR	0x09
  #define RXRESET		0x11
  #define RXENABLE	0x12
  #define RXDISABLE	0x13
  #define RXCRCINIT	0x14
  #define RXREJECT	0x15
  #define SEARCHMP	0x16
  #define RXCRCEXCL	0x17
  #define RXCRCCALC	0x18
  #define CHRESET		0x21
  #define HUNT		0x31
  
  /* DMA command codes */
  #define SWABORT		0x01
  #define FEICLEAR	0x02
  
  /* IE0 */
  #define TXINTE 		BIT7
  #define RXINTE 		BIT6
  #define TXRDYE 		BIT1
  #define RXRDYE 		BIT0
  
  /* IE1 & SR1 */
  #define UDRN   	BIT7
  #define IDLE   	BIT6
  #define SYNCD  	BIT4
  #define FLGD   	BIT4
  #define CCTS   	BIT3
  #define CDCD   	BIT2
  #define BRKD   	BIT1
  #define ABTD   	BIT1
  #define GAPD   	BIT1
  #define BRKE   	BIT0
  #define IDLD	BIT0
  
  /* IE2 & SR2 */
  #define EOM	BIT7
  #define PMP	BIT6
  #define SHRT	BIT6
  #define PE	BIT5
  #define ABT	BIT5
  #define FRME	BIT4
  #define RBIT	BIT4
  #define OVRN	BIT3
  #define CRCE	BIT2
  
  
  /*
   * Global linked list of SyncLink devices
   */
  static SLMP_INFO *synclinkmp_device_list = NULL;
  static int synclinkmp_adapter_count = -1;
  static int synclinkmp_device_count = 0;
  
  /*
   * Set this param to non-zero to load eax with the
   * .text section address and breakpoint on module load.
   * This is useful for use with gdb and add-symbol-file command.
   */
90ab5ee94   Rusty Russell   module_param: mak...
450
  static bool break_on_load = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
451
452
453
454
455
  
  /*
   * Driver major number, defaults to zero to get auto
   * assigned major number. May be forced as module parameter.
   */
8fb06c771   Alan Cox   synclink: use tty...
456
  static int ttymajor = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
457
458
459
460
461
462
  
  /*
   * Array of user specified options for ISA adapters.
   */
  static int debug_level = 0;
  static int maxframe[MAX_DEVICES] = {0,};
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
463
464
465
466
467
  
  module_param(break_on_load, bool, 0);
  module_param(ttymajor, int, 0);
  module_param(debug_level, int, 0);
  module_param_array(maxframe, int, NULL, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
468
469
  
  static char *driver_name = "SyncLink MultiPort driver";
7f3edb945   Paul Fulghum   [PATCH] synclinkm...
470
  static char *driver_version = "$Revision: 4.38 $";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
  
  static int synclinkmp_init_one(struct pci_dev *dev,const struct pci_device_id *ent);
  static void synclinkmp_remove_one(struct pci_dev *dev);
  
  static struct pci_device_id synclinkmp_pci_tbl[] = {
  	{ PCI_VENDOR_ID_MICROGATE, PCI_DEVICE_ID_MICROGATE_SCA, PCI_ANY_ID, PCI_ANY_ID, },
  	{ 0, }, /* terminate list */
  };
  MODULE_DEVICE_TABLE(pci, synclinkmp_pci_tbl);
  
  MODULE_LICENSE("GPL");
  
  static struct pci_driver synclinkmp_pci_driver = {
  	.name		= "synclinkmp",
  	.id_table	= synclinkmp_pci_tbl,
  	.probe		= synclinkmp_init_one,
  	.remove		= __devexit_p(synclinkmp_remove_one),
  };
  
  
  static struct tty_driver *serial_driver;
  
  /* number of characters left in xmit buffer before we ask for more */
  #define WAKEUP_CHARS 256
  
  
  /* tty callbacks */
  
  static int  open(struct tty_struct *tty, struct file * filp);
  static void close(struct tty_struct *tty, struct file * filp);
  static void hangup(struct tty_struct *tty);
606d099cd   Alan Cox   [PATCH] tty: swit...
502
  static void set_termios(struct tty_struct *tty, struct ktermios *old_termios);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
503
504
  
  static int  write(struct tty_struct *tty, const unsigned char *buf, int count);
55da77899   Alan Cox   synclink series: ...
505
  static int put_char(struct tty_struct *tty, unsigned char ch);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
506
507
508
509
510
511
512
  static void send_xchar(struct tty_struct *tty, char ch);
  static void wait_until_sent(struct tty_struct *tty, int timeout);
  static int  write_room(struct tty_struct *tty);
  static void flush_chars(struct tty_struct *tty);
  static void flush_buffer(struct tty_struct *tty);
  static void tx_hold(struct tty_struct *tty);
  static void tx_release(struct tty_struct *tty);
6caa76b77   Alan Cox   tty: now phase ou...
513
  static int  ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
514
515
516
  static int  chars_in_buffer(struct tty_struct *tty);
  static void throttle(struct tty_struct * tty);
  static void unthrottle(struct tty_struct * tty);
9e98966c7   Alan Cox   tty: rework break...
517
  static int set_break(struct tty_struct *tty, int break_state);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
518

af69c7f92   Paul Fulghum   [PATCH] generic H...
519
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
  #define dev_to_port(D) (dev_to_hdlc(D)->priv)
  static void hdlcdev_tx_done(SLMP_INFO *info);
  static void hdlcdev_rx(SLMP_INFO *info, char *buf, int size);
  static int  hdlcdev_init(SLMP_INFO *info);
  static void hdlcdev_exit(SLMP_INFO *info);
  #endif
  
  /* ioctl handlers */
  
  static int  get_stats(SLMP_INFO *info, struct mgsl_icount __user *user_icount);
  static int  get_params(SLMP_INFO *info, MGSL_PARAMS __user *params);
  static int  set_params(SLMP_INFO *info, MGSL_PARAMS __user *params);
  static int  get_txidle(SLMP_INFO *info, int __user *idle_mode);
  static int  set_txidle(SLMP_INFO *info, int idle_mode);
  static int  tx_enable(SLMP_INFO *info, int enable);
  static int  tx_abort(SLMP_INFO *info);
  static int  rx_enable(SLMP_INFO *info, int enable);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
537
538
  static int  modem_input_wait(SLMP_INFO *info,int arg);
  static int  wait_mgsl_event(SLMP_INFO *info, int __user *mask_ptr);
60b33c133   Alan Cox   tiocmget: kill of...
539
  static int  tiocmget(struct tty_struct *tty);
20b9d1771   Alan Cox   tiocmset: kill th...
540
541
  static int  tiocmset(struct tty_struct *tty,
  			unsigned int set, unsigned int clear);
9e98966c7   Alan Cox   tty: rework break...
542
  static int  set_break(struct tty_struct *tty, int break_state);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
543
544
545
546
547
548
549
550
  
  static void add_device(SLMP_INFO *info);
  static void device_init(int adapter_num, struct pci_dev *pdev);
  static int  claim_resources(SLMP_INFO *info);
  static void release_resources(SLMP_INFO *info);
  
  static int  startup(SLMP_INFO *info);
  static int  block_til_ready(struct tty_struct *tty, struct file * filp,SLMP_INFO *info);
31f35939d   Alan Cox   tty_port: Add a p...
551
  static int carrier_raised(struct tty_port *port);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
552
553
554
  static void shutdown(SLMP_INFO *info);
  static void program_hw(SLMP_INFO *info);
  static void change_params(SLMP_INFO *info);
0fab6de09   Joe Perches   synclink drivers ...
555
556
557
558
  static bool init_adapter(SLMP_INFO *info);
  static bool register_test(SLMP_INFO *info);
  static bool irq_test(SLMP_INFO *info);
  static bool loopback_test(SLMP_INFO *info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
559
  static int  adapter_test(SLMP_INFO *info);
0fab6de09   Joe Perches   synclink drivers ...
560
  static bool memory_test(SLMP_INFO *info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
561
562
563
564
565
566
567
568
569
570
  
  static void reset_adapter(SLMP_INFO *info);
  static void reset_port(SLMP_INFO *info);
  static void async_mode(SLMP_INFO *info);
  static void hdlc_mode(SLMP_INFO *info);
  
  static void rx_stop(SLMP_INFO *info);
  static void rx_start(SLMP_INFO *info);
  static void rx_reset_buffers(SLMP_INFO *info);
  static void rx_free_frame_buffers(SLMP_INFO *info, unsigned int first, unsigned int last);
0fab6de09   Joe Perches   synclink drivers ...
571
  static bool rx_get_frame(SLMP_INFO *info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
572
573
574
575
576
577
578
579
580
581
582
583
584
  
  static void tx_start(SLMP_INFO *info);
  static void tx_stop(SLMP_INFO *info);
  static void tx_load_fifo(SLMP_INFO *info);
  static void tx_set_idle(SLMP_INFO *info);
  static void tx_load_dma_buffer(SLMP_INFO *info, const char *buf, unsigned int count);
  
  static void get_signals(SLMP_INFO *info);
  static void set_signals(SLMP_INFO *info);
  static void enable_loopback(SLMP_INFO *info, int enable);
  static void set_rate(SLMP_INFO *info, u32 data_rate);
  
  static int  bh_action(SLMP_INFO *info);
c4028958b   David Howells   WorkStruct: make ...
585
  static void bh_handler(struct work_struct *work);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
  static void bh_receive(SLMP_INFO *info);
  static void bh_transmit(SLMP_INFO *info);
  static void bh_status(SLMP_INFO *info);
  static void isr_timer(SLMP_INFO *info);
  static void isr_rxint(SLMP_INFO *info);
  static void isr_rxrdy(SLMP_INFO *info);
  static void isr_txint(SLMP_INFO *info);
  static void isr_txrdy(SLMP_INFO *info);
  static void isr_rxdmaok(SLMP_INFO *info);
  static void isr_rxdmaerror(SLMP_INFO *info);
  static void isr_txdmaok(SLMP_INFO *info);
  static void isr_txdmaerror(SLMP_INFO *info);
  static void isr_io_pin(SLMP_INFO *info, u16 status);
  
  static int  alloc_dma_bufs(SLMP_INFO *info);
  static void free_dma_bufs(SLMP_INFO *info);
  static int  alloc_buf_list(SLMP_INFO *info);
  static int  alloc_frame_bufs(SLMP_INFO *info, SCADESC *list, SCADESC_EX *list_ex,int count);
  static int  alloc_tmp_rx_buf(SLMP_INFO *info);
  static void free_tmp_rx_buf(SLMP_INFO *info);
  
  static void load_pci_memory(SLMP_INFO *info, char* dest, const char* src, unsigned short count);
  static void trace_block(SLMP_INFO *info, const char* data, int count, int xmit);
  static void tx_timeout(unsigned long context);
  static void status_timeout(unsigned long context);
  
  static unsigned char read_reg(SLMP_INFO *info, unsigned char addr);
  static void write_reg(SLMP_INFO *info, unsigned char addr, unsigned char val);
  static u16 read_reg16(SLMP_INFO *info, unsigned char addr);
  static void write_reg16(SLMP_INFO *info, unsigned char addr, u16 val);
  static unsigned char read_status_reg(SLMP_INFO * info);
  static void write_control_reg(SLMP_INFO * info);
  
  
  static unsigned char rx_active_fifo_level = 16;	// rx request FIFO activation level in bytes
  static unsigned char tx_active_fifo_level = 16;	// tx request FIFO activation level in bytes
  static unsigned char tx_negate_fifo_level = 32;	// tx request FIFO negation level in bytes
  
  static u32 misc_ctrl_value = 0x007e4040;
761a444d8   Paul Fulghum   [PATCH] synclinkm...
625
  static u32 lcr1_brdr_value = 0x00800028;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
  
  static u32 read_ahead_count = 8;
  
  /* DPCR, DMA Priority Control
   *
   * 07..05  Not used, must be 0
   * 04      BRC, bus release condition: 0=all transfers complete
   *              1=release after 1 xfer on all channels
   * 03      CCC, channel change condition: 0=every cycle
   *              1=after each channel completes all xfers
   * 02..00  PR<2..0>, priority 100=round robin
   *
   * 00000100 = 0x00
   */
  static unsigned char dma_priority = 0x04;
  
  // Number of bytes that can be written to shared RAM
  // in a single write operation
  static u32 sca_pci_load_interval = 64;
  
  /*
   * 1st function defined in .text section. Calling this function in
   * init_module() followed by a breakpoint allows a remote debugger
   * (gdb) to get the .text address for the add-symbol-file command.
   * This allows remote debugging of dynamically loadable modules.
   */
  static void* synclinkmp_get_text_ptr(void);
  static void* synclinkmp_get_text_ptr(void) {return synclinkmp_get_text_ptr;}
  
  static inline int sanity_check(SLMP_INFO *info,
  			       char *name, const char *routine)
  {
  #ifdef SANITY_CHECK
  	static const char *badmagic =
  		"Warning: bad magic number for synclinkmp_struct (%s) in %s
  ";
  	static const char *badinfo =
  		"Warning: null synclinkmp_struct for (%s) in %s
  ";
  
  	if (!info) {
  		printk(badinfo, name, routine);
  		return 1;
  	}
  	if (info->magic != MGSL_MAGIC) {
  		printk(badmagic, name, routine);
  		return 1;
  	}
  #else
  	if (!info)
  		return 1;
  #endif
  	return 0;
  }
  
  /**
   * line discipline callback wrappers
   *
   * The wrappers maintain line discipline references
   * while calling into the line discipline.
   *
   * ldisc_receive_buf  - pass receive data to line discipline
   */
  
  static void ldisc_receive_buf(struct tty_struct *tty,
  			      const __u8 *data, char *flags, int count)
  {
  	struct tty_ldisc *ld;
  	if (!tty)
  		return;
  	ld = tty_ldisc_ref(tty);
  	if (ld) {
a352def21   Alan Cox   tty: Ldisc revamp
698
699
  		if (ld->ops->receive_buf)
  			ld->ops->receive_buf(tty, data, flags, count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
  		tty_ldisc_deref(ld);
  	}
  }
  
  /* tty callbacks */
  
  /* Called when a port is opened.  Init and enable port.
   */
  static int open(struct tty_struct *tty, struct file *filp)
  {
  	SLMP_INFO *info;
  	int retval, line;
  	unsigned long flags;
  
  	line = tty->index;
  	if ((line < 0) || (line >= synclinkmp_device_count)) {
  		printk("%s(%d): open with invalid line #%d.
  ",
  			__FILE__,__LINE__,line);
  		return -ENODEV;
  	}
  
  	info = synclinkmp_device_list;
  	while(info && info->line != line)
  		info = info->next_device;
  	if (sanity_check(info, tty->name, "open"))
  		return -ENODEV;
  	if ( info->init_error ) {
  		printk("%s(%d):%s device is not allocated, init error=%d
  ",
  			__FILE__,__LINE__,info->device_name,info->init_error);
  		return -ENODEV;
  	}
  
  	tty->driver_data = info;
8fb06c771   Alan Cox   synclink: use tty...
735
  	info->port.tty = tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
736
737
738
739
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s open(), old ref count = %d
  ",
8fb06c771   Alan Cox   synclink: use tty...
740
  			 __FILE__,__LINE__,tty->driver->name, info->port.count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
741
742
  
  	/* If port is closing, signal caller to try again */
8fb06c771   Alan Cox   synclink: use tty...
743
744
745
746
  	if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING){
  		if (info->port.flags & ASYNC_CLOSING)
  			interruptible_sleep_on(&info->port.close_wait);
  		retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
747
748
749
  			-EAGAIN : -ERESTARTSYS);
  		goto cleanup;
  	}
8fb06c771   Alan Cox   synclink: use tty...
750
  	info->port.tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
751
752
753
754
755
756
757
  
  	spin_lock_irqsave(&info->netlock, flags);
  	if (info->netcount) {
  		retval = -EBUSY;
  		spin_unlock_irqrestore(&info->netlock, flags);
  		goto cleanup;
  	}
8fb06c771   Alan Cox   synclink: use tty...
758
  	info->port.count++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
759
  	spin_unlock_irqrestore(&info->netlock, flags);
8fb06c771   Alan Cox   synclink: use tty...
760
  	if (info->port.count == 1) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
  		/* 1st open on this device, init hardware */
  		retval = startup(info);
  		if (retval < 0)
  			goto cleanup;
  	}
  
  	retval = block_til_ready(tty, filp, info);
  	if (retval) {
  		if (debug_level >= DEBUG_LEVEL_INFO)
  			printk("%s(%d):%s block_til_ready() returned %d
  ",
  				 __FILE__,__LINE__, info->device_name, retval);
  		goto cleanup;
  	}
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s open() success
  ",
  			 __FILE__,__LINE__, info->device_name);
  	retval = 0;
  
  cleanup:
  	if (retval) {
  		if (tty->count == 1)
8fb06c771   Alan Cox   synclink: use tty...
785
786
787
  			info->port.tty = NULL; /* tty layer will release tty struct */
  		if(info->port.count)
  			info->port.count--;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
788
789
790
791
792
793
794
795
796
797
  	}
  
  	return retval;
  }
  
  /* Called when port is closed. Wait for remaining data to be
   * sent. Disable port and free resources.
   */
  static void close(struct tty_struct *tty, struct file *filp)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
798
  	SLMP_INFO * info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
799
800
801
802
803
804
805
  
  	if (sanity_check(info, tty->name, "close"))
  		return;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s close() entry, count=%d
  ",
8fb06c771   Alan Cox   synclink: use tty...
806
  			 __FILE__,__LINE__, info->device_name, info->port.count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
807

a6614999e   Alan Cox   tty: Introduce so...
808
  	if (tty_port_close_start(&info->port, tty, filp) == 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
809
  		goto cleanup;
a360fae67   Alan Cox   synclink: reworki...
810
811
  
  	mutex_lock(&info->port.mutex);
8fb06c771   Alan Cox   synclink: use tty...
812
   	if (info->port.flags & ASYNC_INITIALIZED)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
813
   		wait_until_sent(tty, info->timeout);
978e595f8   Alan Cox   tty/serial: lay t...
814
  	flush_buffer(tty);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
815
  	tty_ldisc_flush(tty);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
816
  	shutdown(info);
a360fae67   Alan Cox   synclink: reworki...
817
  	mutex_unlock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
818

a6614999e   Alan Cox   tty: Introduce so...
819
  	tty_port_close_end(&info->port, tty);
8fb06c771   Alan Cox   synclink: use tty...
820
  	info->port.tty = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
821
822
823
824
  cleanup:
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s close() exit, count=%d
  ", __FILE__,__LINE__,
8fb06c771   Alan Cox   synclink: use tty...
825
  			tty->driver->name, info->port.count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
826
827
828
829
830
831
832
  }
  
  /* Called by tty_hangup() when a hangup is signaled.
   * This is the same as closing all open descriptors for the port.
   */
  static void hangup(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
833
  	SLMP_INFO *info = tty->driver_data;
a360fae67   Alan Cox   synclink: reworki...
834
  	unsigned long flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
835
836
837
838
839
840
841
842
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s hangup()
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	if (sanity_check(info, tty->name, "hangup"))
  		return;
a360fae67   Alan Cox   synclink: reworki...
843
  	mutex_lock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
844
845
  	flush_buffer(tty);
  	shutdown(info);
a360fae67   Alan Cox   synclink: reworki...
846
  	spin_lock_irqsave(&info->port.lock, flags);
8fb06c771   Alan Cox   synclink: use tty...
847
848
849
  	info->port.count = 0;
  	info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
  	info->port.tty = NULL;
a360fae67   Alan Cox   synclink: reworki...
850
851
  	spin_unlock_irqrestore(&info->port.lock, flags);
  	mutex_unlock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
852

8fb06c771   Alan Cox   synclink: use tty...
853
  	wake_up_interruptible(&info->port.open_wait);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
854
855
856
857
  }
  
  /* Set new termios settings
   */
606d099cd   Alan Cox   [PATCH] tty: swit...
858
  static void set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
859
  {
c9f19e96a   Alan Cox   tty: Remove some ...
860
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
861
862
863
864
865
866
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s set_termios()
  ", __FILE__,__LINE__,
  			tty->driver->name );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
  	change_params(info);
  
  	/* Handle transition to B0 status */
  	if (old_termios->c_cflag & CBAUD &&
  	    !(tty->termios->c_cflag & CBAUD)) {
  		info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
  		spin_lock_irqsave(&info->lock,flags);
  	 	set_signals(info);
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  
  	/* Handle transition away from B0 status */
  	if (!(old_termios->c_cflag & CBAUD) &&
  	    tty->termios->c_cflag & CBAUD) {
  		info->serial_signals |= SerialSignal_DTR;
   		if (!(tty->termios->c_cflag & CRTSCTS) ||
   		    !test_bit(TTY_THROTTLED, &tty->flags)) {
  			info->serial_signals |= SerialSignal_RTS;
   		}
  		spin_lock_irqsave(&info->lock,flags);
  	 	set_signals(info);
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  
  	/* Handle turning off CRTSCTS */
  	if (old_termios->c_cflag & CRTSCTS &&
  	    !(tty->termios->c_cflag & CRTSCTS)) {
  		tty->hw_stopped = 0;
  		tx_release(tty);
  	}
  }
  
  /* Send a block of data
   *
   * Arguments:
   *
   * 	tty		pointer to tty information structure
   * 	buf		pointer to buffer containing send data
   * 	count		size of send data in bytes
   *
   * Return Value:	number of characters written
   */
  static int write(struct tty_struct *tty,
  		 const unsigned char *buf, int count)
  {
  	int	c, ret = 0;
c9f19e96a   Alan Cox   tty: Remove some ...
913
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
914
915
916
917
918
919
920
921
922
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s write() count=%d
  ",
  		       __FILE__,__LINE__,info->device_name,count);
  
  	if (sanity_check(info, tty->name, "write"))
  		goto cleanup;
326f28e9e   Eric Sesterhenn   [PATCH] More !tty...
923
  	if (!info->tx_buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
  		goto cleanup;
  
  	if (info->params.mode == MGSL_MODE_HDLC) {
  		if (count > info->max_frame_size) {
  			ret = -EIO;
  			goto cleanup;
  		}
  		if (info->tx_active)
  			goto cleanup;
  		if (info->tx_count) {
  			/* send accumulated data from send_char() calls */
  			/* as frame and wait before accepting more data. */
  			tx_load_dma_buffer(info, info->tx_buf, info->tx_count);
  			goto start;
  		}
  		ret = info->tx_count = count;
  		tx_load_dma_buffer(info, buf, count);
  		goto start;
  	}
  
  	for (;;) {
  		c = min_t(int, count,
  			min(info->max_frame_size - info->tx_count - 1,
  			    info->max_frame_size - info->tx_put));
  		if (c <= 0)
  			break;
  			
  		memcpy(info->tx_buf + info->tx_put, buf, c);
  
  		spin_lock_irqsave(&info->lock,flags);
  		info->tx_put += c;
  		if (info->tx_put >= info->max_frame_size)
  			info->tx_put -= info->max_frame_size;
  		info->tx_count += c;
  		spin_unlock_irqrestore(&info->lock,flags);
  
  		buf += c;
  		count -= c;
  		ret += c;
  	}
  
  	if (info->params.mode == MGSL_MODE_HDLC) {
  		if (count) {
  			ret = info->tx_count = 0;
  			goto cleanup;
  		}
  		tx_load_dma_buffer(info, info->tx_buf, info->tx_count);
  	}
  start:
   	if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
  		spin_lock_irqsave(&info->lock,flags);
  		if (!info->tx_active)
  		 	tx_start(info);
  		spin_unlock_irqrestore(&info->lock,flags);
   	}
  
  cleanup:
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk( "%s(%d):%s write() returning=%d
  ",
  			__FILE__,__LINE__,info->device_name,ret);
  	return ret;
  }
  
  /* Add a character to the transmit buffer.
   */
55da77899   Alan Cox   synclink series: ...
990
  static int put_char(struct tty_struct *tty, unsigned char ch)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
991
  {
c9f19e96a   Alan Cox   tty: Remove some ...
992
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
993
  	unsigned long flags;
55da77899   Alan Cox   synclink series: ...
994
  	int ret = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
995
996
997
998
999
1000
1001
1002
  
  	if ( debug_level >= DEBUG_LEVEL_INFO ) {
  		printk( "%s(%d):%s put_char(%d)
  ",
  			__FILE__,__LINE__,info->device_name,ch);
  	}
  
  	if (sanity_check(info, tty->name, "put_char"))
55da77899   Alan Cox   synclink series: ...
1003
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1004

326f28e9e   Eric Sesterhenn   [PATCH] More !tty...
1005
  	if (!info->tx_buf)
55da77899   Alan Cox   synclink series: ...
1006
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	if ( (info->params.mode != MGSL_MODE_HDLC) ||
  	     !info->tx_active ) {
  
  		if (info->tx_count < info->max_frame_size - 1) {
  			info->tx_buf[info->tx_put++] = ch;
  			if (info->tx_put >= info->max_frame_size)
  				info->tx_put -= info->max_frame_size;
  			info->tx_count++;
55da77899   Alan Cox   synclink series: ...
1018
  			ret = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1019
1020
1021
1022
  		}
  	}
  
  	spin_unlock_irqrestore(&info->lock,flags);
55da77899   Alan Cox   synclink series: ...
1023
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1024
1025
1026
1027
1028
1029
  }
  
  /* Send a high-priority XON/XOFF character
   */
  static void send_xchar(struct tty_struct *tty, char ch)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1030
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s send_xchar(%d)
  ",
  			 __FILE__,__LINE__, info->device_name, ch );
  
  	if (sanity_check(info, tty->name, "send_xchar"))
  		return;
  
  	info->x_char = ch;
  	if (ch) {
  		/* Make sure transmit interrupts are on */
  		spin_lock_irqsave(&info->lock,flags);
  		if (!info->tx_enabled)
  		 	tx_start(info);
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  }
  
  /* Wait until the transmitter is empty.
   */
  static void wait_until_sent(struct tty_struct *tty, int timeout)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1055
  	SLMP_INFO * info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
  	unsigned long orig_jiffies, char_time;
  
  	if (!info )
  		return;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s wait_until_sent() entry
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	if (sanity_check(info, tty->name, "wait_until_sent"))
  		return;
f602501d9   Alan Cox   synclink: kill th...
1068
  	if (!test_bit(ASYNCB_INITIALIZED, &info->port.flags))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
  		goto exit;
  
  	orig_jiffies = jiffies;
  
  	/* Set check interval to 1/5 of estimated time to
  	 * send a character, and make it at least 1. The check
  	 * interval should also be less than the timeout.
  	 * Note: use tight timings here to satisfy the NIST-PCTS.
  	 */
  
  	if ( info->params.data_rate ) {
  	       	char_time = info->timeout/(32 * 5);
  		if (!char_time)
  			char_time++;
  	} else
  		char_time = 1;
  
  	if (timeout)
  		char_time = min_t(unsigned long, char_time, timeout);
  
  	if ( info->params.mode == MGSL_MODE_HDLC ) {
  		while (info->tx_active) {
  			msleep_interruptible(jiffies_to_msecs(char_time));
  			if (signal_pending(current))
  				break;
  			if (timeout && time_after(jiffies, orig_jiffies + timeout))
  				break;
  		}
  	} else {
f602501d9   Alan Cox   synclink: kill th...
1098
1099
1100
1101
  		/*
  		 * TODO: determine if there is something similar to USC16C32
  		 * 	 TXSTATUS_ALL_SENT status
  		 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
  		while ( info->tx_active && info->tx_enabled) {
  			msleep_interruptible(jiffies_to_msecs(char_time));
  			if (signal_pending(current))
  				break;
  			if (timeout && time_after(jiffies, orig_jiffies + timeout))
  				break;
  		}
  	}
  
  exit:
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s wait_until_sent() exit
  ",
  			 __FILE__,__LINE__, info->device_name );
  }
  
  /* Return the count of free bytes in transmit buffer
   */
  static int write_room(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1122
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
  	int ret;
  
  	if (sanity_check(info, tty->name, "write_room"))
  		return 0;
  
  	if (info->params.mode == MGSL_MODE_HDLC) {
  		ret = (info->tx_active) ? 0 : HDLC_MAX_FRAME_SIZE;
  	} else {
  		ret = info->max_frame_size - info->tx_count - 1;
  		if (ret < 0)
  			ret = 0;
  	}
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s write_room()=%d
  ",
  		       __FILE__, __LINE__, info->device_name, ret);
  
  	return ret;
  }
  
  /* enable transmitter and send remaining buffered characters
   */
  static void flush_chars(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1148
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
  	unsigned long flags;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):%s flush_chars() entry tx_count=%d
  ",
  			__FILE__,__LINE__,info->device_name,info->tx_count);
  
  	if (sanity_check(info, tty->name, "flush_chars"))
  		return;
  
  	if (info->tx_count <= 0 || tty->stopped || tty->hw_stopped ||
  	    !info->tx_buf)
  		return;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):%s flush_chars() entry, starting transmitter
  ",
  			__FILE__,__LINE__,info->device_name );
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	if (!info->tx_active) {
  		if ( (info->params.mode == MGSL_MODE_HDLC) &&
  			info->tx_count ) {
  			/* operating in synchronous (frame oriented) mode */
  			/* copy data from circular tx_buf to */
  			/* transmit DMA buffer. */
  			tx_load_dma_buffer(info,
  				 info->tx_buf,info->tx_count);
  		}
  	 	tx_start(info);
  	}
  
  	spin_unlock_irqrestore(&info->lock,flags);
  }
  
  /* Discard all data in the send buffer
   */
  static void flush_buffer(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1189
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s flush_buffer() entry
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	if (sanity_check(info, tty->name, "flush_buffer"))
  		return;
  
  	spin_lock_irqsave(&info->lock,flags);
  	info->tx_count = info->tx_put = info->tx_get = 0;
  	del_timer(&info->tx_timer);
  	spin_unlock_irqrestore(&info->lock,flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1204
1205
1206
1207
1208
1209
1210
  	tty_wakeup(tty);
  }
  
  /* throttle (stop) transmitter
   */
  static void tx_hold(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1211
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
  	unsigned long flags;
  
  	if (sanity_check(info, tty->name, "tx_hold"))
  		return;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk("%s(%d):%s tx_hold()
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	spin_lock_irqsave(&info->lock,flags);
  	if (info->tx_enabled)
  	 	tx_stop(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  }
  
  /* release (start) transmitter
   */
  static void tx_release(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1232
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
  	unsigned long flags;
  
  	if (sanity_check(info, tty->name, "tx_release"))
  		return;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk("%s(%d):%s tx_release()
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	spin_lock_irqsave(&info->lock,flags);
  	if (!info->tx_enabled)
  	 	tx_start(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  }
  
  /* Service an IOCTL request
   *
   * Arguments:
   *
   * 	tty	pointer to tty instance data
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1254
1255
1256
1257
1258
   * 	cmd	IOCTL command code
   * 	arg	command argument/context
   *
   * Return Value:	0 if success, otherwise error code
   */
6caa76b77   Alan Cox   tty: now phase ou...
1259
  static int ioctl(struct tty_struct *tty,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1260
1261
  		 unsigned int cmd, unsigned long arg)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1262
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
  	void __user *argp = (void __user *)arg;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s ioctl() cmd=%08X
  ", __FILE__,__LINE__,
  			info->device_name, cmd );
  
  	if (sanity_check(info, tty->name, "ioctl"))
  		return -ENODEV;
  
  	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
0587102cf   Alan Cox   tty: icount chang...
1274
  	    (cmd != TIOCMIWAIT)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
  		if (tty->flags & (1 << TTY_IO_ERROR))
  		    return -EIO;
  	}
  
  	switch (cmd) {
  	case MGSL_IOCGPARAMS:
  		return get_params(info, argp);
  	case MGSL_IOCSPARAMS:
  		return set_params(info, argp);
  	case MGSL_IOCGTXIDLE:
  		return get_txidle(info, argp);
  	case MGSL_IOCSTXIDLE:
  		return set_txidle(info, (int)arg);
  	case MGSL_IOCTXENABLE:
  		return tx_enable(info, (int)arg);
  	case MGSL_IOCRXENABLE:
  		return rx_enable(info, (int)arg);
  	case MGSL_IOCTXABORT:
  		return tx_abort(info);
  	case MGSL_IOCGSTATS:
  		return get_stats(info, argp);
  	case MGSL_IOCWAITEVENT:
  		return wait_mgsl_event(info, argp);
  	case MGSL_IOCLOOPTXDONE:
  		return 0; // TODO: Not supported, need to document
  		/* Wait for modem input (DCD,RI,DSR,CTS) change
  		 * as specified by mask in arg (TIOCM_RNG/DSR/CD/CTS)
  		 */
  	case TIOCMIWAIT:
  		return modem_input_wait(info,(int)arg);
  		
  		/*
  		 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
  		 * Return: write counters to the user passed counter struct
  		 * NB: both 1->0 and 0->1 transitions are counted except for
  		 *     RI where only 0->1 is counted.
  		 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1312
1313
1314
1315
1316
  	default:
  		return -ENOIOCTLCMD;
  	}
  	return 0;
  }
0587102cf   Alan Cox   tty: icount chang...
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
  static int get_icount(struct tty_struct *tty,
  				struct serial_icounter_struct *icount)
  {
  	SLMP_INFO *info = tty->driver_data;
  	struct mgsl_icount cnow;	/* kernel counter temps */
  	unsigned long flags;
  
  	spin_lock_irqsave(&info->lock,flags);
  	cnow = info->icount;
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	icount->cts = cnow.cts;
  	icount->dsr = cnow.dsr;
  	icount->rng = cnow.rng;
  	icount->dcd = cnow.dcd;
  	icount->rx = cnow.rx;
  	icount->tx = cnow.tx;
  	icount->frame = cnow.frame;
  	icount->overrun = cnow.overrun;
  	icount->parity = cnow.parity;
  	icount->brk = cnow.brk;
  	icount->buf_overrun = cnow.buf_overrun;
  
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1342
1343
1344
  /*
   * /proc fs routines....
   */
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1345
  static inline void line_info(struct seq_file *m, SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1346
1347
  {
  	char	stat_buf[30];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1348
  	unsigned long flags;
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1349
1350
  	seq_printf(m, "%s: SCABase=%08x Mem=%08X StatusControl=%08x LCR=%08X
  "
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
  		       "\tIRQ=%d MaxFrameSize=%u
  ",
  		info->device_name,
  		info->phys_sca_base,
  		info->phys_memory_base,
  		info->phys_statctrl_base,
  		info->phys_lcr_base,
  		info->irq_level,
  		info->max_frame_size );
  
  	/* output current serial signal states */
  	spin_lock_irqsave(&info->lock,flags);
   	get_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	stat_buf[0] = 0;
  	stat_buf[1] = 0;
  	if (info->serial_signals & SerialSignal_RTS)
  		strcat(stat_buf, "|RTS");
  	if (info->serial_signals & SerialSignal_CTS)
  		strcat(stat_buf, "|CTS");
  	if (info->serial_signals & SerialSignal_DTR)
  		strcat(stat_buf, "|DTR");
  	if (info->serial_signals & SerialSignal_DSR)
  		strcat(stat_buf, "|DSR");
  	if (info->serial_signals & SerialSignal_DCD)
  		strcat(stat_buf, "|CD");
  	if (info->serial_signals & SerialSignal_RI)
  		strcat(stat_buf, "|RI");
  
  	if (info->params.mode == MGSL_MODE_HDLC) {
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1382
  		seq_printf(m, "\tHDLC txok:%d rxok:%d",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1383
1384
  			      info->icount.txok, info->icount.rxok);
  		if (info->icount.txunder)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1385
  			seq_printf(m, " txunder:%d", info->icount.txunder);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1386
  		if (info->icount.txabort)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1387
  			seq_printf(m, " txabort:%d", info->icount.txabort);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1388
  		if (info->icount.rxshort)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1389
  			seq_printf(m, " rxshort:%d", info->icount.rxshort);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1390
  		if (info->icount.rxlong)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1391
  			seq_printf(m, " rxlong:%d", info->icount.rxlong);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1392
  		if (info->icount.rxover)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1393
  			seq_printf(m, " rxover:%d", info->icount.rxover);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1394
  		if (info->icount.rxcrc)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1395
  			seq_printf(m, " rxlong:%d", info->icount.rxcrc);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1396
  	} else {
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1397
  		seq_printf(m, "\tASYNC tx:%d rx:%d",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1398
1399
  			      info->icount.tx, info->icount.rx);
  		if (info->icount.frame)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1400
  			seq_printf(m, " fe:%d", info->icount.frame);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1401
  		if (info->icount.parity)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1402
  			seq_printf(m, " pe:%d", info->icount.parity);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1403
  		if (info->icount.brk)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1404
  			seq_printf(m, " brk:%d", info->icount.brk);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1405
  		if (info->icount.overrun)
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1406
  			seq_printf(m, " oe:%d", info->icount.overrun);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1407
1408
1409
  	}
  
  	/* Append serial signal status to end */
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1410
1411
  	seq_printf(m, " %s
  ", stat_buf+1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1412

e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1413
1414
  	seq_printf(m, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1415
1416
  	 info->tx_active,info->bh_requested,info->bh_running,
  	 info->pending_bh);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1417
1418
1419
1420
  }
  
  /* Called to print information about devices
   */
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1421
  static int synclinkmp_proc_show(struct seq_file *m, void *v)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1422
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1423
  	SLMP_INFO *info;
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1424
1425
  	seq_printf(m, "synclinkmp driver:%s
  ", driver_version);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1426
1427
1428
  
  	info = synclinkmp_device_list;
  	while( info ) {
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1429
  		line_info(m, info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1430
1431
  		info = info->next_device;
  	}
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1432
1433
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1434

e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1435
1436
1437
  static int synclinkmp_proc_open(struct inode *inode, struct file *file)
  {
  	return single_open(file, synclinkmp_proc_show, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1438
  }
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
1439
1440
1441
1442
1443
1444
1445
  static const struct file_operations synclinkmp_proc_fops = {
  	.owner		= THIS_MODULE,
  	.open		= synclinkmp_proc_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
  	.release	= single_release,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1446
1447
1448
1449
  /* Return the count of bytes in transmit buffer
   */
  static int chars_in_buffer(struct tty_struct *tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1450
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
  
  	if (sanity_check(info, tty->name, "chars_in_buffer"))
  		return 0;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s chars_in_buffer()=%d
  ",
  		       __FILE__, __LINE__, info->device_name, info->tx_count);
  
  	return info->tx_count;
  }
  
  /* Signal remote device to throttle send data (our receive data)
   */
  static void throttle(struct tty_struct * tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1467
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s throttle() entry
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	if (sanity_check(info, tty->name, "throttle"))
  		return;
  
  	if (I_IXOFF(tty))
  		send_xchar(tty, STOP_CHAR(tty));
  
   	if (tty->termios->c_cflag & CRTSCTS) {
  		spin_lock_irqsave(&info->lock,flags);
  		info->serial_signals &= ~SerialSignal_RTS;
  	 	set_signals(info);
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  }
  
  /* Signal remote device to stop throttling send data (our receive data)
   */
  static void unthrottle(struct tty_struct * tty)
  {
c9f19e96a   Alan Cox   tty: Remove some ...
1493
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s unthrottle() entry
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	if (sanity_check(info, tty->name, "unthrottle"))
  		return;
  
  	if (I_IXOFF(tty)) {
  		if (info->x_char)
  			info->x_char = 0;
  		else
  			send_xchar(tty, START_CHAR(tty));
  	}
  
   	if (tty->termios->c_cflag & CRTSCTS) {
  		spin_lock_irqsave(&info->lock,flags);
  		info->serial_signals |= SerialSignal_RTS;
  	 	set_signals(info);
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  }
  
  /* set or clear transmit break condition
   * break_state	-1=set break condition, 0=clear
   */
9e98966c7   Alan Cox   tty: rework break...
1522
  static int set_break(struct tty_struct *tty, int break_state)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1523
1524
  {
  	unsigned char RegValue;
c9f19e96a   Alan Cox   tty: Remove some ...
1525
  	SLMP_INFO * info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1526
1527
1528
1529
1530
1531
1532
1533
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s set_break(%d)
  ",
  			 __FILE__,__LINE__, info->device_name, break_state);
  
  	if (sanity_check(info, tty->name, "set_break"))
9e98966c7   Alan Cox   tty: rework break...
1534
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1535
1536
1537
1538
1539
1540
1541
1542
1543
  
  	spin_lock_irqsave(&info->lock,flags);
  	RegValue = read_reg(info, CTL);
   	if (break_state == -1)
  		RegValue |= BIT3;
  	else
  		RegValue &= ~BIT3;
  	write_reg(info, CTL, RegValue);
  	spin_unlock_irqrestore(&info->lock,flags);
9e98966c7   Alan Cox   tty: rework break...
1544
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1545
  }
af69c7f92   Paul Fulghum   [PATCH] generic H...
1546
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
  
  /**
   * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
   * set encoding and frame check sequence (FCS) options
   *
   * dev       pointer to network device structure
   * encoding  serial encoding setting
   * parity    FCS setting
   *
   * returns 0 if success, otherwise error code
   */
  static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
  			  unsigned short parity)
  {
  	SLMP_INFO *info = dev_to_port(dev);
  	unsigned char  new_encoding;
  	unsigned short new_crctype;
  
  	/* return error if TTY interface open */
8fb06c771   Alan Cox   synclink: use tty...
1566
  	if (info->port.count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
  		return -EBUSY;
  
  	switch (encoding)
  	{
  	case ENCODING_NRZ:        new_encoding = HDLC_ENCODING_NRZ; break;
  	case ENCODING_NRZI:       new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
  	case ENCODING_FM_MARK:    new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
  	case ENCODING_FM_SPACE:   new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
  	case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
  	default: return -EINVAL;
  	}
  
  	switch (parity)
  	{
  	case PARITY_NONE:            new_crctype = HDLC_CRC_NONE; break;
  	case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
  	case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
  	default: return -EINVAL;
  	}
  
  	info->params.encoding = new_encoding;
53b3531bb   Alexey Dobriyan   [PATCH] s/;;/;/g
1588
  	info->params.crc_type = new_crctype;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
  
  	/* if network interface up, reprogram hardware */
  	if (info->netcount)
  		program_hw(info);
  
  	return 0;
  }
  
  /**
   * called by generic HDLC layer to send frame
   *
   * skb  socket buffer containing HDLC frame
   * dev  pointer to network device structure
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1602
   */
4c5d502d8   Stephen Hemminger   hdlc: convert to ...
1603
1604
  static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
  				      struct net_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1605
1606
  {
  	SLMP_INFO *info = dev_to_port(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk(KERN_INFO "%s:hdlc_xmit(%s)
  ",__FILE__,dev->name);
  
  	/* stop sending until this frame completes */
  	netif_stop_queue(dev);
  
  	/* copy data to device buffers */
  	info->tx_count = skb->len;
  	tx_load_dma_buffer(info, skb->data, skb->len);
  
  	/* update network statistics */
198191c4a   Krzysztof Halasa   WAN: convert driv...
1621
1622
  	dev->stats.tx_packets++;
  	dev->stats.tx_bytes += skb->len;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
  
  	/* done with socket buffer, so free it */
  	dev_kfree_skb(skb);
  
  	/* save start time for transmit timeout detection */
  	dev->trans_start = jiffies;
  
  	/* start hardware transmitter if necessary */
  	spin_lock_irqsave(&info->lock,flags);
  	if (!info->tx_active)
  	 	tx_start(info);
  	spin_unlock_irqrestore(&info->lock,flags);
4c5d502d8   Stephen Hemminger   hdlc: convert to ...
1635
  	return NETDEV_TX_OK;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
  }
  
  /**
   * called by network layer when interface enabled
   * claim resources and initialize hardware
   *
   * dev  pointer to network device structure
   *
   * returns 0 if success, otherwise error code
   */
  static int hdlcdev_open(struct net_device *dev)
  {
  	SLMP_INFO *info = dev_to_port(dev);
  	int rc;
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s:hdlcdev_open(%s)
  ",__FILE__,dev->name);
  
  	/* generic HDLC layer open processing */
  	if ((rc = hdlc_open(dev)))
  		return rc;
  
  	/* arbitrate between network and tty opens */
  	spin_lock_irqsave(&info->netlock, flags);
8fb06c771   Alan Cox   synclink: use tty...
1662
  	if (info->port.count != 0 || info->netcount != 0) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
  		printk(KERN_WARNING "%s: hdlc_open returning busy
  ", dev->name);
  		spin_unlock_irqrestore(&info->netlock, flags);
  		return -EBUSY;
  	}
  	info->netcount=1;
  	spin_unlock_irqrestore(&info->netlock, flags);
  
  	/* claim resources and init adapter */
  	if ((rc = startup(info)) != 0) {
  		spin_lock_irqsave(&info->netlock, flags);
  		info->netcount=0;
  		spin_unlock_irqrestore(&info->netlock, flags);
  		return rc;
  	}
  
  	/* assert DTR and RTS, apply hardware settings */
  	info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  	program_hw(info);
  
  	/* enable network layer transmit */
  	dev->trans_start = jiffies;
  	netif_start_queue(dev);
  
  	/* inform generic HDLC layer of current DCD status */
  	spin_lock_irqsave(&info->lock, flags);
  	get_signals(info);
  	spin_unlock_irqrestore(&info->lock, flags);
fbeff3c1d   Krzysztof Halasa   [WAN]: Converted ...
1691
1692
1693
1694
  	if (info->serial_signals & SerialSignal_DCD)
  		netif_carrier_on(dev);
  	else
  		netif_carrier_off(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
  	return 0;
  }
  
  /**
   * called by network layer when interface is disabled
   * shutdown hardware and release resources
   *
   * dev  pointer to network device structure
   *
   * returns 0 if success, otherwise error code
   */
  static int hdlcdev_close(struct net_device *dev)
  {
  	SLMP_INFO *info = dev_to_port(dev);
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s:hdlcdev_close(%s)
  ",__FILE__,dev->name);
  
  	netif_stop_queue(dev);
  
  	/* shutdown adapter and release resources */
  	shutdown(info);
  
  	hdlc_close(dev);
  
  	spin_lock_irqsave(&info->netlock, flags);
  	info->netcount=0;
  	spin_unlock_irqrestore(&info->netlock, flags);
  
  	return 0;
  }
  
  /**
   * called by network layer to process IOCTL call to network device
   *
   * dev  pointer to network device structure
   * ifr  pointer to network interface request structure
   * cmd  IOCTL command code
   *
   * returns 0 if success, otherwise error code
   */
  static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  {
  	const size_t size = sizeof(sync_serial_settings);
  	sync_serial_settings new_line;
  	sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
  	SLMP_INFO *info = dev_to_port(dev);
  	unsigned int flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s:hdlcdev_ioctl(%s)
  ",__FILE__,dev->name);
  
  	/* return error if TTY interface open */
8fb06c771   Alan Cox   synclink: use tty...
1751
  	if (info->port.count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
  		return -EBUSY;
  
  	if (cmd != SIOCWANDEV)
  		return hdlc_ioctl(dev, ifr, cmd);
  
  	switch(ifr->ifr_settings.type) {
  	case IF_GET_IFACE: /* return current sync_serial_settings */
  
  		ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
  		if (ifr->ifr_settings.size < size) {
  			ifr->ifr_settings.size = size; /* data size wanted */
  			return -ENOBUFS;
  		}
  
  		flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
  					      HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
  					      HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
  					      HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN);
  
  		switch (flags){
  		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
  		case (HDLC_FLAG_RXC_BRG    | HDLC_FLAG_TXC_BRG):    new_line.clock_type = CLOCK_INT; break;
  		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG):    new_line.clock_type = CLOCK_TXINT; break;
  		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
  		default: new_line.clock_type = CLOCK_DEFAULT;
  		}
  
  		new_line.clock_rate = info->params.clock_speed;
  		new_line.loopback   = info->params.loopback ? 1:0;
  
  		if (copy_to_user(line, &new_line, size))
  			return -EFAULT;
  		return 0;
  
  	case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
  
  		if(!capable(CAP_NET_ADMIN))
  			return -EPERM;
  		if (copy_from_user(&new_line, line, size))
  			return -EFAULT;
  
  		switch (new_line.clock_type)
  		{
  		case CLOCK_EXT:      flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
  		case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
  		case CLOCK_INT:      flags = HDLC_FLAG_RXC_BRG    | HDLC_FLAG_TXC_BRG;    break;
  		case CLOCK_TXINT:    flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG;    break;
  		case CLOCK_DEFAULT:  flags = info->params.flags &
  					     (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
  					      HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
  					      HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
  					      HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN); break;
  		default: return -EINVAL;
  		}
  
  		if (new_line.loopback != 0 && new_line.loopback != 1)
  			return -EINVAL;
  
  		info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
  					HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
  					HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
  					HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN);
  		info->params.flags |= flags;
  
  		info->params.loopback = new_line.loopback;
  
  		if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
  			info->params.clock_speed = new_line.clock_rate;
  		else
  			info->params.clock_speed = 0;
  
  		/* if network interface up, reprogram hardware */
  		if (info->netcount)
  			program_hw(info);
  		return 0;
  
  	default:
  		return hdlc_ioctl(dev, ifr, cmd);
  	}
  }
  
  /**
   * called by network layer when transmit timeout is detected
   *
   * dev  pointer to network device structure
   */
  static void hdlcdev_tx_timeout(struct net_device *dev)
  {
  	SLMP_INFO *info = dev_to_port(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1841
1842
1843
1844
1845
  	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("hdlcdev_tx_timeout(%s)
  ",dev->name);
198191c4a   Krzysztof Halasa   WAN: convert driv...
1846
1847
  	dev->stats.tx_errors++;
  	dev->stats.tx_aborted_errors++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
  
  	spin_lock_irqsave(&info->lock,flags);
  	tx_stop(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	netif_wake_queue(dev);
  }
  
  /**
   * called by device driver when transmit completes
   * reenable network layer transmit if stopped
   *
   * info  pointer to device instance information
   */
  static void hdlcdev_tx_done(SLMP_INFO *info)
  {
  	if (netif_queue_stopped(info->netdev))
  		netif_wake_queue(info->netdev);
  }
  
  /**
   * called by device driver when frame received
   * pass frame to network layer
   *
   * info  pointer to device instance information
   * buf   pointer to buffer contianing frame data
   * size  count of data bytes in buf
   */
  static void hdlcdev_rx(SLMP_INFO *info, char *buf, int size)
  {
  	struct sk_buff *skb = dev_alloc_skb(size);
  	struct net_device *dev = info->netdev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1880
1881
1882
1883
1884
1885
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("hdlcdev_rx(%s)
  ",dev->name);
  
  	if (skb == NULL) {
198191c4a   Krzysztof Halasa   WAN: convert driv...
1886
1887
1888
1889
  		printk(KERN_NOTICE "%s: can't alloc skb, dropping packet
  ",
  		       dev->name);
  		dev->stats.rx_dropped++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1890
1891
  		return;
  	}
198191c4a   Krzysztof Halasa   WAN: convert driv...
1892
  	memcpy(skb_put(skb, size), buf, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1893

198191c4a   Krzysztof Halasa   WAN: convert driv...
1894
  	skb->protocol = hdlc_type_trans(skb, dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1895

198191c4a   Krzysztof Halasa   WAN: convert driv...
1896
1897
  	dev->stats.rx_packets++;
  	dev->stats.rx_bytes += size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1898
1899
  
  	netif_rx(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1900
  }
991990a12   Krzysztof HaÅ‚asa   WAN: Convert gene...
1901
1902
1903
1904
1905
1906
1907
1908
  static const struct net_device_ops hdlcdev_ops = {
  	.ndo_open       = hdlcdev_open,
  	.ndo_stop       = hdlcdev_close,
  	.ndo_change_mtu = hdlc_change_mtu,
  	.ndo_start_xmit = hdlc_start_xmit,
  	.ndo_do_ioctl   = hdlcdev_ioctl,
  	.ndo_tx_timeout = hdlcdev_tx_timeout,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
  /**
   * called by device driver when adding device instance
   * do generic HDLC initialization
   *
   * info  pointer to device instance information
   *
   * returns 0 if success, otherwise error code
   */
  static int hdlcdev_init(SLMP_INFO *info)
  {
  	int rc;
  	struct net_device *dev;
  	hdlc_device *hdlc;
  
  	/* allocate and initialize network and HDLC layer objects */
  
  	if (!(dev = alloc_hdlcdev(info))) {
  		printk(KERN_ERR "%s:hdlc device allocation failure
  ",__FILE__);
  		return -ENOMEM;
  	}
  
  	/* for network layer reporting purposes only */
  	dev->mem_start = info->phys_sca_base;
  	dev->mem_end   = info->phys_sca_base + SCA_BASE_SIZE - 1;
  	dev->irq       = info->irq_level;
  
  	/* network layer callbacks and settings */
991990a12   Krzysztof HaÅ‚asa   WAN: Convert gene...
1937
1938
  	dev->netdev_ops	    = &hdlcdev_ops;
  	dev->watchdog_timeo = 10 * HZ;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
  	dev->tx_queue_len   = 50;
  
  	/* generic HDLC layer callbacks and settings */
  	hdlc         = dev_to_hdlc(dev);
  	hdlc->attach = hdlcdev_attach;
  	hdlc->xmit   = hdlcdev_xmit;
  
  	/* register objects with HDLC layer */
  	if ((rc = register_hdlc_device(dev))) {
  		printk(KERN_WARNING "%s:unable to register hdlc device
  ",__FILE__);
  		free_netdev(dev);
  		return rc;
  	}
  
  	info->netdev = dev;
  	return 0;
  }
  
  /**
   * called by device driver when removing device instance
   * do generic HDLC cleanup
   *
   * info  pointer to device instance information
   */
  static void hdlcdev_exit(SLMP_INFO *info)
  {
  	unregister_hdlc_device(info->netdev);
  	free_netdev(info->netdev);
  	info->netdev = NULL;
  }
  
  #endif /* CONFIG_HDLC */
  
  
  /* Return next bottom half action to perform.
   * Return Value:	BH action code or 0 if nothing to do.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
1977
  static int bh_action(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
  {
  	unsigned long flags;
  	int rc = 0;
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	if (info->pending_bh & BH_RECEIVE) {
  		info->pending_bh &= ~BH_RECEIVE;
  		rc = BH_RECEIVE;
  	} else if (info->pending_bh & BH_TRANSMIT) {
  		info->pending_bh &= ~BH_TRANSMIT;
  		rc = BH_TRANSMIT;
  	} else if (info->pending_bh & BH_STATUS) {
  		info->pending_bh &= ~BH_STATUS;
  		rc = BH_STATUS;
  	}
  
  	if (!rc) {
  		/* Mark BH routine as complete */
0fab6de09   Joe Perches   synclink drivers ...
1997
1998
  		info->bh_running = false;
  		info->bh_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1999
2000
2001
2002
2003
2004
2005
2006
2007
  	}
  
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	return rc;
  }
  
  /* Perform bottom half processing of work items queued by ISR.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
2008
  static void bh_handler(struct work_struct *work)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2009
  {
c4028958b   David Howells   WorkStruct: make ...
2010
  	SLMP_INFO *info = container_of(work, SLMP_INFO, task);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2011
2012
2013
2014
2015
2016
2017
2018
2019
  	int action;
  
  	if (!info)
  		return;
  
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk( "%s(%d):%s bh_handler() entry
  ",
  			__FILE__,__LINE__,info->device_name);
0fab6de09   Joe Perches   synclink drivers ...
2020
  	info->bh_running = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
  
  	while((action = bh_action(info)) != 0) {
  
  		/* Process work item */
  		if ( debug_level >= DEBUG_LEVEL_BH )
  			printk( "%s(%d):%s bh_handler() work item action=%d
  ",
  				__FILE__,__LINE__,info->device_name, action);
  
  		switch (action) {
  
  		case BH_RECEIVE:
  			bh_receive(info);
  			break;
  		case BH_TRANSMIT:
  			bh_transmit(info);
  			break;
  		case BH_STATUS:
  			bh_status(info);
  			break;
  		default:
  			/* unknown work item ID */
  			printk("%s(%d):%s Unknown work item ID=%08X!
  ",
  				__FILE__,__LINE__,info->device_name,action);
  			break;
  		}
  	}
  
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk( "%s(%d):%s bh_handler() exit
  ",
  			__FILE__,__LINE__,info->device_name);
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2055
  static void bh_receive(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2056
2057
2058
2059
2060
2061
2062
2063
  {
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk( "%s(%d):%s bh_receive()
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	while( rx_get_frame(info) );
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2064
  static void bh_transmit(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2065
  {
8fb06c771   Alan Cox   synclink: use tty...
2066
  	struct tty_struct *tty = info->port.tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2067
2068
2069
2070
2071
  
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk( "%s(%d):%s bh_transmit() entry
  ",
  			__FILE__,__LINE__,info->device_name);
b963a8441   Jiri Slaby   [PATCH] Char: tty...
2072
  	if (tty)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2073
  		tty_wakeup(tty);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2074
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2075
  static void bh_status(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
  {
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk( "%s(%d):%s bh_status() entry
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	info->ri_chkcount = 0;
  	info->dsr_chkcount = 0;
  	info->dcd_chkcount = 0;
  	info->cts_chkcount = 0;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2087
  static void isr_timer(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
  {
  	unsigned char timer = (info->port_num & 1) ? TIMER2 : TIMER0;
  
  	/* IER2<7..4> = timer<3..0> interrupt enables (0=disabled) */
  	write_reg(info, IER2, 0);
  
  	/* TMCS, Timer Control/Status Register
  	 *
  	 * 07      CMF, Compare match flag (read only) 1=match
  	 * 06      ECMI, CMF Interrupt Enable: 0=disabled
  	 * 05      Reserved, must be 0
  	 * 04      TME, Timer Enable
  	 * 03..00  Reserved, must be 0
  	 *
  	 * 0000 0000
  	 */
  	write_reg(info, (unsigned char)(timer + TMCS), 0);
0fab6de09   Joe Perches   synclink drivers ...
2105
  	info->irq_occurred = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2106
2107
2108
2109
2110
2111
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_timer()
  ",
  			__FILE__,__LINE__,info->device_name);
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2112
  static void isr_rxint(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2113
  {
8fb06c771   Alan Cox   synclink: use tty...
2114
   	struct tty_struct *tty = info->port.tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
   	struct	mgsl_icount *icount = &info->icount;
  	unsigned char status = read_reg(info, SR1) & info->ie1_value & (FLGD + IDLD + CDCD + BRKD);
  	unsigned char status2 = read_reg(info, SR2) & info->ie2_value & OVRN;
  
  	/* clear status bits */
  	if (status)
  		write_reg(info, SR1, status);
  
  	if (status2)
  		write_reg(info, SR2, status2);
  	
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_rxint status=%02X %02x
  ",
  			__FILE__,__LINE__,info->device_name,status,status2);
  
  	if (info->params.mode == MGSL_MODE_ASYNC) {
  		if (status & BRKD) {
  			icount->brk++;
  
  			/* process break detection if tty control
  			 * is not set to ignore it
  			 */
  			if ( tty ) {
  				if (!(status & info->ignore_status_mask1)) {
  					if (info->read_status_mask1 & BRKD) {
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2141
  						tty_insert_flip_char(tty, 0, TTY_BREAK);
8fb06c771   Alan Cox   synclink: use tty...
2142
  						if (info->port.flags & ASYNC_SAK)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
  							do_SAK(tty);
  					}
  				}
  			}
  		}
  	}
  	else {
  		if (status & (FLGD|IDLD)) {
  			if (status & FLGD)
  				info->icount.exithunt++;
  			else if (status & IDLD)
  				info->icount.rxidle++;
  			wake_up_interruptible(&info->event_wait_q);
  		}
  	}
  
  	if (status & CDCD) {
  		/* simulate a common modem status change interrupt
  		 * for our handler
  		 */
  		get_signals( info );
  		isr_io_pin(info,
  			MISCSTATUS_DCD_LATCHED|(info->serial_signals&SerialSignal_DCD));
  	}
  }
  
  /*
   * handle async rx data interrupts
   */
ce9f9f73a   Harvey Harrison   char: make functi...
2172
  static void isr_rxrdy(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2173
2174
2175
  {
  	u16 status;
  	unsigned char DataByte;
8fb06c771   Alan Cox   synclink: use tty...
2176
   	struct tty_struct *tty = info->port.tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2177
2178
2179
2180
2181
2182
2183
2184
2185
   	struct	mgsl_icount *icount = &info->icount;
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_rxrdy
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	while((status = read_reg(info,CST0)) & BIT0)
  	{
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2186
  		int flag = 0;
0fab6de09   Joe Perches   synclink drivers ...
2187
  		bool over = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2188
  		DataByte = read_reg(info,TRB);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
  		icount->rx++;
  
  		if ( status & (PE + FRME + OVRN) ) {
  			printk("%s(%d):%s rxerr=%04X
  ",
  				__FILE__,__LINE__,info->device_name,status);
  
  			/* update error statistics */
  			if (status & PE)
  				icount->parity++;
  			else if (status & FRME)
  				icount->frame++;
  			else if (status & OVRN)
  				icount->overrun++;
  
  			/* discard char if tty control flags say so */
  			if (status & info->ignore_status_mask2)
  				continue;
  
  			status &= info->read_status_mask2;
  
  			if ( tty ) {
  				if (status & PE)
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2212
  					flag = TTY_PARITY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2213
  				else if (status & FRME)
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2214
  					flag = TTY_FRAME;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2215
2216
2217
2218
2219
  				if (status & OVRN) {
  					/* Overrun is special, since it's
  					 * reported immediately, and doesn't
  					 * affect the current character
  					 */
0fab6de09   Joe Perches   synclink drivers ...
2220
  					over = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2221
2222
2223
2224
2225
  				}
  			}
  		}	/* end of if (error) */
  
  		if ( tty ) {
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2226
2227
2228
  			tty_insert_flip_char(tty, DataByte, flag);
  			if (over)
  				tty_insert_flip_char(tty, 0, TTY_OVERRUN);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2229
2230
2231
2232
  		}
  	}
  
  	if ( debug_level >= DEBUG_LEVEL_ISR ) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2233
2234
2235
2236
2237
2238
  		printk("%s(%d):%s rx=%d brk=%d parity=%d frame=%d overrun=%d
  ",
  			__FILE__,__LINE__,info->device_name,
  			icount->rx,icount->brk,icount->parity,
  			icount->frame,icount->overrun);
  	}
33f0f88f1   Alan Cox   [PATCH] TTY layer...
2239
  	if ( tty )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
  		tty_flip_buffer_push(tty);
  }
  
  static void isr_txeom(SLMP_INFO * info, unsigned char status)
  {
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_txeom status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status);
  
  	write_reg(info, TXDMA + DIR, 0x00); /* disable Tx DMA IRQs */
  	write_reg(info, TXDMA + DSR, 0xc0); /* clear IRQs and disable DMA */
  	write_reg(info, TXDMA + DCMD, SWABORT);	/* reset/init DMA channel */
  
  	if (status & UDRN) {
  		write_reg(info, CMD, TXRESET);
  		write_reg(info, CMD, TXENABLE);
  	} else
  		write_reg(info, CMD, TXBUFCLR);
  
  	/* disable and clear tx interrupts */
  	info->ie0_value &= ~TXRDYE;
  	info->ie1_value &= ~(IDLE + UDRN);
  	write_reg16(info, IE0, (unsigned short)((info->ie1_value << 8) + info->ie0_value));
  	write_reg(info, SR1, (unsigned char)(UDRN + IDLE));
  
  	if ( info->tx_active ) {
  		if (info->params.mode != MGSL_MODE_ASYNC) {
  			if (status & UDRN)
  				info->icount.txunder++;
  			else if (status & IDLE)
  				info->icount.txok++;
  		}
0fab6de09   Joe Perches   synclink drivers ...
2273
  		info->tx_active = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2274
2275
2276
2277
2278
2279
  		info->tx_count = info->tx_put = info->tx_get = 0;
  
  		del_timer(&info->tx_timer);
  
  		if (info->params.mode != MGSL_MODE_ASYNC && info->drop_rts_on_tx_done ) {
  			info->serial_signals &= ~SerialSignal_RTS;
0fab6de09   Joe Perches   synclink drivers ...
2280
  			info->drop_rts_on_tx_done = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2281
2282
  			set_signals(info);
  		}
af69c7f92   Paul Fulghum   [PATCH] generic H...
2283
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2284
2285
2286
2287
2288
  		if (info->netcount)
  			hdlcdev_tx_done(info);
  		else
  #endif
  		{
8fb06c771   Alan Cox   synclink: use tty...
2289
  			if (info->port.tty && (info->port.tty->stopped || info->port.tty->hw_stopped)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
  				tx_stop(info);
  				return;
  			}
  			info->pending_bh |= BH_TRANSMIT;
  		}
  	}
  }
  
  
  /*
   * handle tx status interrupts
   */
ce9f9f73a   Harvey Harrison   char: make functi...
2302
  static void isr_txint(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
  {
  	unsigned char status = read_reg(info, SR1) & info->ie1_value & (UDRN + IDLE + CCTS);
  
  	/* clear status bits */
  	write_reg(info, SR1, status);
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_txint status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status);
  
  	if (status & (UDRN + IDLE))
  		isr_txeom(info, status);
  
  	if (status & CCTS) {
  		/* simulate a common modem status change interrupt
  		 * for our handler
  		 */
  		get_signals( info );
  		isr_io_pin(info,
  			MISCSTATUS_CTS_LATCHED|(info->serial_signals&SerialSignal_CTS));
  
  	}
  }
  
  /*
   * handle async tx data interrupts
   */
ce9f9f73a   Harvey Harrison   char: make functi...
2331
  static void isr_txrdy(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
  {
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_txrdy() tx_count=%d
  ",
  			__FILE__,__LINE__,info->device_name,info->tx_count);
  
  	if (info->params.mode != MGSL_MODE_ASYNC) {
  		/* disable TXRDY IRQ, enable IDLE IRQ */
  		info->ie0_value &= ~TXRDYE;
  		info->ie1_value |= IDLE;
  		write_reg16(info, IE0, (unsigned short)((info->ie1_value << 8) + info->ie0_value));
  		return;
  	}
8fb06c771   Alan Cox   synclink: use tty...
2345
  	if (info->port.tty && (info->port.tty->stopped || info->port.tty->hw_stopped)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2346
2347
2348
2349
2350
2351
2352
  		tx_stop(info);
  		return;
  	}
  
  	if ( info->tx_count )
  		tx_load_fifo( info );
  	else {
0fab6de09   Joe Perches   synclink drivers ...
2353
  		info->tx_active = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2354
2355
2356
2357
2358
2359
2360
  		info->ie0_value &= ~TXRDYE;
  		write_reg(info, IE0, info->ie0_value);
  	}
  
  	if (info->tx_count < WAKEUP_CHARS)
  		info->pending_bh |= BH_TRANSMIT;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2361
  static void isr_rxdmaok(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
  {
  	/* BIT7 = EOT (end of transfer)
  	 * BIT6 = EOM (end of message/frame)
  	 */
  	unsigned char status = read_reg(info,RXDMA + DSR) & 0xc0;
  
  	/* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
  	write_reg(info, RXDMA + DSR, (unsigned char)(status | 1));
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_rxdmaok(), status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status);
  
  	info->pending_bh |= BH_RECEIVE;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2378
  static void isr_rxdmaerror(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
  {
  	/* BIT5 = BOF (buffer overflow)
  	 * BIT4 = COF (counter overflow)
  	 */
  	unsigned char status = read_reg(info,RXDMA + DSR) & 0x30;
  
  	/* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
  	write_reg(info, RXDMA + DSR, (unsigned char)(status | 1));
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_rxdmaerror(), status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status);
0fab6de09   Joe Perches   synclink drivers ...
2392
  	info->rx_overflow = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2393
2394
  	info->pending_bh |= BH_RECEIVE;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2395
  static void isr_txdmaok(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
  {
  	unsigned char status_reg1 = read_reg(info, SR1);
  
  	write_reg(info, TXDMA + DIR, 0x00);	/* disable Tx DMA IRQs */
  	write_reg(info, TXDMA + DSR, 0xc0); /* clear IRQs and disable DMA */
  	write_reg(info, TXDMA + DCMD, SWABORT);	/* reset/init DMA channel */
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_txdmaok(), status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status_reg1);
  
  	/* program TXRDY as FIFO empty flag, enable TXRDY IRQ */
  	write_reg16(info, TRC0, 0);
  	info->ie0_value |= TXRDYE;
  	write_reg(info, IE0, info->ie0_value);
  }
ce9f9f73a   Harvey Harrison   char: make functi...
2413
  static void isr_txdmaerror(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
  {
  	/* BIT5 = BOF (buffer overflow)
  	 * BIT4 = COF (counter overflow)
  	 */
  	unsigned char status = read_reg(info,TXDMA + DSR) & 0x30;
  
  	/* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
  	write_reg(info, TXDMA + DSR, (unsigned char)(status | 1));
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):%s isr_txdmaerror(), status=%02x
  ",
  			__FILE__,__LINE__,info->device_name,status);
  }
  
  /* handle input serial signal changes
   */
ce9f9f73a   Harvey Harrison   char: make functi...
2431
  static void isr_io_pin( SLMP_INFO *info, u16 status )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
  {
   	struct	mgsl_icount *icount;
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
  		printk("%s(%d):isr_io_pin status=%04X
  ",
  			__FILE__,__LINE__,status);
  
  	if (status & (MISCSTATUS_CTS_LATCHED | MISCSTATUS_DCD_LATCHED |
  	              MISCSTATUS_DSR_LATCHED | MISCSTATUS_RI_LATCHED) ) {
  		icount = &info->icount;
  		/* update input line counters */
  		if (status & MISCSTATUS_RI_LATCHED) {
  			icount->rng++;
  			if ( status & SerialSignal_RI )
  				info->input_signal_events.ri_up++;
  			else
  				info->input_signal_events.ri_down++;
  		}
  		if (status & MISCSTATUS_DSR_LATCHED) {
  			icount->dsr++;
  			if ( status & SerialSignal_DSR )
  				info->input_signal_events.dsr_up++;
  			else
  				info->input_signal_events.dsr_down++;
  		}
  		if (status & MISCSTATUS_DCD_LATCHED) {
  			if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT) {
  				info->ie1_value &= ~CDCD;
  				write_reg(info, IE1, info->ie1_value);
  			}
  			icount->dcd++;
  			if (status & SerialSignal_DCD) {
  				info->input_signal_events.dcd_up++;
  			} else
  				info->input_signal_events.dcd_down++;
af69c7f92   Paul Fulghum   [PATCH] generic H...
2468
  #if SYNCLINK_GENERIC_HDLC
fbeff3c1d   Krzysztof Halasa   [WAN]: Converted ...
2469
2470
2471
2472
2473
2474
  			if (info->netcount) {
  				if (status & SerialSignal_DCD)
  					netif_carrier_on(info->netdev);
  				else
  					netif_carrier_off(info->netdev);
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
  #endif
  		}
  		if (status & MISCSTATUS_CTS_LATCHED)
  		{
  			if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT) {
  				info->ie1_value &= ~CCTS;
  				write_reg(info, IE1, info->ie1_value);
  			}
  			icount->cts++;
  			if ( status & SerialSignal_CTS )
  				info->input_signal_events.cts_up++;
  			else
  				info->input_signal_events.cts_down++;
  		}
  		wake_up_interruptible(&info->status_event_wait_q);
  		wake_up_interruptible(&info->event_wait_q);
8fb06c771   Alan Cox   synclink: use tty...
2491
  		if ( (info->port.flags & ASYNC_CHECK_CD) &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2492
2493
2494
2495
2496
  		     (status & MISCSTATUS_DCD_LATCHED) ) {
  			if ( debug_level >= DEBUG_LEVEL_ISR )
  				printk("%s CD now %s...", info->device_name,
  				       (status & SerialSignal_DCD) ? "on" : "off");
  			if (status & SerialSignal_DCD)
8fb06c771   Alan Cox   synclink: use tty...
2497
  				wake_up_interruptible(&info->port.open_wait);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2498
2499
2500
  			else {
  				if ( debug_level >= DEBUG_LEVEL_ISR )
  					printk("doing serial hangup...");
8fb06c771   Alan Cox   synclink: use tty...
2501
2502
  				if (info->port.tty)
  					tty_hangup(info->port.tty);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2503
2504
  			}
  		}
8fb06c771   Alan Cox   synclink: use tty...
2505
  		if ( (info->port.flags & ASYNC_CTS_FLOW) &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2506
  		     (status & MISCSTATUS_CTS_LATCHED) ) {
8fb06c771   Alan Cox   synclink: use tty...
2507
2508
  			if ( info->port.tty ) {
  				if (info->port.tty->hw_stopped) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2509
2510
2511
  					if (status & SerialSignal_CTS) {
  						if ( debug_level >= DEBUG_LEVEL_ISR )
  							printk("CTS tx start...");
8fb06c771   Alan Cox   synclink: use tty...
2512
  			 			info->port.tty->hw_stopped = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2513
2514
2515
2516
2517
2518
2519
2520
  						tx_start(info);
  						info->pending_bh |= BH_TRANSMIT;
  						return;
  					}
  				} else {
  					if (!(status & SerialSignal_CTS)) {
  						if ( debug_level >= DEBUG_LEVEL_ISR )
  							printk("CTS tx stop...");
8fb06c771   Alan Cox   synclink: use tty...
2521
  			 			info->port.tty->hw_stopped = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
  						tx_stop(info);
  					}
  				}
  			}
  		}
  	}
  
  	info->pending_bh |= BH_STATUS;
  }
  
  /* Interrupt service routine entry point.
   *
   * Arguments:
   * 	irq		interrupt number that caused interrupt
   * 	dev_id		device ID supplied during interrupt registration
   * 	regs		interrupted processor context
   */
a6f97b293   Jeff Garzik   drivers/char: min...
2539
  static irqreturn_t synclinkmp_interrupt(int dummy, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2540
  {
a6f97b293   Jeff Garzik   drivers/char: min...
2541
  	SLMP_INFO *info = dev_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2542
2543
2544
2545
2546
2547
2548
2549
  	unsigned char status, status0, status1=0;
  	unsigned char dmastatus, dmastatus0, dmastatus1=0;
  	unsigned char timerstatus0, timerstatus1=0;
  	unsigned char shift;
  	unsigned int i;
  	unsigned short tmp;
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
a6f97b293   Jeff Garzik   drivers/char: min...
2550
2551
2552
  		printk(KERN_DEBUG "%s(%d): synclinkmp_interrupt(%d)entry.
  ",
  			__FILE__, __LINE__, info->irq_level);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
  
  	spin_lock(&info->lock);
  
  	for(;;) {
  
  		/* get status for SCA0 (ports 0-1) */
  		tmp = read_reg16(info, ISR0);	/* get ISR0 and ISR1 in one read */
  		status0 = (unsigned char)tmp;
  		dmastatus0 = (unsigned char)(tmp>>8);
  		timerstatus0 = read_reg(info, ISR2);
  
  		if ( debug_level >= DEBUG_LEVEL_ISR )
a6f97b293   Jeff Garzik   drivers/char: min...
2565
2566
2567
2568
  			printk(KERN_DEBUG "%s(%d):%s status0=%02x, dmastatus0=%02x, timerstatus0=%02x
  ",
  				__FILE__, __LINE__, info->device_name,
  				status0, dmastatus0, timerstatus0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
  
  		if (info->port_count == 4) {
  			/* get status for SCA1 (ports 2-3) */
  			tmp = read_reg16(info->port_array[2], ISR0);
  			status1 = (unsigned char)tmp;
  			dmastatus1 = (unsigned char)(tmp>>8);
  			timerstatus1 = read_reg(info->port_array[2], ISR2);
  
  			if ( debug_level >= DEBUG_LEVEL_ISR )
  				printk("%s(%d):%s status1=%02x, dmastatus1=%02x, timerstatus1=%02x
  ",
  					__FILE__,__LINE__,info->device_name,
  					status1,dmastatus1,timerstatus1);
  		}
  
  		if (!status0 && !dmastatus0 && !timerstatus0 &&
  			 !status1 && !dmastatus1 && !timerstatus1)
  			break;
  
  		for(i=0; i < info->port_count ; i++) {
  			if (info->port_array[i] == NULL)
  				continue;
  			if (i < 2) {
  				status = status0;
  				dmastatus = dmastatus0;
  			} else {
  				status = status1;
  				dmastatus = dmastatus1;
  			}
  
  			shift = i & 1 ? 4 :0;
  
  			if (status & BIT0 << shift)
  				isr_rxrdy(info->port_array[i]);
  			if (status & BIT1 << shift)
  				isr_txrdy(info->port_array[i]);
  			if (status & BIT2 << shift)
  				isr_rxint(info->port_array[i]);
  			if (status & BIT3 << shift)
  				isr_txint(info->port_array[i]);
  
  			if (dmastatus & BIT0 << shift)
  				isr_rxdmaerror(info->port_array[i]);
  			if (dmastatus & BIT1 << shift)
  				isr_rxdmaok(info->port_array[i]);
  			if (dmastatus & BIT2 << shift)
  				isr_txdmaerror(info->port_array[i]);
  			if (dmastatus & BIT3 << shift)
  				isr_txdmaok(info->port_array[i]);
  		}
  
  		if (timerstatus0 & (BIT5 | BIT4))
  			isr_timer(info->port_array[0]);
  		if (timerstatus0 & (BIT7 | BIT6))
  			isr_timer(info->port_array[1]);
  		if (timerstatus1 & (BIT5 | BIT4))
  			isr_timer(info->port_array[2]);
  		if (timerstatus1 & (BIT7 | BIT6))
  			isr_timer(info->port_array[3]);
  	}
  
  	for(i=0; i < info->port_count ; i++) {
  		SLMP_INFO * port = info->port_array[i];
  
  		/* Request bottom half processing if there's something
  		 * for it to do and the bh is not already running.
  		 *
  		 * Note: startup adapter diags require interrupts.
  		 * do not request bottom half processing if the
  		 * device is not open in a normal mode.
  		 */
8fb06c771   Alan Cox   synclink: use tty...
2640
  		if ( port && (port->port.count || port->netcount) &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2641
2642
2643
2644
2645
2646
2647
  		     port->pending_bh && !port->bh_running &&
  		     !port->bh_requested ) {
  			if ( debug_level >= DEBUG_LEVEL_ISR )
  				printk("%s(%d):%s queueing bh task.
  ",
  					__FILE__,__LINE__,port->device_name);
  			schedule_work(&port->task);
0fab6de09   Joe Perches   synclink drivers ...
2648
  			port->bh_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2649
2650
2651
2652
2653
2654
  		}
  	}
  
  	spin_unlock(&info->lock);
  
  	if ( debug_level >= DEBUG_LEVEL_ISR )
a6f97b293   Jeff Garzik   drivers/char: min...
2655
2656
2657
  		printk(KERN_DEBUG "%s(%d):synclinkmp_interrupt(%d)exit.
  ",
  			__FILE__, __LINE__, info->irq_level);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
  	return IRQ_HANDLED;
  }
  
  /* Initialize and start device.
   */
  static int startup(SLMP_INFO * info)
  {
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk("%s(%d):%s tx_releaseup()
  ",__FILE__,__LINE__,info->device_name);
8fb06c771   Alan Cox   synclink: use tty...
2668
  	if (info->port.flags & ASYNC_INITIALIZED)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2669
2670
2671
  		return 0;
  
  	if (!info->tx_buf) {
5cbded585   Robert P. J. Day   [PATCH] getting r...
2672
  		info->tx_buf = kmalloc(info->max_frame_size, GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2673
2674
2675
2676
2677
2678
2679
2680
2681
  		if (!info->tx_buf) {
  			printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer
  ",
  				__FILE__,__LINE__,info->device_name);
  			return -ENOMEM;
  		}
  	}
  
  	info->pending_bh = 0;
166692e4a   Paul Fulghum   [PATCH] synclinkm...
2682
  	memset(&info->icount, 0, sizeof(info->icount));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2683
2684
2685
2686
  	/* program hardware for current parameters */
  	reset_port(info);
  
  	change_params(info);
40565f196   Jiri Slaby   [PATCH] Char: tim...
2687
  	mod_timer(&info->status_timer, jiffies + msecs_to_jiffies(10));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2688

8fb06c771   Alan Cox   synclink: use tty...
2689
2690
  	if (info->port.tty)
  		clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2691

8fb06c771   Alan Cox   synclink: use tty...
2692
  	info->port.flags |= ASYNC_INITIALIZED;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2693
2694
2695
2696
2697
2698
2699
2700
2701
  
  	return 0;
  }
  
  /* Called by close() and hangup() to shutdown hardware
   */
  static void shutdown(SLMP_INFO * info)
  {
  	unsigned long flags;
8fb06c771   Alan Cox   synclink: use tty...
2702
  	if (!(info->port.flags & ASYNC_INITIALIZED))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
  		return;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s synclinkmp_shutdown()
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	/* clear status wait queue because status changes */
  	/* can't happen after shutting down the hardware */
  	wake_up_interruptible(&info->status_event_wait_q);
  	wake_up_interruptible(&info->event_wait_q);
  
  	del_timer(&info->tx_timer);
  	del_timer(&info->status_timer);
735d5661d   Jesper Juhl   [PATCH] kfree cle...
2717
2718
  	kfree(info->tx_buf);
  	info->tx_buf = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2719
2720
2721
2722
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	reset_port(info);
8fb06c771   Alan Cox   synclink: use tty...
2723
   	if (!info->port.tty || info->port.tty->termios->c_cflag & HUPCL) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2724
2725
2726
2727
2728
   		info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
  		set_signals(info);
  	}
  
  	spin_unlock_irqrestore(&info->lock,flags);
8fb06c771   Alan Cox   synclink: use tty...
2729
2730
  	if (info->port.tty)
  		set_bit(TTY_IO_ERROR, &info->port.tty->flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2731

8fb06c771   Alan Cox   synclink: use tty...
2732
  	info->port.flags &= ~ASYNC_INITIALIZED;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
  }
  
  static void program_hw(SLMP_INFO *info)
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	rx_stop(info);
  	tx_stop(info);
  
  	info->tx_count = info->tx_put = info->tx_get = 0;
  
  	if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
  		hdlc_mode(info);
  	else
  		async_mode(info);
  
  	set_signals(info);
  
  	info->dcd_chkcount = 0;
  	info->cts_chkcount = 0;
  	info->ri_chkcount = 0;
  	info->dsr_chkcount = 0;
  
  	info->ie1_value |= (CDCD|CCTS);
  	write_reg(info, IE1, info->ie1_value);
  
  	get_signals(info);
8fb06c771   Alan Cox   synclink: use tty...
2762
  	if (info->netcount || (info->port.tty && info->port.tty->termios->c_cflag & CREAD) )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
  		rx_start(info);
  
  	spin_unlock_irqrestore(&info->lock,flags);
  }
  
  /* Reconfigure adapter based on new parameters
   */
  static void change_params(SLMP_INFO *info)
  {
  	unsigned cflag;
  	int bits_per_char;
8fb06c771   Alan Cox   synclink: use tty...
2774
  	if (!info->port.tty || !info->port.tty->termios)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2775
2776
2777
2778
2779
2780
  		return;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s change_params()
  ",
  			 __FILE__,__LINE__, info->device_name );
8fb06c771   Alan Cox   synclink: use tty...
2781
  	cflag = info->port.tty->termios->c_cflag;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
  
  	/* if B0 rate (hangup) specified then negate DTR and RTS */
  	/* otherwise assert DTR and RTS */
   	if (cflag & CBAUD)
  		info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  	else
  		info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
  
  	/* byte size and parity */
  
  	switch (cflag & CSIZE) {
  	      case CS5: info->params.data_bits = 5; break;
  	      case CS6: info->params.data_bits = 6; break;
  	      case CS7: info->params.data_bits = 7; break;
  	      case CS8: info->params.data_bits = 8; break;
  	      /* Never happens, but GCC is too dumb to figure it out */
  	      default:  info->params.data_bits = 7; break;
  	      }
  
  	if (cflag & CSTOPB)
  		info->params.stop_bits = 2;
  	else
  		info->params.stop_bits = 1;
  
  	info->params.parity = ASYNC_PARITY_NONE;
  	if (cflag & PARENB) {
  		if (cflag & PARODD)
  			info->params.parity = ASYNC_PARITY_ODD;
  		else
  			info->params.parity = ASYNC_PARITY_EVEN;
  #ifdef CMSPAR
  		if (cflag & CMSPAR)
  			info->params.parity = ASYNC_PARITY_SPACE;
  #endif
  	}
  
  	/* calculate number of jiffies to transmit a full
  	 * FIFO (32 bytes) at specified data rate
  	 */
  	bits_per_char = info->params.data_bits +
  			info->params.stop_bits + 1;
  
  	/* if port data rate is set to 460800 or less then
  	 * allow tty settings to override, otherwise keep the
  	 * current data rate.
  	 */
  	if (info->params.data_rate <= 460800) {
8fb06c771   Alan Cox   synclink: use tty...
2829
  		info->params.data_rate = tty_get_baud_rate(info->port.tty);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2830
2831
2832
2833
2834
2835
2836
2837
2838
  	}
  
  	if ( info->params.data_rate ) {
  		info->timeout = (32*HZ*bits_per_char) /
  				info->params.data_rate;
  	}
  	info->timeout += HZ/50;		/* Add .02 seconds of slop */
  
  	if (cflag & CRTSCTS)
8fb06c771   Alan Cox   synclink: use tty...
2839
  		info->port.flags |= ASYNC_CTS_FLOW;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2840
  	else
8fb06c771   Alan Cox   synclink: use tty...
2841
  		info->port.flags &= ~ASYNC_CTS_FLOW;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2842
2843
  
  	if (cflag & CLOCAL)
8fb06c771   Alan Cox   synclink: use tty...
2844
  		info->port.flags &= ~ASYNC_CHECK_CD;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2845
  	else
8fb06c771   Alan Cox   synclink: use tty...
2846
  		info->port.flags |= ASYNC_CHECK_CD;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2847
2848
2849
2850
  
  	/* process tty input control flags */
  
  	info->read_status_mask2 = OVRN;
8fb06c771   Alan Cox   synclink: use tty...
2851
  	if (I_INPCK(info->port.tty))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2852
  		info->read_status_mask2 |= PE | FRME;
8fb06c771   Alan Cox   synclink: use tty...
2853
   	if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2854
   		info->read_status_mask1 |= BRKD;
8fb06c771   Alan Cox   synclink: use tty...
2855
  	if (I_IGNPAR(info->port.tty))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2856
  		info->ignore_status_mask2 |= PE | FRME;
8fb06c771   Alan Cox   synclink: use tty...
2857
  	if (I_IGNBRK(info->port.tty)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2858
2859
2860
2861
  		info->ignore_status_mask1 |= BRKD;
  		/* If ignoring parity and break indicators, ignore
  		 * overruns too.  (For real raw support).
  		 */
8fb06c771   Alan Cox   synclink: use tty...
2862
  		if (I_IGNPAR(info->port.tty))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
  			info->ignore_status_mask2 |= OVRN;
  	}
  
  	program_hw(info);
  }
  
  static int get_stats(SLMP_INFO * info, struct mgsl_icount __user *user_icount)
  {
  	int err;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s get_params()
  ",
  			 __FILE__,__LINE__, info->device_name);
166692e4a   Paul Fulghum   [PATCH] synclinkm...
2877
2878
2879
  	if (!user_icount) {
  		memset(&info->icount, 0, sizeof(info->icount));
  	} else {
f602501d9   Alan Cox   synclink: kill th...
2880
  		mutex_lock(&info->port.mutex);
166692e4a   Paul Fulghum   [PATCH] synclinkm...
2881
  		COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
f602501d9   Alan Cox   synclink: kill th...
2882
  		mutex_unlock(&info->port.mutex);
166692e4a   Paul Fulghum   [PATCH] synclinkm...
2883
2884
  		if (err)
  			return -EFAULT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
  	}
  
  	return 0;
  }
  
  static int get_params(SLMP_INFO * info, MGSL_PARAMS __user *user_params)
  {
  	int err;
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s get_params()
  ",
  			 __FILE__,__LINE__, info->device_name);
f602501d9   Alan Cox   synclink: kill th...
2897
  	mutex_lock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2898
  	COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
f602501d9   Alan Cox   synclink: kill th...
2899
  	mutex_unlock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
  	if (err) {
  		if ( debug_level >= DEBUG_LEVEL_INFO )
  			printk( "%s(%d):%s get_params() user buffer copy failed
  ",
  				__FILE__,__LINE__,info->device_name);
  		return -EFAULT;
  	}
  
  	return 0;
  }
  
  static int set_params(SLMP_INFO * info, MGSL_PARAMS __user *new_params)
  {
   	unsigned long flags;
  	MGSL_PARAMS tmp_params;
  	int err;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s set_params
  ",
  			__FILE__,__LINE__,info->device_name );
  	COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
  	if (err) {
  		if ( debug_level >= DEBUG_LEVEL_INFO )
  			printk( "%s(%d):%s set_params() user buffer copy failed
  ",
  				__FILE__,__LINE__,info->device_name);
  		return -EFAULT;
  	}
f602501d9   Alan Cox   synclink: kill th...
2929
  	mutex_lock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2930
2931
2932
2933
2934
  	spin_lock_irqsave(&info->lock,flags);
  	memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
  	spin_unlock_irqrestore(&info->lock,flags);
  
   	change_params(info);
f602501d9   Alan Cox   synclink: kill th...
2935
  	mutex_unlock(&info->port.mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
  
  	return 0;
  }
  
  static int get_txidle(SLMP_INFO * info, int __user *idle_mode)
  {
  	int err;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s get_txidle()=%d
  ",
  			 __FILE__,__LINE__, info->device_name, info->idle_mode);
  
  	COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
  	if (err) {
  		if ( debug_level >= DEBUG_LEVEL_INFO )
  			printk( "%s(%d):%s get_txidle() user buffer copy failed
  ",
  				__FILE__,__LINE__,info->device_name);
  		return -EFAULT;
  	}
  
  	return 0;
  }
  
  static int set_txidle(SLMP_INFO * info, int idle_mode)
  {
   	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s set_txidle(%d)
  ",
  			__FILE__,__LINE__,info->device_name, idle_mode );
  
  	spin_lock_irqsave(&info->lock,flags);
  	info->idle_mode = idle_mode;
  	tx_set_idle( info );
  	spin_unlock_irqrestore(&info->lock,flags);
  	return 0;
  }
  
  static int tx_enable(SLMP_INFO * info, int enable)
  {
   	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s tx_enable(%d)
  ",
  			__FILE__,__LINE__,info->device_name, enable);
  
  	spin_lock_irqsave(&info->lock,flags);
  	if ( enable ) {
  		if ( !info->tx_enabled ) {
  			tx_start(info);
  		}
  	} else {
  		if ( info->tx_enabled )
  			tx_stop(info);
  	}
  	spin_unlock_irqrestore(&info->lock,flags);
  	return 0;
  }
  
  /* abort send HDLC frame
   */
  static int tx_abort(SLMP_INFO * info)
  {
   	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s tx_abort()
  ",
  			__FILE__,__LINE__,info->device_name);
  
  	spin_lock_irqsave(&info->lock,flags);
  	if ( info->tx_active && info->params.mode == MGSL_MODE_HDLC ) {
  		info->ie1_value &= ~UDRN;
  		info->ie1_value |= IDLE;
  		write_reg(info, IE1, info->ie1_value);	/* disable tx status interrupts */
  		write_reg(info, SR1, (unsigned char)(IDLE + UDRN));	/* clear pending */
  
  		write_reg(info, TXDMA + DSR, 0);		/* disable DMA channel */
  		write_reg(info, TXDMA + DCMD, SWABORT);	/* reset/init DMA channel */
  
     		write_reg(info, CMD, TXABORT);
  	}
  	spin_unlock_irqrestore(&info->lock,flags);
  	return 0;
  }
  
  static int rx_enable(SLMP_INFO * info, int enable)
  {
   	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s rx_enable(%d)
  ",
  			__FILE__,__LINE__,info->device_name,enable);
  
  	spin_lock_irqsave(&info->lock,flags);
  	if ( enable ) {
  		if ( !info->rx_enabled )
  			rx_start(info);
  	} else {
  		if ( info->rx_enabled )
  			rx_stop(info);
  	}
  	spin_unlock_irqrestore(&info->lock,flags);
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
  /* wait for specified event to occur
   */
  static int wait_mgsl_event(SLMP_INFO * info, int __user *mask_ptr)
  {
   	unsigned long flags;
  	int s;
  	int rc=0;
  	struct mgsl_icount cprev, cnow;
  	int events;
  	int mask;
  	struct	_input_signal_events oldsigs, newsigs;
  	DECLARE_WAITQUEUE(wait, current);
  
  	COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
  	if (rc) {
  		return  -EFAULT;
  	}
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s wait_mgsl_event(%d)
  ",
  			__FILE__,__LINE__,info->device_name,mask);
  
  	spin_lock_irqsave(&info->lock,flags);
  
  	/* return immediately if state matches requested events */
  	get_signals(info);
7f3edb945   Paul Fulghum   [PATCH] synclinkm...
3073
  	s = info->serial_signals;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
  
  	events = mask &
  		( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
   		  ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
  		  ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
  		  ((s & SerialSignal_RI)  ? MgslEvent_RiActive :MgslEvent_RiInactive) );
  	if (events) {
  		spin_unlock_irqrestore(&info->lock,flags);
  		goto exit;
  	}
  
  	/* save current irq counts */
  	cprev = info->icount;
  	oldsigs = info->input_signal_events;
  
  	/* enable hunt and idle irqs if needed */
  	if (mask & (MgslEvent_ExitHuntMode+MgslEvent_IdleReceived)) {
  		unsigned char oldval = info->ie1_value;
  		unsigned char newval = oldval +
  			 (mask & MgslEvent_ExitHuntMode ? FLGD:0) +
  			 (mask & MgslEvent_IdleReceived ? IDLD:0);
  		if ( oldval != newval ) {
  			info->ie1_value = newval;
  			write_reg(info, IE1, info->ie1_value);
  		}
  	}
  
  	set_current_state(TASK_INTERRUPTIBLE);
  	add_wait_queue(&info->event_wait_q, &wait);
  
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	for(;;) {
  		schedule();
  		if (signal_pending(current)) {
  			rc = -ERESTARTSYS;
  			break;
  		}
  
  		/* get current irq counts */
  		spin_lock_irqsave(&info->lock,flags);
  		cnow = info->icount;
  		newsigs = info->input_signal_events;
  		set_current_state(TASK_INTERRUPTIBLE);
  		spin_unlock_irqrestore(&info->lock,flags);
  
  		/* if no change, wait aborted for some reason */
  		if (newsigs.dsr_up   == oldsigs.dsr_up   &&
  		    newsigs.dsr_down == oldsigs.dsr_down &&
  		    newsigs.dcd_up   == oldsigs.dcd_up   &&
  		    newsigs.dcd_down == oldsigs.dcd_down &&
  		    newsigs.cts_up   == oldsigs.cts_up   &&
  		    newsigs.cts_down == oldsigs.cts_down &&
  		    newsigs.ri_up    == oldsigs.ri_up    &&
  		    newsigs.ri_down  == oldsigs.ri_down  &&
  		    cnow.exithunt    == cprev.exithunt   &&
  		    cnow.rxidle      == cprev.rxidle) {
  			rc = -EIO;
  			break;
  		}
  
  		events = mask &
  			( (newsigs.dsr_up   != oldsigs.dsr_up   ? MgslEvent_DsrActive:0)   +
  			  (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
  			  (newsigs.dcd_up   != oldsigs.dcd_up   ? MgslEvent_DcdActive:0)   +
  			  (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
  			  (newsigs.cts_up   != oldsigs.cts_up   ? MgslEvent_CtsActive:0)   +
  			  (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
  			  (newsigs.ri_up    != oldsigs.ri_up    ? MgslEvent_RiActive:0)    +
  			  (newsigs.ri_down  != oldsigs.ri_down  ? MgslEvent_RiInactive:0)  +
  			  (cnow.exithunt    != cprev.exithunt   ? MgslEvent_ExitHuntMode:0) +
  			  (cnow.rxidle      != cprev.rxidle     ? MgslEvent_IdleReceived:0) );
  		if (events)
  			break;
  
  		cprev = cnow;
  		oldsigs = newsigs;
  	}
  
  	remove_wait_queue(&info->event_wait_q, &wait);
  	set_current_state(TASK_RUNNING);
  
  
  	if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
  		spin_lock_irqsave(&info->lock,flags);
  		if (!waitqueue_active(&info->event_wait_q)) {
  			/* disable enable exit hunt mode/idle rcvd IRQs */
  			info->ie1_value &= ~(FLGD|IDLD);
  			write_reg(info, IE1, info->ie1_value);
  		}
  		spin_unlock_irqrestore(&info->lock,flags);
  	}
  exit:
  	if ( rc == 0 )
  		PUT_USER(rc, events, mask_ptr);
  
  	return rc;
  }
  
  static int modem_input_wait(SLMP_INFO *info,int arg)
  {
   	unsigned long flags;
  	int rc;
  	struct mgsl_icount cprev, cnow;
  	DECLARE_WAITQUEUE(wait, current);
  
  	/* save current irq counts */
  	spin_lock_irqsave(&info->lock,flags);
  	cprev = info->icount;
  	add_wait_queue(&info->status_event_wait_q, &wait);
  	set_current_state(TASK_INTERRUPTIBLE);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	for(;;) {
  		schedule();
  		if (signal_pending(current)) {
  			rc = -ERESTARTSYS;
  			break;
  		}
  
  		/* get new irq counts */
  		spin_lock_irqsave(&info->lock,flags);
  		cnow = info->icount;
  		set_current_state(TASK_INTERRUPTIBLE);
  		spin_unlock_irqrestore(&info->lock,flags);
  
  		/* if no change, wait aborted for some reason */
  		if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
  		    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
  			rc = -EIO;
  			break;
  		}
  
  		/* check for change in caller specified modem input */
  		if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
  		    (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
  		    (arg & TIOCM_CD  && cnow.dcd != cprev.dcd) ||
  		    (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
  			rc = 0;
  			break;
  		}
  
  		cprev = cnow;
  	}
  	remove_wait_queue(&info->status_event_wait_q, &wait);
  	set_current_state(TASK_RUNNING);
  	return rc;
  }
  
  /* return the state of the serial control and status signals
   */
60b33c133   Alan Cox   tiocmget: kill of...
3225
  static int tiocmget(struct tty_struct *tty)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3226
  {
c9f19e96a   Alan Cox   tty: Remove some ...
3227
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
  	unsigned int result;
   	unsigned long flags;
  
  	spin_lock_irqsave(&info->lock,flags);
   	get_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
  		((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
  		((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
  		((info->serial_signals & SerialSignal_RI)  ? TIOCM_RNG:0) +
  		((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
  		((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s tiocmget() value=%08X
  ",
  			 __FILE__,__LINE__, info->device_name, result );
  	return result;
  }
  
  /* set modem control signals (DTR/RTS)
   */
20b9d1771   Alan Cox   tiocmset: kill th...
3251
3252
  static int tiocmset(struct tty_struct *tty,
  					unsigned int set, unsigned int clear)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3253
  {
c9f19e96a   Alan Cox   tty: Remove some ...
3254
  	SLMP_INFO *info = tty->driver_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
   	unsigned long flags;
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s tiocmset(%x,%x)
  ",
  			__FILE__,__LINE__,info->device_name, set, clear);
  
  	if (set & TIOCM_RTS)
  		info->serial_signals |= SerialSignal_RTS;
  	if (set & TIOCM_DTR)
  		info->serial_signals |= SerialSignal_DTR;
  	if (clear & TIOCM_RTS)
  		info->serial_signals &= ~SerialSignal_RTS;
  	if (clear & TIOCM_DTR)
  		info->serial_signals &= ~SerialSignal_DTR;
  
  	spin_lock_irqsave(&info->lock,flags);
   	set_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	return 0;
  }
31f35939d   Alan Cox   tty_port: Add a p...
3277
3278
3279
3280
  static int carrier_raised(struct tty_port *port)
  {
  	SLMP_INFO *info = container_of(port, SLMP_INFO, port);
  	unsigned long flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3281

31f35939d   Alan Cox   tty_port: Add a p...
3282
3283
3284
3285
3286
3287
  	spin_lock_irqsave(&info->lock,flags);
   	get_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	return (info->serial_signals & SerialSignal_DCD) ? 1 : 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3288

fcc8ac182   Alan Cox   tty: Add carrier ...
3289
  static void dtr_rts(struct tty_port *port, int on)
3e61696bd   Alan Cox   isicom: redo lock...
3290
3291
3292
3293
3294
  {
  	SLMP_INFO *info = container_of(port, SLMP_INFO, port);
  	unsigned long flags;
  
  	spin_lock_irqsave(&info->lock,flags);
fcc8ac182   Alan Cox   tty: Add carrier ...
3295
3296
3297
3298
  	if (on)
  		info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  	else
  		info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
3e61696bd   Alan Cox   isicom: redo lock...
3299
3300
3301
   	set_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3302
3303
3304
3305
3306
3307
3308
  /* Block the current process until the specified port is ready to open.
   */
  static int block_til_ready(struct tty_struct *tty, struct file *filp,
  			   SLMP_INFO *info)
  {
  	DECLARE_WAITQUEUE(wait, current);
  	int		retval;
0fab6de09   Joe Perches   synclink drivers ...
3309
3310
  	bool		do_clocal = false;
  	bool		extra_count = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3311
  	unsigned long	flags;
31f35939d   Alan Cox   tty_port: Add a p...
3312
3313
  	int		cd;
  	struct tty_port *port = &info->port;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3314
3315
3316
3317
3318
3319
3320
3321
3322
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s block_til_ready()
  ",
  			 __FILE__,__LINE__, tty->driver->name );
  
  	if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
  		/* nonblock mode is set or port is not enabled */
  		/* just verify that callout device is not active */
31f35939d   Alan Cox   tty_port: Add a p...
3323
  		port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3324
3325
3326
3327
  		return 0;
  	}
  
  	if (tty->termios->c_cflag & CLOCAL)
0fab6de09   Joe Perches   synclink drivers ...
3328
  		do_clocal = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3329
3330
3331
  
  	/* Wait for carrier detect and the line to become
  	 * free (i.e., not in use by the callout).  While we are in
31f35939d   Alan Cox   tty_port: Add a p...
3332
  	 * this loop, port->count is dropped by one, so that
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3333
3334
3335
3336
3337
  	 * close() knows when to free things.  We restore it upon
  	 * exit, either normal or abnormal.
  	 */
  
  	retval = 0;
31f35939d   Alan Cox   tty_port: Add a p...
3338
  	add_wait_queue(&port->open_wait, &wait);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3339
3340
3341
3342
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s block_til_ready() before block, count=%d
  ",
31f35939d   Alan Cox   tty_port: Add a p...
3343
  			 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3344
3345
3346
  
  	spin_lock_irqsave(&info->lock, flags);
  	if (!tty_hung_up_p(filp)) {
0fab6de09   Joe Perches   synclink drivers ...
3347
  		extra_count = true;
31f35939d   Alan Cox   tty_port: Add a p...
3348
  		port->count--;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3349
3350
  	}
  	spin_unlock_irqrestore(&info->lock, flags);
31f35939d   Alan Cox   tty_port: Add a p...
3351
  	port->blocked_open++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3352
3353
  
  	while (1) {
3e61696bd   Alan Cox   isicom: redo lock...
3354
3355
  		if (tty->termios->c_cflag & CBAUD)
  			tty_port_raise_dtr_rts(port);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3356
3357
  
  		set_current_state(TASK_INTERRUPTIBLE);
31f35939d   Alan Cox   tty_port: Add a p...
3358
3359
  		if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)){
  			retval = (port->flags & ASYNC_HUP_NOTIFY) ?
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3360
3361
3362
  					-EAGAIN : -ERESTARTSYS;
  			break;
  		}
31f35939d   Alan Cox   tty_port: Add a p...
3363
  		cd = tty_port_carrier_raised(port);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3364

31f35939d   Alan Cox   tty_port: Add a p...
3365
   		if (!(port->flags & ASYNC_CLOSING) && (do_clocal || cd))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3366
   			break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3367
3368
3369
3370
3371
3372
3373
3374
3375
  
  		if (signal_pending(current)) {
  			retval = -ERESTARTSYS;
  			break;
  		}
  
  		if (debug_level >= DEBUG_LEVEL_INFO)
  			printk("%s(%d):%s block_til_ready() count=%d
  ",
31f35939d   Alan Cox   tty_port: Add a p...
3376
  				 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3377

e142a31da   Arnd Bergmann   tty: release BTM ...
3378
  		tty_unlock();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3379
  		schedule();
e142a31da   Arnd Bergmann   tty: release BTM ...
3380
  		tty_lock();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3381
3382
3383
  	}
  
  	set_current_state(TASK_RUNNING);
31f35939d   Alan Cox   tty_port: Add a p...
3384
  	remove_wait_queue(&port->open_wait, &wait);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3385
3386
  
  	if (extra_count)
31f35939d   Alan Cox   tty_port: Add a p...
3387
3388
  		port->count++;
  	port->blocked_open--;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3389
3390
3391
3392
  
  	if (debug_level >= DEBUG_LEVEL_INFO)
  		printk("%s(%d):%s block_til_ready() after, count=%d
  ",
31f35939d   Alan Cox   tty_port: Add a p...
3393
  			 __FILE__,__LINE__, tty->driver->name, port->count );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3394
3395
  
  	if (!retval)
31f35939d   Alan Cox   tty_port: Add a p...
3396
  		port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3397
3398
3399
  
  	return retval;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3400
  static int alloc_dma_bufs(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
  {
  	unsigned short BuffersPerFrame;
  	unsigned short BufferCount;
  
  	// Force allocation to start at 64K boundary for each port.
  	// This is necessary because *all* buffer descriptors for a port
  	// *must* be in the same 64K block. All descriptors on a port
  	// share a common 'base' address (upper 8 bits of 24 bits) programmed
  	// into the CBP register.
  	info->port_array[0]->last_mem_alloc = (SCA_MEM_SIZE/4) * info->port_num;
  
  	/* Calculate the number of DMA buffers necessary to hold the */
  	/* largest allowable frame size. Note: If the max frame size is */
  	/* not an even multiple of the DMA buffer size then we need to */
  	/* round the buffer count per frame up one. */
  
  	BuffersPerFrame = (unsigned short)(info->max_frame_size/SCABUFSIZE);
  	if ( info->max_frame_size % SCABUFSIZE )
  		BuffersPerFrame++;
  
  	/* calculate total number of data buffers (SCABUFSIZE) possible
  	 * in one ports memory (SCA_MEM_SIZE/4) after allocating memory
  	 * for the descriptor list (BUFFERLISTSIZE).
  	 */
  	BufferCount = (SCA_MEM_SIZE/4 - BUFFERLISTSIZE)/SCABUFSIZE;
  
  	/* limit number of buffers to maximum amount of descriptors */
  	if (BufferCount > BUFFERLISTSIZE/sizeof(SCADESC))
  		BufferCount = BUFFERLISTSIZE/sizeof(SCADESC);
  
  	/* use enough buffers to transmit one max size frame */
  	info->tx_buf_count = BuffersPerFrame + 1;
  
  	/* never use more than half the available buffers for transmit */
  	if (info->tx_buf_count > (BufferCount/2))
  		info->tx_buf_count = BufferCount/2;
  
  	if (info->tx_buf_count > SCAMAXDESC)
  		info->tx_buf_count = SCAMAXDESC;
  
  	/* use remaining buffers for receive */
  	info->rx_buf_count = BufferCount - info->tx_buf_count;
  
  	if (info->rx_buf_count > SCAMAXDESC)
  		info->rx_buf_count = SCAMAXDESC;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk("%s(%d):%s Allocating %d TX and %d RX DMA buffers.
  ",
  			__FILE__,__LINE__, info->device_name,
  			info->tx_buf_count,info->rx_buf_count);
  
  	if ( alloc_buf_list( info ) < 0 ||
  		alloc_frame_bufs(info,
  		  			info->rx_buf_list,
  		  			info->rx_buf_list_ex,
  					info->rx_buf_count) < 0 ||
  		alloc_frame_bufs(info,
  					info->tx_buf_list,
  					info->tx_buf_list_ex,
  					info->tx_buf_count) < 0 ||
  		alloc_tmp_rx_buf(info) < 0 ) {
  		printk("%s(%d):%s Can't allocate DMA buffer memory
  ",
  			__FILE__,__LINE__, info->device_name);
  		return -ENOMEM;
  	}
  
  	rx_reset_buffers( info );
  
  	return 0;
  }
  
  /* Allocate DMA buffers for the transmit and receive descriptor lists.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
3476
  static int alloc_buf_list(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
  {
  	unsigned int i;
  
  	/* build list in adapter shared memory */
  	info->buffer_list = info->memory_base + info->port_array[0]->last_mem_alloc;
  	info->buffer_list_phys = info->port_array[0]->last_mem_alloc;
  	info->port_array[0]->last_mem_alloc += BUFFERLISTSIZE;
  
  	memset(info->buffer_list, 0, BUFFERLISTSIZE);
  
  	/* Save virtual address pointers to the receive and */
  	/* transmit buffer lists. (Receive 1st). These pointers will */
  	/* be used by the processor to access the lists. */
  	info->rx_buf_list = (SCADESC *)info->buffer_list;
  
  	info->tx_buf_list = (SCADESC *)info->buffer_list;
  	info->tx_buf_list += info->rx_buf_count;
  
  	/* Build links for circular buffer entry lists (tx and rx)
  	 *
  	 * Note: links are physical addresses read by the SCA device
  	 * to determine the next buffer entry to use.
  	 */
  
  	for ( i = 0; i < info->rx_buf_count; i++ ) {
  		/* calculate and store physical address of this buffer entry */
  		info->rx_buf_list_ex[i].phys_entry =
  			info->buffer_list_phys + (i * sizeof(SCABUFSIZE));
  
  		/* calculate and store physical address of */
  		/* next entry in cirular list of entries */
  		info->rx_buf_list[i].next = info->buffer_list_phys;
  		if ( i < info->rx_buf_count - 1 )
  			info->rx_buf_list[i].next += (i + 1) * sizeof(SCADESC);
  
  		info->rx_buf_list[i].length = SCABUFSIZE;
  	}
  
  	for ( i = 0; i < info->tx_buf_count; i++ ) {
  		/* calculate and store physical address of this buffer entry */
  		info->tx_buf_list_ex[i].phys_entry = info->buffer_list_phys +
  			((info->rx_buf_count + i) * sizeof(SCADESC));
  
  		/* calculate and store physical address of */
  		/* next entry in cirular list of entries */
  
  		info->tx_buf_list[i].next = info->buffer_list_phys +
  			info->rx_buf_count * sizeof(SCADESC);
  
  		if ( i < info->tx_buf_count - 1 )
  			info->tx_buf_list[i].next += (i + 1) * sizeof(SCADESC);
  	}
  
  	return 0;
  }
  
  /* Allocate the frame DMA buffers used by the specified buffer list.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
3535
  static int alloc_frame_bufs(SLMP_INFO *info, SCADESC *buf_list,SCADESC_EX *buf_list_ex,int count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
  {
  	int i;
  	unsigned long phys_addr;
  
  	for ( i = 0; i < count; i++ ) {
  		buf_list_ex[i].virt_addr = info->memory_base + info->port_array[0]->last_mem_alloc;
  		phys_addr = info->port_array[0]->last_mem_alloc;
  		info->port_array[0]->last_mem_alloc += SCABUFSIZE;
  
  		buf_list[i].buf_ptr  = (unsigned short)phys_addr;
  		buf_list[i].buf_base = (unsigned char)(phys_addr >> 16);
  	}
  
  	return 0;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3551
  static void free_dma_bufs(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3552
3553
3554
3555
3556
3557
3558
3559
3560
  {
  	info->buffer_list = NULL;
  	info->rx_buf_list = NULL;
  	info->tx_buf_list = NULL;
  }
  
  /* allocate buffer large enough to hold max_frame_size.
   * This buffer is used to pass an assembled frame to the line discipline.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
3561
  static int alloc_tmp_rx_buf(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3562
3563
3564
3565
3566
3567
  {
  	info->tmp_rx_buf = kmalloc(info->max_frame_size, GFP_KERNEL);
  	if (info->tmp_rx_buf == NULL)
  		return -ENOMEM;
  	return 0;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3568
  static void free_tmp_rx_buf(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3569
  {
735d5661d   Jesper Juhl   [PATCH] kfree cle...
3570
  	kfree(info->tmp_rx_buf);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3571
3572
  	info->tmp_rx_buf = NULL;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3573
  static int claim_resources(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3574
3575
3576
3577
3578
3579
3580
3581
3582
  {
  	if (request_mem_region(info->phys_memory_base,SCA_MEM_SIZE,"synclinkmp") == NULL) {
  		printk( "%s(%d):%s mem addr conflict, Addr=%08X
  ",
  			__FILE__,__LINE__,info->device_name, info->phys_memory_base);
  		info->init_error = DiagStatus_AddressConflict;
  		goto errout;
  	}
  	else
0fab6de09   Joe Perches   synclink drivers ...
3583
  		info->shared_mem_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3584
3585
3586
3587
3588
3589
3590
3591
3592
  
  	if (request_mem_region(info->phys_lcr_base + info->lcr_offset,128,"synclinkmp") == NULL) {
  		printk( "%s(%d):%s lcr mem addr conflict, Addr=%08X
  ",
  			__FILE__,__LINE__,info->device_name, info->phys_lcr_base);
  		info->init_error = DiagStatus_AddressConflict;
  		goto errout;
  	}
  	else
0fab6de09   Joe Perches   synclink drivers ...
3593
  		info->lcr_mem_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3594
3595
3596
3597
3598
3599
3600
3601
3602
  
  	if (request_mem_region(info->phys_sca_base + info->sca_offset,SCA_BASE_SIZE,"synclinkmp") == NULL) {
  		printk( "%s(%d):%s sca mem addr conflict, Addr=%08X
  ",
  			__FILE__,__LINE__,info->device_name, info->phys_sca_base);
  		info->init_error = DiagStatus_AddressConflict;
  		goto errout;
  	}
  	else
0fab6de09   Joe Perches   synclink drivers ...
3603
  		info->sca_base_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3604
3605
3606
3607
3608
3609
3610
3611
3612
  
  	if (request_mem_region(info->phys_statctrl_base + info->statctrl_offset,SCA_REG_SIZE,"synclinkmp") == NULL) {
  		printk( "%s(%d):%s stat/ctrl mem addr conflict, Addr=%08X
  ",
  			__FILE__,__LINE__,info->device_name, info->phys_statctrl_base);
  		info->init_error = DiagStatus_AddressConflict;
  		goto errout;
  	}
  	else
0fab6de09   Joe Perches   synclink drivers ...
3613
  		info->sca_statctrl_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3614

24cb23352   Alan Cox   char serial: swit...
3615
3616
  	info->memory_base = ioremap_nocache(info->phys_memory_base,
  								SCA_MEM_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3617
  	if (!info->memory_base) {
25985edce   Lucas De Marchi   Fix common misspe...
3618
3619
  		printk( "%s(%d):%s Can't map shared memory, MemAddr=%08X
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3620
3621
3622
3623
  			__FILE__,__LINE__,info->device_name, info->phys_memory_base );
  		info->init_error = DiagStatus_CantAssignPciResources;
  		goto errout;
  	}
24cb23352   Alan Cox   char serial: swit...
3624
  	info->lcr_base = ioremap_nocache(info->phys_lcr_base, PAGE_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3625
  	if (!info->lcr_base) {
25985edce   Lucas De Marchi   Fix common misspe...
3626
3627
  		printk( "%s(%d):%s Can't map LCR memory, MemAddr=%08X
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3628
3629
3630
3631
3632
  			__FILE__,__LINE__,info->device_name, info->phys_lcr_base );
  		info->init_error = DiagStatus_CantAssignPciResources;
  		goto errout;
  	}
  	info->lcr_base += info->lcr_offset;
24cb23352   Alan Cox   char serial: swit...
3633
  	info->sca_base = ioremap_nocache(info->phys_sca_base, PAGE_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3634
  	if (!info->sca_base) {
25985edce   Lucas De Marchi   Fix common misspe...
3635
3636
  		printk( "%s(%d):%s Can't map SCA memory, MemAddr=%08X
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3637
3638
3639
3640
3641
  			__FILE__,__LINE__,info->device_name, info->phys_sca_base );
  		info->init_error = DiagStatus_CantAssignPciResources;
  		goto errout;
  	}
  	info->sca_base += info->sca_offset;
24cb23352   Alan Cox   char serial: swit...
3642
3643
  	info->statctrl_base = ioremap_nocache(info->phys_statctrl_base,
  								PAGE_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3644
  	if (!info->statctrl_base) {
25985edce   Lucas De Marchi   Fix common misspe...
3645
3646
  		printk( "%s(%d):%s Can't map SCA Status/Control memory, MemAddr=%08X
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
  			__FILE__,__LINE__,info->device_name, info->phys_statctrl_base );
  		info->init_error = DiagStatus_CantAssignPciResources;
  		goto errout;
  	}
  	info->statctrl_base += info->statctrl_offset;
  
  	if ( !memory_test(info) ) {
  		printk( "%s(%d):Shared Memory Test failed for device %s MemAddr=%08X
  ",
  			__FILE__,__LINE__,info->device_name, info->phys_memory_base );
  		info->init_error = DiagStatus_MemoryError;
  		goto errout;
  	}
  
  	return 0;
  
  errout:
  	release_resources( info );
  	return -ENODEV;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3667
  static void release_resources(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3668
3669
3670
3671
3672
3673
3674
3675
  {
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):%s release_resources() entry
  ",
  			__FILE__,__LINE__,info->device_name );
  
  	if ( info->irq_requested ) {
  		free_irq(info->irq_level, info);
0fab6de09   Joe Perches   synclink drivers ...
3676
  		info->irq_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3677
3678
3679
3680
  	}
  
  	if ( info->shared_mem_requested ) {
  		release_mem_region(info->phys_memory_base,SCA_MEM_SIZE);
0fab6de09   Joe Perches   synclink drivers ...
3681
  		info->shared_mem_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3682
3683
3684
  	}
  	if ( info->lcr_mem_requested ) {
  		release_mem_region(info->phys_lcr_base + info->lcr_offset,128);
0fab6de09   Joe Perches   synclink drivers ...
3685
  		info->lcr_mem_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3686
3687
3688
  	}
  	if ( info->sca_base_requested ) {
  		release_mem_region(info->phys_sca_base + info->sca_offset,SCA_BASE_SIZE);
0fab6de09   Joe Perches   synclink drivers ...
3689
  		info->sca_base_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3690
3691
3692
  	}
  	if ( info->sca_statctrl_requested ) {
  		release_mem_region(info->phys_statctrl_base + info->statctrl_offset,SCA_REG_SIZE);
0fab6de09   Joe Perches   synclink drivers ...
3693
  		info->sca_statctrl_requested = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
  	}
  
  	if (info->memory_base){
  		iounmap(info->memory_base);
  		info->memory_base = NULL;
  	}
  
  	if (info->sca_base) {
  		iounmap(info->sca_base - info->sca_offset);
  		info->sca_base=NULL;
  	}
  
  	if (info->statctrl_base) {
  		iounmap(info->statctrl_base - info->statctrl_offset);
  		info->statctrl_base=NULL;
  	}
  
  	if (info->lcr_base){
  		iounmap(info->lcr_base - info->lcr_offset);
  		info->lcr_base = NULL;
  	}
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):%s release_resources() exit
  ",
  			__FILE__,__LINE__,info->device_name );
  }
  
  /* Add the specified device instance data structure to the
   * global linked list of devices and increment the device count.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
3725
  static void add_device(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3726
3727
3728
3729
3730
3731
3732
3733
  {
  	info->next_device = NULL;
  	info->line = synclinkmp_device_count;
  	sprintf(info->device_name,"ttySLM%dp%d",info->adapter_num,info->port_num);
  
  	if (info->line < MAX_DEVICES) {
  		if (maxframe[info->line])
  			info->max_frame_size = maxframe[info->line];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
  	}
  
  	synclinkmp_device_count++;
  
  	if ( !synclinkmp_device_list )
  		synclinkmp_device_list = info;
  	else {
  		SLMP_INFO *current_dev = synclinkmp_device_list;
  		while( current_dev->next_device )
  			current_dev = current_dev->next_device;
  		current_dev->next_device = info;
  	}
  
  	if ( info->max_frame_size < 4096 )
  		info->max_frame_size = 4096;
  	else if ( info->max_frame_size > 65535 )
  		info->max_frame_size = 65535;
  
  	printk( "SyncLink MultiPort %s: "
  		"Mem=(%08x %08X %08x %08X) IRQ=%d MaxFrameSize=%u
  ",
  		info->device_name,
  		info->phys_sca_base,
  		info->phys_memory_base,
  		info->phys_statctrl_base,
  		info->phys_lcr_base,
  		info->irq_level,
  		info->max_frame_size );
af69c7f92   Paul Fulghum   [PATCH] generic H...
3762
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3763
3764
3765
  	hdlcdev_init(info);
  #endif
  }
31f35939d   Alan Cox   tty_port: Add a p...
3766
3767
  static const struct tty_port_operations port_ops = {
  	.carrier_raised = carrier_raised,
fcc8ac182   Alan Cox   tty: Add carrier ...
3768
  	.dtr_rts = dtr_rts,
31f35939d   Alan Cox   tty_port: Add a p...
3769
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3770
3771
3772
3773
3774
3775
3776
  /* Allocate and initialize a device instance structure
   *
   * Return Value:	pointer to SLMP_INFO if success, otherwise NULL
   */
  static SLMP_INFO *alloc_dev(int adapter_num, int port_num, struct pci_dev *pdev)
  {
  	SLMP_INFO *info;
dd00cc486   Yoann Padioleau   some kmalloc/mems...
3777
  	info = kzalloc(sizeof(SLMP_INFO),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3778
3779
3780
3781
3782
3783
3784
  		 GFP_KERNEL);
  
  	if (!info) {
  		printk("%s(%d) Error can't allocate device instance data for adapter %d, port %d
  ",
  			__FILE__,__LINE__, adapter_num, port_num);
  	} else {
44b7d1b37   Alan Cox   tty: add more tty...
3785
  		tty_port_init(&info->port);
31f35939d   Alan Cox   tty_port: Add a p...
3786
  		info->port.ops = &port_ops;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3787
  		info->magic = MGSL_MAGIC;
c4028958b   David Howells   WorkStruct: make ...
3788
  		INIT_WORK(&info->task, bh_handler);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3789
  		info->max_frame_size = 4096;
44b7d1b37   Alan Cox   tty: add more tty...
3790
3791
  		info->port.close_delay = 5*HZ/10;
  		info->port.closing_wait = 30*HZ;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
  		init_waitqueue_head(&info->status_event_wait_q);
  		init_waitqueue_head(&info->event_wait_q);
  		spin_lock_init(&info->netlock);
  		memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
  		info->idle_mode = HDLC_TXIDLE_FLAGS;
  		info->adapter_num = adapter_num;
  		info->port_num = port_num;
  
  		/* Copy configuration info to device instance data */
  		info->irq_level = pdev->irq;
  		info->phys_lcr_base = pci_resource_start(pdev,0);
  		info->phys_sca_base = pci_resource_start(pdev,2);
  		info->phys_memory_base = pci_resource_start(pdev,3);
  		info->phys_statctrl_base = pci_resource_start(pdev,4);
  
  		/* Because veremap only works on page boundaries we must map
  		 * a larger area than is actually implemented for the LCR
  		 * memory range. We map a full page starting at the page boundary.
  		 */
  		info->lcr_offset    = info->phys_lcr_base & (PAGE_SIZE-1);
  		info->phys_lcr_base &= ~(PAGE_SIZE-1);
  
  		info->sca_offset    = info->phys_sca_base & (PAGE_SIZE-1);
  		info->phys_sca_base &= ~(PAGE_SIZE-1);
  
  		info->statctrl_offset    = info->phys_statctrl_base & (PAGE_SIZE-1);
  		info->phys_statctrl_base &= ~(PAGE_SIZE-1);
  
  		info->bus_type = MGSL_BUS_TYPE_PCI;
0f2ed4c6b   Thomas Gleixner   [PATCH] irq-flags...
3821
  		info->irq_flags = IRQF_SHARED;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3822

40565f196   Jiri Slaby   [PATCH] Char: tim...
3823
3824
3825
  		setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
  		setup_timer(&info->status_timer, status_timeout,
  				(unsigned long)info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
  
  		/* Store the PCI9050 misc control register value because a flaw
  		 * in the PCI9050 prevents LCR registers from being read if
  		 * BIOS assigns an LCR base address with bit 7 set.
  		 *
  		 * Only the misc control register is accessed for which only
  		 * write access is needed, so set an initial value and change
  		 * bits to the device instance data as we write the value
  		 * to the actual misc control register.
  		 */
  		info->misc_ctrl_value = 0x087e4546;
  
  		/* initial port state is unknown - if startup errors
  		 * occur, init_error will be set to indicate the
  		 * problem. Once the port is fully initialized,
  		 * this value will be set to 0 to indicate the
  		 * port is available.
  		 */
  		info->init_error = -1;
  	}
  
  	return info;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
3849
  static void device_init(int adapter_num, struct pci_dev *pdev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
  {
  	SLMP_INFO *port_array[SCA_MAX_PORTS];
  	int port;
  
  	/* allocate device instances for up to SCA_MAX_PORTS devices */
  	for ( port = 0; port < SCA_MAX_PORTS; ++port ) {
  		port_array[port] = alloc_dev(adapter_num,port,pdev);
  		if( port_array[port] == NULL ) {
  			for ( --port; port >= 0; --port )
  				kfree(port_array[port]);
  			return;
  		}
  	}
  
  	/* give copy of port_array to all ports and add to device list  */
  	for ( port = 0; port < SCA_MAX_PORTS; ++port ) {
  		memcpy(port_array[port]->port_array,port_array,sizeof(port_array));
  		add_device( port_array[port] );
  		spin_lock_init(&port_array[port]->lock);
  	}
  
  	/* Allocate and claim adapter resources */
  	if ( !claim_resources(port_array[0]) ) {
  
  		alloc_dma_bufs(port_array[0]);
  
  		/* copy resource information from first port to others */
  		for ( port = 1; port < SCA_MAX_PORTS; ++port ) {
  			port_array[port]->lock  = port_array[0]->lock;
  			port_array[port]->irq_level     = port_array[0]->irq_level;
  			port_array[port]->memory_base   = port_array[0]->memory_base;
  			port_array[port]->sca_base      = port_array[0]->sca_base;
  			port_array[port]->statctrl_base = port_array[0]->statctrl_base;
  			port_array[port]->lcr_base      = port_array[0]->lcr_base;
  			alloc_dma_bufs(port_array[port]);
  		}
  
  		if ( request_irq(port_array[0]->irq_level,
  					synclinkmp_interrupt,
  					port_array[0]->irq_flags,
  					port_array[0]->device_name,
  					port_array[0]) < 0 ) {
25985edce   Lucas De Marchi   Fix common misspe...
3892
3893
  			printk( "%s(%d):%s Can't request interrupt, IRQ=%d
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3894
3895
3896
3897
3898
  				__FILE__,__LINE__,
  				port_array[0]->device_name,
  				port_array[0]->irq_level );
  		}
  		else {
0fab6de09   Joe Perches   synclink drivers ...
3899
  			port_array[0]->irq_requested = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3900
3901
3902
3903
  			adapter_test(port_array[0]);
  		}
  	}
  }
b68e31d0e   Jeff Dike   [PATCH] const str...
3904
  static const struct tty_operations ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
  	.open = open,
  	.close = close,
  	.write = write,
  	.put_char = put_char,
  	.flush_chars = flush_chars,
  	.write_room = write_room,
  	.chars_in_buffer = chars_in_buffer,
  	.flush_buffer = flush_buffer,
  	.ioctl = ioctl,
  	.throttle = throttle,
  	.unthrottle = unthrottle,
  	.send_xchar = send_xchar,
  	.break_ctl = set_break,
  	.wait_until_sent = wait_until_sent,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3919
3920
3921
3922
3923
3924
  	.set_termios = set_termios,
  	.stop = tx_hold,
  	.start = tx_release,
  	.hangup = hangup,
  	.tiocmget = tiocmget,
  	.tiocmset = tiocmset,
0587102cf   Alan Cox   tty: icount chang...
3925
  	.get_icount = get_icount,
e6c8dd8a5   Alexey Dobriyan   proc tty: switch ...
3926
  	.proc_fops = &synclinkmp_proc_fops,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3927
  };
31f35939d   Alan Cox   tty_port: Add a p...
3928

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
  static void synclinkmp_cleanup(void)
  {
  	int rc;
  	SLMP_INFO *info;
  	SLMP_INFO *tmp;
  
  	printk("Unloading %s %s
  ", driver_name, driver_version);
  
  	if (serial_driver) {
  		if ((rc = tty_unregister_driver(serial_driver)))
  			printk("%s(%d) failed to unregister tty driver err=%d
  ",
  			       __FILE__,__LINE__,rc);
  		put_tty_driver(serial_driver);
  	}
  
  	/* reset devices */
  	info = synclinkmp_device_list;
  	while(info) {
  		reset_port(info);
  		info = info->next_device;
  	}
  
  	/* release devices */
  	info = synclinkmp_device_list;
  	while(info) {
af69c7f92   Paul Fulghum   [PATCH] generic H...
3956
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
  		hdlcdev_exit(info);
  #endif
  		free_dma_bufs(info);
  		free_tmp_rx_buf(info);
  		if ( info->port_num == 0 ) {
  			if (info->sca_base)
  				write_reg(info, LPR, 1); /* set low power mode */
  			release_resources(info);
  		}
  		tmp = info;
  		info = info->next_device;
  		kfree(tmp);
  	}
  
  	pci_unregister_driver(&synclinkmp_pci_driver);
  }
  
  /* Driver initialization entry point.
   */
  
  static int __init synclinkmp_init(void)
  {
  	int rc;
  
  	if (break_on_load) {
  	 	synclinkmp_get_text_ptr();
    		BREAKPOINT();
  	}
  
   	printk("%s %s
  ", driver_name, driver_version);
  
  	if ((rc = pci_register_driver(&synclinkmp_pci_driver)) < 0) {
  		printk("%s:failed to register PCI driver, error=%d
  ",__FILE__,rc);
  		return rc;
  	}
  
  	serial_driver = alloc_tty_driver(128);
  	if (!serial_driver) {
  		rc = -ENOMEM;
  		goto error;
  	}
  
  	/* Initialize the tty_driver structure */
  
  	serial_driver->owner = THIS_MODULE;
  	serial_driver->driver_name = "synclinkmp";
  	serial_driver->name = "ttySLM";
  	serial_driver->major = ttymajor;
  	serial_driver->minor_start = 64;
  	serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
  	serial_driver->subtype = SERIAL_TYPE_NORMAL;
  	serial_driver->init_termios = tty_std_termios;
  	serial_driver->init_termios.c_cflag =
  		B9600 | CS8 | CREAD | HUPCL | CLOCAL;
606d099cd   Alan Cox   [PATCH] tty: swit...
4013
4014
  	serial_driver->init_termios.c_ispeed = 9600;
  	serial_driver->init_termios.c_ospeed = 9600;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
  	serial_driver->flags = TTY_DRIVER_REAL_RAW;
  	tty_set_operations(serial_driver, &ops);
  	if ((rc = tty_register_driver(serial_driver)) < 0) {
  		printk("%s(%d):Couldn't register serial driver
  ",
  			__FILE__,__LINE__);
  		put_tty_driver(serial_driver);
  		serial_driver = NULL;
  		goto error;
  	}
  
   	printk("%s %s, tty major#%d
  ",
  		driver_name, driver_version,
  		serial_driver->major);
  
  	return 0;
  
  error:
  	synclinkmp_cleanup();
  	return rc;
  }
  
  static void __exit synclinkmp_exit(void)
  {
  	synclinkmp_cleanup();
  }
  
  module_init(synclinkmp_init);
  module_exit(synclinkmp_exit);
  
  /* Set the port for internal loopback mode.
   * The TxCLK and RxCLK signals are generated from the BRG and
   * the TxD is looped back to the RxD internally.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4050
  static void enable_loopback(SLMP_INFO *info, int enable)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
  {
  	if (enable) {
  		/* MD2 (Mode Register 2)
  		 * 01..00  CNCT<1..0> Channel Connection 11=Local Loopback
  		 */
  		write_reg(info, MD2, (unsigned char)(read_reg(info, MD2) | (BIT1 + BIT0)));
  
  		/* degate external TxC clock source */
  		info->port_array[0]->ctrlreg_value |= (BIT0 << (info->port_num * 2));
  		write_control_reg(info);
  
  		/* RXS/TXS (Rx/Tx clock source)
  		 * 07      Reserved, must be 0
  		 * 06..04  Clock Source, 100=BRG
  		 * 03..00  Clock Divisor, 0000=1
  		 */
  		write_reg(info, RXS, 0x40);
  		write_reg(info, TXS, 0x40);
  
  	} else {
  		/* MD2 (Mode Register 2)
  	 	 * 01..00  CNCT<1..0> Channel connection, 0=normal
  		 */
  		write_reg(info, MD2, (unsigned char)(read_reg(info, MD2) & ~(BIT1 + BIT0)));
  
  		/* RXS/TXS (Rx/Tx clock source)
  		 * 07      Reserved, must be 0
  		 * 06..04  Clock Source, 000=RxC/TxC Pin
  		 * 03..00  Clock Divisor, 0000=1
  		 */
  		write_reg(info, RXS, 0x00);
  		write_reg(info, TXS, 0x00);
  	}
  
  	/* set LinkSpeed if available, otherwise default to 2Mbps */
  	if (info->params.clock_speed)
  		set_rate(info, info->params.clock_speed);
  	else
  		set_rate(info, 3686400);
  }
  
  /* Set the baud rate register to the desired speed
   *
   *	data_rate	data rate of clock in bits per second
   *			A data rate of 0 disables the AUX clock.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4097
  static void set_rate( SLMP_INFO *info, u32 data_rate )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
  {
         	u32 TMCValue;
         	unsigned char BRValue;
  	u32 Divisor=0;
  
  	/* fBRG = fCLK/(TMC * 2^BR)
  	 */
  	if (data_rate != 0) {
  		Divisor = 14745600/data_rate;
  		if (!Divisor)
  			Divisor = 1;
  
  		TMCValue = Divisor;
  
  		BRValue = 0;
  		if (TMCValue != 1 && TMCValue != 2) {
  			/* BRValue of 0 provides 50/50 duty cycle *only* when
  			 * TMCValue is 1 or 2. BRValue of 1 to 9 always provides
  			 * 50/50 duty cycle.
  			 */
  			BRValue = 1;
  			TMCValue >>= 1;
  		}
  
  		/* while TMCValue is too big for TMC register, divide
  		 * by 2 and increment BR exponent.
  		 */
  		for(; TMCValue > 256 && BRValue < 10; BRValue++)
  			TMCValue >>= 1;
  
  		write_reg(info, TXS,
  			(unsigned char)((read_reg(info, TXS) & 0xf0) | BRValue));
  		write_reg(info, RXS,
  			(unsigned char)((read_reg(info, RXS) & 0xf0) | BRValue));
  		write_reg(info, TMC, (unsigned char)TMCValue);
  	}
  	else {
  		write_reg(info, TXS,0);
  		write_reg(info, RXS,0);
  		write_reg(info, TMC, 0);
  	}
  }
  
  /* Disable receiver
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4143
  static void rx_stop(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
  {
  	if (debug_level >= DEBUG_LEVEL_ISR)
  		printk("%s(%d):%s rx_stop()
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	write_reg(info, CMD, RXRESET);
  
  	info->ie0_value &= ~RXRDYE;
  	write_reg(info, IE0, info->ie0_value);	/* disable Rx data interrupts */
  
  	write_reg(info, RXDMA + DSR, 0);	/* disable Rx DMA */
  	write_reg(info, RXDMA + DCMD, SWABORT);	/* reset/init Rx DMA */
  	write_reg(info, RXDMA + DIR, 0);	/* disable Rx DMA interrupts */
0fab6de09   Joe Perches   synclink drivers ...
4158
4159
  	info->rx_enabled = false;
  	info->rx_overflow = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4160
4161
4162
4163
  }
  
  /* enable the receiver
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4164
  static void rx_start(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
  {
  	int i;
  
  	if (debug_level >= DEBUG_LEVEL_ISR)
  		printk("%s(%d):%s rx_start()
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	write_reg(info, CMD, RXRESET);
  
  	if ( info->params.mode == MGSL_MODE_HDLC ) {
  		/* HDLC, disabe IRQ on rxdata */
  		info->ie0_value &= ~RXRDYE;
  		write_reg(info, IE0, info->ie0_value);
  
  		/* Reset all Rx DMA buffers and program rx dma */
  		write_reg(info, RXDMA + DSR, 0);		/* disable Rx DMA */
  		write_reg(info, RXDMA + DCMD, SWABORT);	/* reset/init Rx DMA */
  
  		for (i = 0; i < info->rx_buf_count; i++) {
  			info->rx_buf_list[i].status = 0xff;
  
  			// throttle to 4 shared memory writes at a time to prevent
  			// hogging local bus (keep latency time for DMA requests low).
  			if (!(i % 4))
  				read_status_reg(info);
  		}
  		info->current_rx_buf = 0;
  
  		/* set current/1st descriptor address */
  		write_reg16(info, RXDMA + CDA,
  			info->rx_buf_list_ex[0].phys_entry);
  
  		/* set new last rx descriptor address */
  		write_reg16(info, RXDMA + EDA,
  			info->rx_buf_list_ex[info->rx_buf_count - 1].phys_entry);
  
  		/* set buffer length (shared by all rx dma data buffers) */
  		write_reg16(info, RXDMA + BFL, SCABUFSIZE);
  
  		write_reg(info, RXDMA + DIR, 0x60);	/* enable Rx DMA interrupts (EOM/BOF) */
  		write_reg(info, RXDMA + DSR, 0xf2);	/* clear Rx DMA IRQs, enable Rx DMA */
  	} else {
  		/* async, enable IRQ on rxdata */
  		info->ie0_value |= RXRDYE;
  		write_reg(info, IE0, info->ie0_value);
  	}
  
  	write_reg(info, CMD, RXENABLE);
0fab6de09   Joe Perches   synclink drivers ...
4214
4215
  	info->rx_overflow = false;
  	info->rx_enabled = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4216
4217
4218
4219
4220
  }
  
  /* Enable the transmitter and send a transmit frame if
   * one is loaded in the DMA buffers.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4221
  static void tx_start(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4222
4223
4224
4225
4226
4227
4228
4229
4230
  {
  	if (debug_level >= DEBUG_LEVEL_ISR)
  		printk("%s(%d):%s tx_start() tx_count=%d
  ",
  			 __FILE__,__LINE__, info->device_name,info->tx_count );
  
  	if (!info->tx_enabled ) {
  		write_reg(info, CMD, TXRESET);
  		write_reg(info, CMD, TXENABLE);
0fab6de09   Joe Perches   synclink drivers ...
4231
  		info->tx_enabled = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4232
4233
4234
4235
4236
4237
4238
  	}
  
  	if ( info->tx_count ) {
  
  		/* If auto RTS enabled and RTS is inactive, then assert */
  		/* RTS and set a flag indicating that the driver should */
  		/* negate RTS when the transmission completes. */
0fab6de09   Joe Perches   synclink drivers ...
4239
  		info->drop_rts_on_tx_done = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4240
4241
4242
4243
4244
4245
4246
4247
  
  		if (info->params.mode != MGSL_MODE_ASYNC) {
  
  			if ( info->params.flags & HDLC_FLAG_AUTO_RTS ) {
  				get_signals( info );
  				if ( !(info->serial_signals & SerialSignal_RTS) ) {
  					info->serial_signals |= SerialSignal_RTS;
  					set_signals( info );
0fab6de09   Joe Perches   synclink drivers ...
4248
  					info->drop_rts_on_tx_done = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
  				}
  			}
  
  			write_reg16(info, TRC0,
  				(unsigned short)(((tx_negate_fifo_level-1)<<8) + tx_active_fifo_level));
  
  			write_reg(info, TXDMA + DSR, 0); 		/* disable DMA channel */
  			write_reg(info, TXDMA + DCMD, SWABORT);	/* reset/init DMA channel */
  	
  			/* set TX CDA (current descriptor address) */
  			write_reg16(info, TXDMA + CDA,
  				info->tx_buf_list_ex[0].phys_entry);
  	
  			/* set TX EDA (last descriptor address) */
  			write_reg16(info, TXDMA + EDA,
  				info->tx_buf_list_ex[info->last_tx_buf].phys_entry);
  	
  			/* enable underrun IRQ */
  			info->ie1_value &= ~IDLE;
  			info->ie1_value |= UDRN;
  			write_reg(info, IE1, info->ie1_value);
  			write_reg(info, SR1, (unsigned char)(IDLE + UDRN));
  	
  			write_reg(info, TXDMA + DIR, 0x40);		/* enable Tx DMA interrupts (EOM) */
  			write_reg(info, TXDMA + DSR, 0xf2);		/* clear Tx DMA IRQs, enable Tx DMA */
  	
40565f196   Jiri Slaby   [PATCH] Char: tim...
4275
4276
  			mod_timer(&info->tx_timer, jiffies +
  					msecs_to_jiffies(5000));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4277
4278
4279
4280
4281
4282
4283
  		}
  		else {
  			tx_load_fifo(info);
  			/* async, enable IRQ on txdata */
  			info->ie0_value |= TXRDYE;
  			write_reg(info, IE0, info->ie0_value);
  		}
0fab6de09   Joe Perches   synclink drivers ...
4284
  		info->tx_active = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4285
4286
4287
4288
4289
  	}
  }
  
  /* stop the transmitter and DMA
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4290
  static void tx_stop( SLMP_INFO *info )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
  {
  	if (debug_level >= DEBUG_LEVEL_ISR)
  		printk("%s(%d):%s tx_stop()
  ",
  			 __FILE__,__LINE__, info->device_name );
  
  	del_timer(&info->tx_timer);
  
  	write_reg(info, TXDMA + DSR, 0);		/* disable DMA channel */
  	write_reg(info, TXDMA + DCMD, SWABORT);	/* reset/init DMA channel */
  
  	write_reg(info, CMD, TXRESET);
  
  	info->ie1_value &= ~(UDRN + IDLE);
  	write_reg(info, IE1, info->ie1_value);	/* disable tx status interrupts */
  	write_reg(info, SR1, (unsigned char)(IDLE + UDRN));	/* clear pending */
  
  	info->ie0_value &= ~TXRDYE;
  	write_reg(info, IE0, info->ie0_value);	/* disable tx data interrupts */
0fab6de09   Joe Perches   synclink drivers ...
4310
4311
  	info->tx_enabled = false;
  	info->tx_active = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4312
4313
4314
4315
4316
  }
  
  /* Fill the transmit FIFO until the FIFO is full or
   * there is no more data to load.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4317
  static void tx_load_fifo(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
  {
  	u8 TwoBytes[2];
  
  	/* do nothing is now tx data available and no XON/XOFF pending */
  
  	if ( !info->tx_count && !info->x_char )
  		return;
  
  	/* load the Transmit FIFO until FIFOs full or all data sent */
  
  	while( info->tx_count && (read_reg(info,SR0) & BIT1) ) {
  
  		/* there is more space in the transmit FIFO and */
  		/* there is more data in transmit buffer */
  
  		if ( (info->tx_count > 1) && !info->x_char ) {
   			/* write 16-bits */
  			TwoBytes[0] = info->tx_buf[info->tx_get++];
  			if (info->tx_get >= info->max_frame_size)
  				info->tx_get -= info->max_frame_size;
  			TwoBytes[1] = info->tx_buf[info->tx_get++];
  			if (info->tx_get >= info->max_frame_size)
  				info->tx_get -= info->max_frame_size;
  
  			write_reg16(info, TRB, *((u16 *)TwoBytes));
  
  			info->tx_count -= 2;
  			info->icount.tx += 2;
  		} else {
  			/* only 1 byte left to transmit or 1 FIFO slot left */
  
  			if (info->x_char) {
  				/* transmit pending high priority char */
  				write_reg(info, TRB, info->x_char);
  				info->x_char = 0;
  			} else {
  				write_reg(info, TRB, info->tx_buf[info->tx_get++]);
  				if (info->tx_get >= info->max_frame_size)
  					info->tx_get -= info->max_frame_size;
  				info->tx_count--;
  			}
  			info->icount.tx++;
  		}
  	}
  }
  
  /* Reset a port to a known state
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4366
  static void reset_port(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
  {
  	if (info->sca_base) {
  
  		tx_stop(info);
  		rx_stop(info);
  
  		info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
  		set_signals(info);
  
  		/* disable all port interrupts */
  		info->ie0_value = 0;
  		info->ie1_value = 0;
  		info->ie2_value = 0;
  		write_reg(info, IE0, info->ie0_value);
  		write_reg(info, IE1, info->ie1_value);
  		write_reg(info, IE2, info->ie2_value);
  
  		write_reg(info, CMD, CHRESET);
  	}
  }
  
  /* Reset all the ports to a known state.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4390
  static void reset_adapter(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
  {
  	int i;
  
  	for ( i=0; i < SCA_MAX_PORTS; ++i) {
  		if (info->port_array[i])
  			reset_port(info->port_array[i]);
  	}
  }
  
  /* Program port for asynchronous communications.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4402
  static void async_mode(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
  {
  
    	unsigned char RegValue;
  
  	tx_stop(info);
  	rx_stop(info);
  
  	/* MD0, Mode Register 0
  	 *
  	 * 07..05  PRCTL<2..0>, Protocol Mode, 000=async
  	 * 04      AUTO, Auto-enable (RTS/CTS/DCD)
  	 * 03      Reserved, must be 0
  	 * 02      CRCCC, CRC Calculation, 0=disabled
  	 * 01..00  STOP<1..0> Stop bits (00=1,10=2)
  	 *
  	 * 0000 0000
  	 */
  	RegValue = 0x00;
  	if (info->params.stop_bits != 1)
  		RegValue |= BIT1;
  	write_reg(info, MD0, RegValue);
  
  	/* MD1, Mode Register 1
  	 *
  	 * 07..06  BRATE<1..0>, bit rate, 00=1/1 01=1/16 10=1/32 11=1/64
  	 * 05..04  TXCHR<1..0>, tx char size, 00=8 bits,01=7,10=6,11=5
  	 * 03..02  RXCHR<1..0>, rx char size
  	 * 01..00  PMPM<1..0>, Parity mode, 00=none 10=even 11=odd
  	 *
  	 * 0100 0000
  	 */
  	RegValue = 0x40;
  	switch (info->params.data_bits) {
  	case 7: RegValue |= BIT4 + BIT2; break;
  	case 6: RegValue |= BIT5 + BIT3; break;
  	case 5: RegValue |= BIT5 + BIT4 + BIT3 + BIT2; break;
  	}
  	if (info->params.parity != ASYNC_PARITY_NONE) {
  		RegValue |= BIT1;
  		if (info->params.parity == ASYNC_PARITY_ODD)
  			RegValue |= BIT0;
  	}
  	write_reg(info, MD1, RegValue);
  
  	/* MD2, Mode Register 2
  	 *
  	 * 07..02  Reserved, must be 0
6e8dcee3e   Paul Fulghum   [PATCH] synclinkm...
4450
  	 * 01..00  CNCT<1..0> Channel connection, 00=normal 11=local loopback
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4451
4452
4453
4454
  	 *
  	 * 0000 0000
  	 */
  	RegValue = 0x00;
6e8dcee3e   Paul Fulghum   [PATCH] synclinkm...
4455
4456
  	if (info->params.loopback)
  		RegValue |= (BIT1 + BIT0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
  	write_reg(info, MD2, RegValue);
  
  	/* RXS, Receive clock source
  	 *
  	 * 07      Reserved, must be 0
  	 * 06..04  RXCS<2..0>, clock source, 000=RxC Pin, 100=BRG, 110=DPLL
  	 * 03..00  RXBR<3..0>, rate divisor, 0000=1
  	 */
  	RegValue=BIT6;
  	write_reg(info, RXS, RegValue);
  
  	/* TXS, Transmit clock source
  	 *
  	 * 07      Reserved, must be 0
  	 * 06..04  RXCS<2..0>, clock source, 000=TxC Pin, 100=BRG, 110=Receive Clock
  	 * 03..00  RXBR<3..0>, rate divisor, 0000=1
  	 */
  	RegValue=BIT6;
  	write_reg(info, TXS, RegValue);
  
  	/* Control Register
  	 *
  	 * 6,4,2,0  CLKSEL<3..0>, 0 = TcCLK in, 1 = Auxclk out
  	 */
  	info->port_array[0]->ctrlreg_value |= (BIT0 << (info->port_num * 2));
  	write_control_reg(info);
  
  	tx_set_idle(info);
  
  	/* RRC Receive Ready Control 0
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  RRC<4..0> Rx FIFO trigger active 0x00 = 1 byte
  	 */
  	write_reg(info, RRC, 0x00);
  
  	/* TRC0 Transmit Ready Control 0
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  TRC<4..0> Tx FIFO trigger active 0x10 = 16 bytes
  	 */
  	write_reg(info, TRC0, 0x10);
  
  	/* TRC1 Transmit Ready Control 1
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  TRC<4..0> Tx FIFO trigger inactive 0x1e = 31 bytes (full-1)
  	 */
  	write_reg(info, TRC1, 0x1e);
  
  	/* CTL, MSCI control register
  	 *
  	 * 07..06  Reserved, set to 0
  	 * 05      UDRNC, underrun control, 0=abort 1=CRC+flag (HDLC/BSC)
  	 * 04      IDLC, idle control, 0=mark 1=idle register
  	 * 03      BRK, break, 0=off 1 =on (async)
  	 * 02      SYNCLD, sync char load enable (BSC) 1=enabled
  	 * 01      GOP, go active on poll (LOOP mode) 1=enabled
  	 * 00      RTS, RTS output control, 0=active 1=inactive
  	 *
  	 * 0001 0001
  	 */
  	RegValue = 0x10;
  	if (!(info->serial_signals & SerialSignal_RTS))
  		RegValue |= 0x01;
  	write_reg(info, CTL, RegValue);
  
  	/* enable status interrupts */
  	info->ie0_value |= TXINTE + RXINTE;
  	write_reg(info, IE0, info->ie0_value);
  
  	/* enable break detect interrupt */
  	info->ie1_value = BRKD;
  	write_reg(info, IE1, info->ie1_value);
  
  	/* enable rx overrun interrupt */
  	info->ie2_value = OVRN;
  	write_reg(info, IE2, info->ie2_value);
  
  	set_rate( info, info->params.data_rate * 16 );
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4537
4538
4539
4540
  }
  
  /* Program the SCA for HDLC communications.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4541
  static void hdlc_mode(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
  {
  	unsigned char RegValue;
  	u32 DpllDivisor;
  
  	// Can't use DPLL because SCA outputs recovered clock on RxC when
  	// DPLL mode selected. This causes output contention with RxC receiver.
  	// Use of DPLL would require external hardware to disable RxC receiver
  	// when DPLL mode selected.
  	info->params.flags &= ~(HDLC_FLAG_TXC_DPLL + HDLC_FLAG_RXC_DPLL);
  
  	/* disable DMA interrupts */
  	write_reg(info, TXDMA + DIR, 0);
  	write_reg(info, RXDMA + DIR, 0);
  
  	/* MD0, Mode Register 0
  	 *
  	 * 07..05  PRCTL<2..0>, Protocol Mode, 100=HDLC
  	 * 04      AUTO, Auto-enable (RTS/CTS/DCD)
  	 * 03      Reserved, must be 0
  	 * 02      CRCCC, CRC Calculation, 1=enabled
  	 * 01      CRC1, CRC selection, 0=CRC-16,1=CRC-CCITT-16
  	 * 00      CRC0, CRC initial value, 1 = all 1s
  	 *
  	 * 1000 0001
  	 */
  	RegValue = 0x81;
  	if (info->params.flags & HDLC_FLAG_AUTO_CTS)
  		RegValue |= BIT4;
  	if (info->params.flags & HDLC_FLAG_AUTO_DCD)
  		RegValue |= BIT4;
  	if (info->params.crc_type == HDLC_CRC_16_CCITT)
  		RegValue |= BIT2 + BIT1;
  	write_reg(info, MD0, RegValue);
  
  	/* MD1, Mode Register 1
  	 *
  	 * 07..06  ADDRS<1..0>, Address detect, 00=no addr check
  	 * 05..04  TXCHR<1..0>, tx char size, 00=8 bits
  	 * 03..02  RXCHR<1..0>, rx char size, 00=8 bits
  	 * 01..00  PMPM<1..0>, Parity mode, 00=no parity
  	 *
  	 * 0000 0000
  	 */
  	RegValue = 0x00;
  	write_reg(info, MD1, RegValue);
  
  	/* MD2, Mode Register 2
  	 *
  	 * 07      NRZFM, 0=NRZ, 1=FM
  	 * 06..05  CODE<1..0> Encoding, 00=NRZ
  	 * 04..03  DRATE<1..0> DPLL Divisor, 00=8
  	 * 02      Reserved, must be 0
  	 * 01..00  CNCT<1..0> Channel connection, 0=normal
  	 *
  	 * 0000 0000
  	 */
  	RegValue = 0x00;
  	switch(info->params.encoding) {
  	case HDLC_ENCODING_NRZI:	  RegValue |= BIT5; break;
  	case HDLC_ENCODING_BIPHASE_MARK:  RegValue |= BIT7 + BIT5; break; /* aka FM1 */
  	case HDLC_ENCODING_BIPHASE_SPACE: RegValue |= BIT7 + BIT6; break; /* aka FM0 */
  	case HDLC_ENCODING_BIPHASE_LEVEL: RegValue |= BIT7; break; 	/* aka Manchester */
  #if 0
  	case HDLC_ENCODING_NRZB:	       				/* not supported */
  	case HDLC_ENCODING_NRZI_MARK:          				/* not supported */
  	case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: 				/* not supported */
  #endif
  	}
  	if ( info->params.flags & HDLC_FLAG_DPLL_DIV16 ) {
  		DpllDivisor = 16;
  		RegValue |= BIT3;
  	} else if ( info->params.flags & HDLC_FLAG_DPLL_DIV8 ) {
  		DpllDivisor = 8;
  	} else {
  		DpllDivisor = 32;
  		RegValue |= BIT4;
  	}
  	write_reg(info, MD2, RegValue);
  
  
  	/* RXS, Receive clock source
  	 *
  	 * 07      Reserved, must be 0
  	 * 06..04  RXCS<2..0>, clock source, 000=RxC Pin, 100=BRG, 110=DPLL
  	 * 03..00  RXBR<3..0>, rate divisor, 0000=1
  	 */
  	RegValue=0;
  	if (info->params.flags & HDLC_FLAG_RXC_BRG)
  		RegValue |= BIT6;
  	if (info->params.flags & HDLC_FLAG_RXC_DPLL)
  		RegValue |= BIT6 + BIT5;
  	write_reg(info, RXS, RegValue);
  
  	/* TXS, Transmit clock source
  	 *
  	 * 07      Reserved, must be 0
  	 * 06..04  RXCS<2..0>, clock source, 000=TxC Pin, 100=BRG, 110=Receive Clock
  	 * 03..00  RXBR<3..0>, rate divisor, 0000=1
  	 */
  	RegValue=0;
  	if (info->params.flags & HDLC_FLAG_TXC_BRG)
  		RegValue |= BIT6;
  	if (info->params.flags & HDLC_FLAG_TXC_DPLL)
  		RegValue |= BIT6 + BIT5;
  	write_reg(info, TXS, RegValue);
  
  	if (info->params.flags & HDLC_FLAG_RXC_DPLL)
  		set_rate(info, info->params.clock_speed * DpllDivisor);
  	else
  		set_rate(info, info->params.clock_speed);
  
  	/* GPDATA (General Purpose I/O Data Register)
  	 *
  	 * 6,4,2,0  CLKSEL<3..0>, 0 = TcCLK in, 1 = Auxclk out
  	 */
  	if (info->params.flags & HDLC_FLAG_TXC_BRG)
  		info->port_array[0]->ctrlreg_value |= (BIT0 << (info->port_num * 2));
  	else
  		info->port_array[0]->ctrlreg_value &= ~(BIT0 << (info->port_num * 2));
  	write_control_reg(info);
  
  	/* RRC Receive Ready Control 0
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  RRC<4..0> Rx FIFO trigger active
  	 */
  	write_reg(info, RRC, rx_active_fifo_level);
  
  	/* TRC0 Transmit Ready Control 0
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  TRC<4..0> Tx FIFO trigger active
  	 */
  	write_reg(info, TRC0, tx_active_fifo_level);
  
  	/* TRC1 Transmit Ready Control 1
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04..00  TRC<4..0> Tx FIFO trigger inactive 0x1f = 32 bytes (full)
  	 */
  	write_reg(info, TRC1, (unsigned char)(tx_negate_fifo_level - 1));
  
  	/* DMR, DMA Mode Register
  	 *
  	 * 07..05  Reserved, must be 0
  	 * 04      TMOD, Transfer Mode: 1=chained-block
  	 * 03      Reserved, must be 0
  	 * 02      NF, Number of Frames: 1=multi-frame
  	 * 01      CNTE, Frame End IRQ Counter enable: 0=disabled
  	 * 00      Reserved, must be 0
  	 *
  	 * 0001 0100
  	 */
  	write_reg(info, TXDMA + DMR, 0x14);
  	write_reg(info, RXDMA + DMR, 0x14);
  
  	/* Set chain pointer base (upper 8 bits of 24 bit addr) */
  	write_reg(info, RXDMA + CPB,
  		(unsigned char)(info->buffer_list_phys >> 16));
  
  	/* Set chain pointer base (upper 8 bits of 24 bit addr) */
  	write_reg(info, TXDMA + CPB,
  		(unsigned char)(info->buffer_list_phys >> 16));
  
  	/* enable status interrupts. other code enables/disables
  	 * the individual sources for these two interrupt classes.
  	 */
  	info->ie0_value |= TXINTE + RXINTE;
  	write_reg(info, IE0, info->ie0_value);
  
  	/* CTL, MSCI control register
  	 *
  	 * 07..06  Reserved, set to 0
  	 * 05      UDRNC, underrun control, 0=abort 1=CRC+flag (HDLC/BSC)
  	 * 04      IDLC, idle control, 0=mark 1=idle register
  	 * 03      BRK, break, 0=off 1 =on (async)
  	 * 02      SYNCLD, sync char load enable (BSC) 1=enabled
  	 * 01      GOP, go active on poll (LOOP mode) 1=enabled
  	 * 00      RTS, RTS output control, 0=active 1=inactive
  	 *
  	 * 0001 0001
  	 */
  	RegValue = 0x10;
  	if (!(info->serial_signals & SerialSignal_RTS))
  		RegValue |= 0x01;
  	write_reg(info, CTL, RegValue);
  
  	/* preamble not supported ! */
  
  	tx_set_idle(info);
  	tx_stop(info);
  	rx_stop(info);
  
  	set_rate(info, info->params.clock_speed);
  
  	if (info->params.loopback)
  		enable_loopback(info,1);
  }
  
  /* Set the transmit HDLC idle mode
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4743
  static void tx_set_idle(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
  {
  	unsigned char RegValue = 0xff;
  
  	/* Map API idle mode to SCA register bits */
  	switch(info->idle_mode) {
  	case HDLC_TXIDLE_FLAGS:			RegValue = 0x7e; break;
  	case HDLC_TXIDLE_ALT_ZEROS_ONES:	RegValue = 0xaa; break;
  	case HDLC_TXIDLE_ZEROS:			RegValue = 0x00; break;
  	case HDLC_TXIDLE_ONES:			RegValue = 0xff; break;
  	case HDLC_TXIDLE_ALT_MARK_SPACE:	RegValue = 0xaa; break;
  	case HDLC_TXIDLE_SPACE:			RegValue = 0x00; break;
  	case HDLC_TXIDLE_MARK:			RegValue = 0xff; break;
  	}
  
  	write_reg(info, IDL, RegValue);
  }
  
  /* Query the adapter for the state of the V24 status (input) signals.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4763
  static void get_signals(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
  {
  	u16 status = read_reg(info, SR3);
  	u16 gpstatus = read_status_reg(info);
  	u16 testbit;
  
  	/* clear all serial signals except DTR and RTS */
  	info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
  
  	/* set serial signal bits to reflect MISR */
  
  	if (!(status & BIT3))
  		info->serial_signals |= SerialSignal_CTS;
  
  	if ( !(status & BIT2))
  		info->serial_signals |= SerialSignal_DCD;
  
  	testbit = BIT1 << (info->port_num * 2); // Port 0..3 RI is GPDATA<1,3,5,7>
  	if (!(gpstatus & testbit))
  		info->serial_signals |= SerialSignal_RI;
  
  	testbit = BIT0 << (info->port_num * 2); // Port 0..3 DSR is GPDATA<0,2,4,6>
  	if (!(gpstatus & testbit))
  		info->serial_signals |= SerialSignal_DSR;
  }
  
  /* Set the state of DTR and RTS based on contents of
   * serial_signals member of device context.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4792
  static void set_signals(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
  {
  	unsigned char RegValue;
  	u16 EnableBit;
  
  	RegValue = read_reg(info, CTL);
  	if (info->serial_signals & SerialSignal_RTS)
  		RegValue &= ~BIT0;
  	else
  		RegValue |= BIT0;
  	write_reg(info, CTL, RegValue);
  
  	// Port 0..3 DTR is ctrl reg <1,3,5,7>
  	EnableBit = BIT1 << (info->port_num*2);
  	if (info->serial_signals & SerialSignal_DTR)
  		info->port_array[0]->ctrlreg_value &= ~EnableBit;
  	else
  		info->port_array[0]->ctrlreg_value |= EnableBit;
  	write_control_reg(info);
  }
  
  /*******************/
  /* DMA Buffer Code */
  /*******************/
  
  /* Set the count for all receive buffers to SCABUFSIZE
   * and set the current buffer to the first buffer. This effectively
   * makes all buffers free and discards any data in buffers.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4821
  static void rx_reset_buffers(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
  {
  	rx_free_frame_buffers(info, 0, info->rx_buf_count - 1);
  }
  
  /* Free the buffers used by a received frame
   *
   * info   pointer to device instance data
   * first  index of 1st receive buffer of frame
   * last   index of last receive buffer of frame
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4832
  static void rx_free_frame_buffers(SLMP_INFO *info, unsigned int first, unsigned int last)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4833
  {
0fab6de09   Joe Perches   synclink drivers ...
4834
  	bool done = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4835
4836
4837
4838
4839
4840
  
  	while(!done) {
  	        /* reset current buffer for reuse */
  		info->rx_buf_list[first].status = 0xff;
  
  	        if (first == last) {
0fab6de09   Joe Perches   synclink drivers ...
4841
  	                done = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
  	                /* set new last rx descriptor address */
  			write_reg16(info, RXDMA + EDA, info->rx_buf_list_ex[first].phys_entry);
  	        }
  
  	        first++;
  		if (first == info->rx_buf_count)
  			first = 0;
  	}
  
  	/* set current buffer to next buffer after last buffer of frame */
  	info->current_rx_buf = first;
  }
  
  /* Return a received frame from the receive DMA buffers.
   * Only frames received without errors are returned.
   *
0fab6de09   Joe Perches   synclink drivers ...
4858
   * Return Value:	true if frame returned, otherwise false
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4859
   */
ce9f9f73a   Harvey Harrison   char: make functi...
4860
  static bool rx_get_frame(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4861
4862
4863
4864
  {
  	unsigned int StartIndex, EndIndex;	/* index of 1st and last buffers of Rx frame */
  	unsigned short status;
  	unsigned int framesize = 0;
0fab6de09   Joe Perches   synclink drivers ...
4865
  	bool ReturnCode = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4866
  	unsigned long flags;
8fb06c771   Alan Cox   synclink: use tty...
4867
  	struct tty_struct *tty = info->port.tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
  	unsigned char addr_field = 0xff;
     	SCADESC *desc;
  	SCADESC_EX *desc_ex;
  
  CheckAgain:
  	/* assume no frame returned, set zero length */
  	framesize = 0;
  	addr_field = 0xff;
  
  	/*
  	 * current_rx_buf points to the 1st buffer of the next available
  	 * receive frame. To find the last buffer of the frame look for
  	 * a non-zero status field in the buffer entries. (The status
  	 * field is set by the 16C32 after completing a receive frame.
  	 */
  	StartIndex = EndIndex = info->current_rx_buf;
  
  	for ( ;; ) {
  		desc = &info->rx_buf_list[EndIndex];
  		desc_ex = &info->rx_buf_list_ex[EndIndex];
  
  		if (desc->status == 0xff)
  			goto Cleanup;	/* current desc still in use, no frames available */
  
  		if (framesize == 0 && info->params.addr_filter != 0xff)
  			addr_field = desc_ex->virt_addr[0];
  
  		framesize += desc->length;
  
  		/* Status != 0 means last buffer of frame */
  		if (desc->status)
  			break;
  
  		EndIndex++;
  		if (EndIndex == info->rx_buf_count)
  			EndIndex = 0;
  
  		if (EndIndex == info->current_rx_buf) {
  			/* all buffers have been 'used' but none mark	   */
  			/* the end of a frame. Reset buffers and receiver. */
  			if ( info->rx_enabled ){
  				spin_lock_irqsave(&info->lock,flags);
  				rx_start(info);
  				spin_unlock_irqrestore(&info->lock,flags);
  			}
  			goto Cleanup;
  		}
  
  	}
  
  	/* check status of receive frame */
  
  	/* frame status is byte stored after frame data
  	 *
  	 * 7 EOM (end of msg), 1 = last buffer of frame
  	 * 6 Short Frame, 1 = short frame
  	 * 5 Abort, 1 = frame aborted
  	 * 4 Residue, 1 = last byte is partial
  	 * 3 Overrun, 1 = overrun occurred during frame reception
  	 * 2 CRC,     1 = CRC error detected
  	 *
  	 */
  	status = desc->status;
  
  	/* ignore CRC bit if not using CRC (bit is undefined) */
  	/* Note:CRC is not save to data buffer */
  	if (info->params.crc_type == HDLC_CRC_NONE)
  		status &= ~BIT2;
  
  	if (framesize == 0 ||
  		 (addr_field != 0xff && addr_field != info->params.addr_filter)) {
  		/* discard 0 byte frames, this seems to occur sometime
  		 * when remote is idling flags.
  		 */
  		rx_free_frame_buffers(info, StartIndex, EndIndex);
  		goto CheckAgain;
  	}
  
  	if (framesize < 2)
  		status |= BIT6;
  
  	if (status & (BIT6+BIT5+BIT3+BIT2)) {
  		/* received frame has errors,
  		 * update counts and mark frame size as 0
  		 */
  		if (status & BIT6)
  			info->icount.rxshort++;
  		else if (status & BIT5)
  			info->icount.rxabort++;
  		else if (status & BIT3)
  			info->icount.rxover++;
  		else
  			info->icount.rxcrc++;
  
  		framesize = 0;
af69c7f92   Paul Fulghum   [PATCH] generic H...
4963
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4964
  		{
198191c4a   Krzysztof Halasa   WAN: convert driv...
4965
4966
  			info->netdev->stats.rx_errors++;
  			info->netdev->stats.rx_frame_errors++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
  		}
  #endif
  	}
  
  	if ( debug_level >= DEBUG_LEVEL_BH )
  		printk("%s(%d):%s rx_get_frame() status=%04X size=%d
  ",
  			__FILE__,__LINE__,info->device_name,status,framesize);
  
  	if ( debug_level >= DEBUG_LEVEL_DATA )
  		trace_block(info,info->rx_buf_list_ex[StartIndex].virt_addr,
53d785ccd   Dan Carpenter   TTY: snyclinkmp: ...
4978
  			min_t(unsigned int, framesize, SCABUFSIZE), 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
  
  	if (framesize) {
  		if (framesize > info->max_frame_size)
  			info->icount.rxlong++;
  		else {
  			/* copy dma buffer(s) to contiguous intermediate buffer */
  			int copy_count = framesize;
  			int index = StartIndex;
  			unsigned char *ptmp = info->tmp_rx_buf;
  			info->tmp_rx_buf_count = framesize;
  
  			info->icount.rxok++;
  
  			while(copy_count) {
  				int partial_count = min(copy_count,SCABUFSIZE);
  				memcpy( ptmp,
  					info->rx_buf_list_ex[index].virt_addr,
  					partial_count );
  				ptmp += partial_count;
  				copy_count -= partial_count;
  
  				if ( ++index == info->rx_buf_count )
  					index = 0;
  			}
af69c7f92   Paul Fulghum   [PATCH] generic H...
5003
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
  			if (info->netcount)
  				hdlcdev_rx(info,info->tmp_rx_buf,framesize);
  			else
  #endif
  				ldisc_receive_buf(tty,info->tmp_rx_buf,
  						  info->flag_buf, framesize);
  		}
  	}
  	/* Free the buffers used by this frame. */
  	rx_free_frame_buffers( info, StartIndex, EndIndex );
0fab6de09   Joe Perches   synclink drivers ...
5014
  	ReturnCode = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
  
  Cleanup:
  	if ( info->rx_enabled && info->rx_overflow ) {
  		/* Receiver is enabled, but needs to restarted due to
  		 * rx buffer overflow. If buffers are empty, restart receiver.
  		 */
  		if (info->rx_buf_list[EndIndex].status == 0xff) {
  			spin_lock_irqsave(&info->lock,flags);
  			rx_start(info);
  			spin_unlock_irqrestore(&info->lock,flags);
  		}
  	}
  
  	return ReturnCode;
  }
  
  /* load the transmit DMA buffer with data
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5033
  static void tx_load_dma_buffer(SLMP_INFO *info, const char *buf, unsigned int count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5034
5035
5036
5037
5038
5039
5040
  {
  	unsigned short copy_count;
  	unsigned int i = 0;
  	SCADESC *desc;
  	SCADESC_EX *desc_ex;
  
  	if ( debug_level >= DEBUG_LEVEL_DATA )
53d785ccd   Dan Carpenter   TTY: snyclinkmp: ...
5041
  		trace_block(info, buf, min_t(unsigned int, count, SCABUFSIZE), 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5042
5043
5044
5045
5046
5047
  
  	/* Copy source buffer to one or more DMA buffers, starting with
  	 * the first transmit dma buffer.
  	 */
  	for(i=0;;)
  	{
53d785ccd   Dan Carpenter   TTY: snyclinkmp: ...
5048
  		copy_count = min_t(unsigned int, count, SCABUFSIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
  
  		desc = &info->tx_buf_list[i];
  		desc_ex = &info->tx_buf_list_ex[i];
  
  		load_pci_memory(info, desc_ex->virt_addr,buf,copy_count);
  
  		desc->length = copy_count;
  		desc->status = 0;
  
  		buf += copy_count;
  		count -= copy_count;
  
  		if (!count)
  			break;
  
  		i++;
  		if (i >= info->tx_buf_count)
  			i = 0;
  	}
  
  	info->tx_buf_list[i].status = 0x81;	/* set EOM and EOT status */
  	info->last_tx_buf = ++i;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5072
  static bool register_test(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5073
5074
  {
  	static unsigned char testval[] = {0x00, 0xff, 0xaa, 0x55, 0x69, 0x96};
fe971071a   Tobias Klauser   [PATCH] drivers/c...
5075
  	static unsigned int count = ARRAY_SIZE(testval);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5076
  	unsigned int i;
0fab6de09   Joe Perches   synclink drivers ...
5077
  	bool rc = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
  	unsigned long flags;
  
  	spin_lock_irqsave(&info->lock,flags);
  	reset_port(info);
  
  	/* assume failure */
  	info->init_error = DiagStatus_AddressFailure;
  
  	/* Write bit patterns to various registers but do it out of */
  	/* sync, then read back and verify values. */
  
  	for (i = 0 ; i < count ; i++) {
  		write_reg(info, TMC, testval[i]);
  		write_reg(info, IDL, testval[(i+1)%count]);
  		write_reg(info, SA0, testval[(i+2)%count]);
  		write_reg(info, SA1, testval[(i+3)%count]);
  
  		if ( (read_reg(info, TMC) != testval[i]) ||
  			  (read_reg(info, IDL) != testval[(i+1)%count]) ||
  			  (read_reg(info, SA0) != testval[(i+2)%count]) ||
  			  (read_reg(info, SA1) != testval[(i+3)%count]) )
  		{
0fab6de09   Joe Perches   synclink drivers ...
5100
  			rc = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5101
5102
5103
5104
5105
5106
5107
5108
5109
  			break;
  		}
  	}
  
  	reset_port(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	return rc;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5110
  static bool irq_test(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
  {
  	unsigned long timeout;
  	unsigned long flags;
  
  	unsigned char timer = (info->port_num & 1) ? TIMER2 : TIMER0;
  
  	spin_lock_irqsave(&info->lock,flags);
  	reset_port(info);
  
  	/* assume failure */
  	info->init_error = DiagStatus_IrqFailure;
0fab6de09   Joe Perches   synclink drivers ...
5122
  	info->irq_occurred = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
  
  	/* setup timer0 on SCA0 to interrupt */
  
  	/* IER2<7..4> = timer<3..0> interrupt enables (1=enabled) */
  	write_reg(info, IER2, (unsigned char)((info->port_num & 1) ? BIT6 : BIT4));
  
  	write_reg(info, (unsigned char)(timer + TEPR), 0);	/* timer expand prescale */
  	write_reg16(info, (unsigned char)(timer + TCONR), 1);	/* timer constant */
  
  
  	/* TMCS, Timer Control/Status Register
  	 *
  	 * 07      CMF, Compare match flag (read only) 1=match
  	 * 06      ECMI, CMF Interrupt Enable: 1=enabled
  	 * 05      Reserved, must be 0
  	 * 04      TME, Timer Enable
  	 * 03..00  Reserved, must be 0
  	 *
  	 * 0101 0000
  	 */
  	write_reg(info, (unsigned char)(timer + TMCS), 0x50);
  
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	timeout=100;
  	while( timeout-- && !info->irq_occurred ) {
  		msleep_interruptible(10);
  	}
  
  	spin_lock_irqsave(&info->lock,flags);
  	reset_port(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	return info->irq_occurred;
  }
  
  /* initialize individual SCA device (2 ports)
   */
0fab6de09   Joe Perches   synclink drivers ...
5161
  static bool sca_init(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
  {
  	/* set wait controller to single mem partition (low), no wait states */
  	write_reg(info, PABR0, 0);	/* wait controller addr boundary 0 */
  	write_reg(info, PABR1, 0);	/* wait controller addr boundary 1 */
  	write_reg(info, WCRL, 0);	/* wait controller low range */
  	write_reg(info, WCRM, 0);	/* wait controller mid range */
  	write_reg(info, WCRH, 0);	/* wait controller high range */
  
  	/* DPCR, DMA Priority Control
  	 *
  	 * 07..05  Not used, must be 0
  	 * 04      BRC, bus release condition: 0=all transfers complete
  	 * 03      CCC, channel change condition: 0=every cycle
  	 * 02..00  PR<2..0>, priority 100=round robin
  	 *
  	 * 00000100 = 0x04
  	 */
  	write_reg(info, DPCR, dma_priority);
  
  	/* DMA Master Enable, BIT7: 1=enable all channels */
  	write_reg(info, DMER, 0x80);
  
  	/* enable all interrupt classes */
  	write_reg(info, IER0, 0xff);	/* TxRDY,RxRDY,TxINT,RxINT (ports 0-1) */
  	write_reg(info, IER1, 0xff);	/* DMIB,DMIA (channels 0-3) */
  	write_reg(info, IER2, 0xf0);	/* TIRQ (timers 0-3) */
  
  	/* ITCR, interrupt control register
  	 * 07      IPC, interrupt priority, 0=MSCI->DMA
  	 * 06..05  IAK<1..0>, Acknowledge cycle, 00=non-ack cycle
  	 * 04      VOS, Vector Output, 0=unmodified vector
  	 * 03..00  Reserved, must be 0
  	 */
  	write_reg(info, ITCR, 0);
0fab6de09   Joe Perches   synclink drivers ...
5196
  	return true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5197
5198
5199
5200
  }
  
  /* initialize adapter hardware
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5201
  static bool init_adapter(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
  {
  	int i;
  
  	/* Set BIT30 of Local Control Reg 0x50 to reset SCA */
  	volatile u32 *MiscCtrl = (u32 *)(info->lcr_base + 0x50);
  	u32 readval;
  
  	info->misc_ctrl_value |= BIT30;
  	*MiscCtrl = info->misc_ctrl_value;
  
  	/*
  	 * Force at least 170ns delay before clearing
  	 * reset bit. Each read from LCR takes at least
  	 * 30ns so 10 times for 300ns to be safe.
  	 */
  	for(i=0;i<10;i++)
  		readval = *MiscCtrl;
  
  	info->misc_ctrl_value &= ~BIT30;
  	*MiscCtrl = info->misc_ctrl_value;
  
  	/* init control reg (all DTRs off, all clksel=input) */
  	info->ctrlreg_value = 0xaa;
  	write_control_reg(info);
  
  	{
  		volatile u32 *LCR1BRDR = (u32 *)(info->lcr_base + 0x2c);
  		lcr1_brdr_value &= ~(BIT5 + BIT4 + BIT3);
  
  		switch(read_ahead_count)
  		{
  		case 16:
  			lcr1_brdr_value |= BIT5 + BIT4 + BIT3;
  			break;
  		case 8:
  			lcr1_brdr_value |= BIT5 + BIT4;
  			break;
  		case 4:
  			lcr1_brdr_value |= BIT5 + BIT3;
  			break;
  		case 0:
  			lcr1_brdr_value |= BIT5;
  			break;
  		}
  
  		*LCR1BRDR = lcr1_brdr_value;
  		*MiscCtrl = misc_ctrl_value;
  	}
  
  	sca_init(info->port_array[0]);
  	sca_init(info->port_array[2]);
0fab6de09   Joe Perches   synclink drivers ...
5253
  	return true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5254
5255
5256
5257
5258
  }
  
  /* Loopback an HDLC frame to test the hardware
   * interrupt and DMA functions.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5259
  static bool loopback_test(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5260
5261
5262
5263
5264
5265
  {
  #define TESTFRAMESIZE 20
  
  	unsigned long timeout;
  	u16 count = TESTFRAMESIZE;
  	unsigned char buf[TESTFRAMESIZE];
0fab6de09   Joe Perches   synclink drivers ...
5266
  	bool rc = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5267
  	unsigned long flags;
8fb06c771   Alan Cox   synclink: use tty...
5268
  	struct tty_struct *oldtty = info->port.tty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5269
5270
5271
  	u32 speed = info->params.clock_speed;
  
  	info->params.clock_speed = 3686400;
8fb06c771   Alan Cox   synclink: use tty...
5272
  	info->port.tty = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
  
  	/* assume failure */
  	info->init_error = DiagStatus_DmaFailure;
  
  	/* build and send transmit frame */
  	for (count = 0; count < TESTFRAMESIZE;++count)
  		buf[count] = (unsigned char)count;
  
  	memset(info->tmp_rx_buf,0,TESTFRAMESIZE);
  
  	/* program hardware for HDLC and enabled receiver */
  	spin_lock_irqsave(&info->lock,flags);
  	hdlc_mode(info);
  	enable_loopback(info,1);
         	rx_start(info);
  	info->tx_count = count;
  	tx_load_dma_buffer(info,buf,count);
  	tx_start(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	/* wait for receive complete */
  	/* Set a timeout for waiting for interrupt. */
  	for ( timeout = 100; timeout; --timeout ) {
  		msleep_interruptible(10);
  
  		if (rx_get_frame(info)) {
0fab6de09   Joe Perches   synclink drivers ...
5299
  			rc = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5300
5301
5302
5303
5304
  			break;
  		}
  	}
  
  	/* verify received frame length and contents */
0fab6de09   Joe Perches   synclink drivers ...
5305
5306
5307
5308
  	if (rc &&
  	    ( info->tmp_rx_buf_count != count ||
  	      memcmp(buf, info->tmp_rx_buf,count))) {
  		rc = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5309
5310
5311
5312
5313
5314
5315
  	}
  
  	spin_lock_irqsave(&info->lock,flags);
  	reset_adapter(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	info->params.clock_speed = speed;
8fb06c771   Alan Cox   synclink: use tty...
5316
  	info->port.tty = oldtty;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5317
5318
5319
5320
5321
5322
  
  	return rc;
  }
  
  /* Perform diagnostics on hardware
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5323
  static int adapter_test( SLMP_INFO *info )
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
  {
  	unsigned long flags;
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):Testing device %s
  ",
  			__FILE__,__LINE__,info->device_name );
  
  	spin_lock_irqsave(&info->lock,flags);
  	init_adapter(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	info->port_array[0]->port_count = 0;
  
  	if ( register_test(info->port_array[0]) &&
  		register_test(info->port_array[1])) {
  
  		info->port_array[0]->port_count = 2;
  
  		if ( register_test(info->port_array[2]) &&
  			register_test(info->port_array[3]) )
  			info->port_array[0]->port_count += 2;
  	}
  	else {
  		printk( "%s(%d):Register test failure for device %s Addr=%08lX
  ",
  			__FILE__,__LINE__,info->device_name, (unsigned long)(info->phys_sca_base));
  		return -ENODEV;
  	}
  
  	if ( !irq_test(info->port_array[0]) ||
  		!irq_test(info->port_array[1]) ||
  		 (info->port_count == 4 && !irq_test(info->port_array[2])) ||
  		 (info->port_count == 4 && !irq_test(info->port_array[3]))) {
  		printk( "%s(%d):Interrupt test failure for device %s IRQ=%d
  ",
  			__FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
  		return -ENODEV;
  	}
  
  	if (!loopback_test(info->port_array[0]) ||
  		!loopback_test(info->port_array[1]) ||
  		 (info->port_count == 4 && !loopback_test(info->port_array[2])) ||
  		 (info->port_count == 4 && !loopback_test(info->port_array[3]))) {
  		printk( "%s(%d):DMA test failure for device %s
  ",
  			__FILE__,__LINE__,info->device_name);
  		return -ENODEV;
  	}
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):device %s passed diagnostics
  ",
  			__FILE__,__LINE__,info->device_name );
  
  	info->port_array[0]->init_error = 0;
  	info->port_array[1]->init_error = 0;
  	if ( info->port_count > 2 ) {
  		info->port_array[2]->init_error = 0;
  		info->port_array[3]->init_error = 0;
  	}
  
  	return 0;
  }
  
  /* Test the shared memory on a PCI adapter.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5390
  static bool memory_test(SLMP_INFO *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5391
5392
5393
  {
  	static unsigned long testval[] = { 0x0, 0x55555555, 0xaaaaaaaa,
  		0x66666666, 0x99999999, 0xffffffff, 0x12345678 };
fe971071a   Tobias Klauser   [PATCH] drivers/c...
5394
  	unsigned long count = ARRAY_SIZE(testval);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5395
5396
5397
5398
5399
5400
5401
5402
5403
  	unsigned long i;
  	unsigned long limit = SCA_MEM_SIZE/sizeof(unsigned long);
  	unsigned long * addr = (unsigned long *)info->memory_base;
  
  	/* Test data lines with test pattern at one location. */
  
  	for ( i = 0 ; i < count ; i++ ) {
  		*addr = testval[i];
  		if ( *addr != testval[i] )
0fab6de09   Joe Perches   synclink drivers ...
5404
  			return false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
  	}
  
  	/* Test address lines with incrementing pattern over */
  	/* entire address range. */
  
  	for ( i = 0 ; i < limit ; i++ ) {
  		*addr = i * 4;
  		addr++;
  	}
  
  	addr = (unsigned long *)info->memory_base;
  
  	for ( i = 0 ; i < limit ; i++ ) {
  		if ( *addr != i * 4 )
0fab6de09   Joe Perches   synclink drivers ...
5419
  			return false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5420
5421
5422
5423
  		addr++;
  	}
  
  	memset( info->memory_base, 0, SCA_MEM_SIZE );
0fab6de09   Joe Perches   synclink drivers ...
5424
  	return true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
  }
  
  /* Load data into PCI adapter shared memory.
   *
   * The PCI9050 releases control of the local bus
   * after completing the current read or write operation.
   *
   * While the PCI9050 write FIFO not empty, the
   * PCI9050 treats all of the writes as a single transaction
   * and does not release the bus. This causes DMA latency problems
   * at high speeds when copying large data blocks to the shared memory.
   *
   * This function breaks a write into multiple transations by
   * interleaving a read which flushes the write FIFO and 'completes'
   * the write transation. This allows any pending DMA request to gain control
   * of the local bus in a timely fasion.
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5442
  static void load_pci_memory(SLMP_INFO *info, char* dest, const char* src, unsigned short count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
  {
  	/* A load interval of 16 allows for 4 32-bit writes at */
  	/* 136ns each for a maximum latency of 542ns on the local bus.*/
  
  	unsigned short interval = count / sca_pci_load_interval;
  	unsigned short i;
  
  	for ( i = 0 ; i < interval ; i++ )
  	{
  		memcpy(dest, src, sca_pci_load_interval);
  		read_status_reg(info);
  		dest += sca_pci_load_interval;
  		src += sca_pci_load_interval;
  	}
  
  	memcpy(dest, src, count % sca_pci_load_interval);
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5460
  static void trace_block(SLMP_INFO *info,const char* data, int count, int xmit)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
  {
  	int i;
  	int linecount;
  	if (xmit)
  		printk("%s tx data:
  ",info->device_name);
  	else
  		printk("%s rx data:
  ",info->device_name);
  
  	while(count) {
  		if (count > 16)
  			linecount = 16;
  		else
  			linecount = count;
  
  		for(i=0;i<linecount;i++)
  			printk("%02X ",(unsigned char)data[i]);
  		for(;i<17;i++)
  			printk("   ");
  		for(i=0;i<linecount;i++) {
  			if (data[i]>=040 && data[i]<=0176)
  				printk("%c",data[i]);
  			else
  				printk(".");
  		}
  		printk("
  ");
  
  		data  += linecount;
  		count -= linecount;
  	}
  }	/* end of trace_block() */
  
  /* called when HDLC frame times out
   * update stats and do tx completion processing
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5498
  static void tx_timeout(unsigned long context)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
  {
  	SLMP_INFO *info = (SLMP_INFO*)context;
  	unsigned long flags;
  
  	if ( debug_level >= DEBUG_LEVEL_INFO )
  		printk( "%s(%d):%s tx_timeout()
  ",
  			__FILE__,__LINE__,info->device_name);
  	if(info->tx_active && info->params.mode == MGSL_MODE_HDLC) {
  		info->icount.txtimeout++;
  	}
  	spin_lock_irqsave(&info->lock,flags);
0fab6de09   Joe Perches   synclink drivers ...
5511
  	info->tx_active = false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5512
5513
5514
  	info->tx_count = info->tx_put = info->tx_get = 0;
  
  	spin_unlock_irqrestore(&info->lock,flags);
af69c7f92   Paul Fulghum   [PATCH] generic H...
5515
  #if SYNCLINK_GENERIC_HDLC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5516
5517
5518
5519
5520
5521
5522
5523
5524
  	if (info->netcount)
  		hdlcdev_tx_done(info);
  	else
  #endif
  		bh_transmit(info);
  }
  
  /* called to periodically check the DSR/RI modem signal input status
   */
ce9f9f73a   Harvey Harrison   char: make functi...
5525
  static void status_timeout(unsigned long context)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
  {
  	u16 status = 0;
  	SLMP_INFO *info = (SLMP_INFO*)context;
  	unsigned long flags;
  	unsigned char delta;
  
  
  	spin_lock_irqsave(&info->lock,flags);
  	get_signals(info);
  	spin_unlock_irqrestore(&info->lock,flags);
  
  	/* check for DSR/RI state change */
  
  	delta = info->old_signals ^ info->serial_signals;
  	info->old_signals = info->serial_signals;
  
  	if (delta & SerialSignal_DSR)
  		status |= MISCSTATUS_DSR_LATCHED|(info->serial_signals&SerialSignal_DSR);
  
  	if (delta & SerialSignal_RI)
  		status |= MISCSTATUS_RI_LATCHED|(info->serial_signals&SerialSignal_RI);
  
  	if (delta & SerialSignal_DCD)
  		status |= MISCSTATUS_DCD_LATCHED|(info->serial_signals&SerialSignal_DCD);
  
  	if (delta & SerialSignal_CTS)
  		status |= MISCSTATUS_CTS_LATCHED|(info->serial_signals&SerialSignal_CTS);
  
  	if (status)
  		isr_io_pin(info,status);
40565f196   Jiri Slaby   [PATCH] Char: tim...
5556
  	mod_timer(&info->status_timer, jiffies + msecs_to_jiffies(10));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
  }
  
  
  /* Register Access Routines -
   * All registers are memory mapped
   */
  #define CALC_REGADDR() \
  	unsigned char * RegAddr = (unsigned char*)(info->sca_base + Addr); \
  	if (info->port_num > 1) \
  		RegAddr += 256;	    		/* port 0-1 SCA0, 2-3 SCA1 */ \
  	if ( info->port_num & 1) { \
  		if (Addr > 0x7f) \
  			RegAddr += 0x40;	/* DMA access */ \
  		else if (Addr > 0x1f && Addr < 0x60) \
  			RegAddr += 0x20;	/* MSCI access */ \
  	}
ce9f9f73a   Harvey Harrison   char: make functi...
5573
  static unsigned char read_reg(SLMP_INFO * info, unsigned char Addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5574
5575
5576
5577
  {
  	CALC_REGADDR();
  	return *RegAddr;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5578
  static void write_reg(SLMP_INFO * info, unsigned char Addr, unsigned char Value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5579
5580
5581
5582
  {
  	CALC_REGADDR();
  	*RegAddr = Value;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5583
  static u16 read_reg16(SLMP_INFO * info, unsigned char Addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5584
5585
5586
5587
  {
  	CALC_REGADDR();
  	return *((u16 *)RegAddr);
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5588
  static void write_reg16(SLMP_INFO * info, unsigned char Addr, u16 Value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5589
5590
5591
5592
  {
  	CALC_REGADDR();
  	*((u16 *)RegAddr) = Value;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5593
  static unsigned char read_status_reg(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5594
5595
5596
5597
  {
  	unsigned char *RegAddr = (unsigned char *)info->statctrl_base;
  	return *RegAddr;
  }
ce9f9f73a   Harvey Harrison   char: make functi...
5598
  static void write_control_reg(SLMP_INFO * info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
  {
  	unsigned char *RegAddr = (unsigned char *)info->statctrl_base;
  	*RegAddr = info->port_array[0]->ctrlreg_value;
  }
  
  
  static int __devinit synclinkmp_init_one (struct pci_dev *dev,
  					  const struct pci_device_id *ent)
  {
  	if (pci_enable_device(dev)) {
  		printk("error enabling pci device %p
  ", dev);
  		return -EIO;
  	}
  	device_init( ++synclinkmp_adapter_count, dev );
  	return 0;
  }
  
  static void __devexit synclinkmp_remove_one (struct pci_dev *dev)
  {
  }