]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/char/synclink_gt.c
synclink_gt: improve TIOCOUTQ accuracy
[mirror_ubuntu-zesty-kernel.git] / drivers / char / synclink_gt.c
CommitLineData
705b6c7b 1/*
bb029c67 2 * $Id: synclink_gt.c,v 4.50 2007/07/25 19:29:25 paulkf Exp $
705b6c7b
PF
3 *
4 * Device driver for Microgate SyncLink GT serial adapters.
5 *
6 * written by Paul Fulghum for Microgate Corporation
7 * paulkf@microgate.com
8 *
9 * Microgate and SyncLink are trademarks of Microgate Corporation
10 *
11 * This code is released under the GNU General Public License (GPL)
12 *
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
17 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
23 * OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26/*
27 * DEBUG OUTPUT DEFINITIONS
28 *
29 * uncomment lines below to enable specific types of debug output
30 *
31 * DBGINFO information - most verbose output
32 * DBGERR serious errors
33 * DBGBH bottom half service routine debugging
34 * DBGISR interrupt service routine debugging
35 * DBGDATA output receive and transmit data
36 * DBGTBUF output transmit DMA buffers and registers
37 * DBGRBUF output receive DMA buffers and registers
38 */
39
40#define DBGINFO(fmt) if (debug_level >= DEBUG_LEVEL_INFO) printk fmt
41#define DBGERR(fmt) if (debug_level >= DEBUG_LEVEL_ERROR) printk fmt
42#define DBGBH(fmt) if (debug_level >= DEBUG_LEVEL_BH) printk fmt
43#define DBGISR(fmt) if (debug_level >= DEBUG_LEVEL_ISR) printk fmt
44#define DBGDATA(info, buf, size, label) if (debug_level >= DEBUG_LEVEL_DATA) trace_block((info), (buf), (size), (label))
45//#define DBGTBUF(info) dump_tbufs(info)
46//#define DBGRBUF(info) dump_rbufs(info)
47
48
705b6c7b
PF
49#include <linux/module.h>
50#include <linux/version.h>
51#include <linux/errno.h>
52#include <linux/signal.h>
53#include <linux/sched.h>
54#include <linux/timer.h>
55#include <linux/interrupt.h>
56#include <linux/pci.h>
57#include <linux/tty.h>
58#include <linux/tty_flip.h>
59#include <linux/serial.h>
60#include <linux/major.h>
61#include <linux/string.h>
62#include <linux/fcntl.h>
63#include <linux/ptrace.h>
64#include <linux/ioport.h>
65#include <linux/mm.h>
66#include <linux/slab.h>
67#include <linux/netdevice.h>
68#include <linux/vmalloc.h>
69#include <linux/init.h>
70#include <linux/delay.h>
71#include <linux/ioctl.h>
72#include <linux/termios.h>
73#include <linux/bitops.h>
74#include <linux/workqueue.h>
75#include <linux/hdlc.h>
3dd1247f 76#include <linux/synclink.h>
705b6c7b 77
705b6c7b
PF
78#include <asm/system.h>
79#include <asm/io.h>
80#include <asm/irq.h>
81#include <asm/dma.h>
82#include <asm/types.h>
83#include <asm/uaccess.h>
84
af69c7f9
PF
85#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_GT_MODULE))
86#define SYNCLINK_GENERIC_HDLC 1
87#else
88#define SYNCLINK_GENERIC_HDLC 0
705b6c7b
PF
89#endif
90
91/*
92 * module identification
93 */
94static char *driver_name = "SyncLink GT";
bb029c67 95static char *driver_version = "$Revision: 4.50 $";
705b6c7b
PF
96static char *tty_driver_name = "synclink_gt";
97static char *tty_dev_prefix = "ttySLG";
98MODULE_LICENSE("GPL");
99#define MGSL_MAGIC 0x5401
a077c1a0 100#define MAX_DEVICES 32
705b6c7b
PF
101
102static struct pci_device_id pci_table[] = {
103 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
6f84be84 104 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT2_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
705b6c7b
PF
105 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT4_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
106 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_AC_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
107 {0,}, /* terminate list */
108};
109MODULE_DEVICE_TABLE(pci, pci_table);
110
111static int init_one(struct pci_dev *dev,const struct pci_device_id *ent);
112static void remove_one(struct pci_dev *dev);
113static struct pci_driver pci_driver = {
114 .name = "synclink_gt",
115 .id_table = pci_table,
116 .probe = init_one,
117 .remove = __devexit_p(remove_one),
118};
119
0fab6de0 120static bool pci_registered;
705b6c7b
PF
121
122/*
123 * module configuration and status
124 */
125static struct slgt_info *slgt_device_list;
126static int slgt_device_count;
127
128static int ttymajor;
129static int debug_level;
130static int maxframe[MAX_DEVICES];
131static int dosyncppp[MAX_DEVICES];
132
133module_param(ttymajor, int, 0);
134module_param(debug_level, int, 0);
135module_param_array(maxframe, int, NULL, 0);
136module_param_array(dosyncppp, int, NULL, 0);
137
138MODULE_PARM_DESC(ttymajor, "TTY major device number override: 0=auto assigned");
139MODULE_PARM_DESC(debug_level, "Debug syslog output: 0=disabled, 1 to 5=increasing detail");
140MODULE_PARM_DESC(maxframe, "Maximum frame size used by device (4096 to 65535)");
141MODULE_PARM_DESC(dosyncppp, "Enable synchronous net device, 0=disable 1=enable");
142
143/*
144 * tty support and callbacks
145 */
705b6c7b
PF
146static struct tty_driver *serial_driver;
147
148static int open(struct tty_struct *tty, struct file * filp);
149static void close(struct tty_struct *tty, struct file * filp);
150static void hangup(struct tty_struct *tty);
606d099c 151static void set_termios(struct tty_struct *tty, struct ktermios *old_termios);
705b6c7b
PF
152
153static int write(struct tty_struct *tty, const unsigned char *buf, int count);
55da7789 154static int put_char(struct tty_struct *tty, unsigned char ch);
705b6c7b
PF
155static void send_xchar(struct tty_struct *tty, char ch);
156static void wait_until_sent(struct tty_struct *tty, int timeout);
157static int write_room(struct tty_struct *tty);
158static void flush_chars(struct tty_struct *tty);
159static void flush_buffer(struct tty_struct *tty);
160static void tx_hold(struct tty_struct *tty);
161static void tx_release(struct tty_struct *tty);
162
163static int ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
164static int read_proc(char *page, char **start, off_t off, int count,int *eof, void *data);
165static int chars_in_buffer(struct tty_struct *tty);
166static void throttle(struct tty_struct * tty);
167static void unthrottle(struct tty_struct * tty);
9e98966c 168static int set_break(struct tty_struct *tty, int break_state);
705b6c7b
PF
169
170/*
171 * generic HDLC support and callbacks
172 */
af69c7f9 173#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
174#define dev_to_port(D) (dev_to_hdlc(D)->priv)
175static void hdlcdev_tx_done(struct slgt_info *info);
176static void hdlcdev_rx(struct slgt_info *info, char *buf, int size);
177static int hdlcdev_init(struct slgt_info *info);
178static void hdlcdev_exit(struct slgt_info *info);
179#endif
180
181
182/*
183 * device specific structures, macros and functions
184 */
185
186#define SLGT_MAX_PORTS 4
187#define SLGT_REG_SIZE 256
188
0080b7aa
PF
189/*
190 * conditional wait facility
191 */
192struct cond_wait {
193 struct cond_wait *next;
194 wait_queue_head_t q;
195 wait_queue_t wait;
196 unsigned int data;
197};
198static void init_cond_wait(struct cond_wait *w, unsigned int data);
199static void add_cond_wait(struct cond_wait **head, struct cond_wait *w);
200static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w);
201static void flush_cond_wait(struct cond_wait **head);
202
705b6c7b
PF
203/*
204 * DMA buffer descriptor and access macros
205 */
206struct slgt_desc
207{
51ef9c57
AV
208 __le16 count;
209 __le16 status;
210 __le32 pbuf; /* physical address of data buffer */
211 __le32 next; /* physical address of next descriptor */
705b6c7b
PF
212
213 /* driver book keeping */
214 char *buf; /* virtual address of data buffer */
215 unsigned int pdesc; /* physical address of this descriptor */
216 dma_addr_t buf_dma_addr;
403214d0 217 unsigned short buf_count;
705b6c7b
PF
218};
219
220#define set_desc_buffer(a,b) (a).pbuf = cpu_to_le32((unsigned int)(b))
221#define set_desc_next(a,b) (a).next = cpu_to_le32((unsigned int)(b))
222#define set_desc_count(a,b)(a).count = cpu_to_le16((unsigned short)(b))
223#define set_desc_eof(a,b) (a).status = cpu_to_le16((b) ? (le16_to_cpu((a).status) | BIT0) : (le16_to_cpu((a).status) & ~BIT0))
224#define desc_count(a) (le16_to_cpu((a).count))
225#define desc_status(a) (le16_to_cpu((a).status))
226#define desc_complete(a) (le16_to_cpu((a).status) & BIT15)
227#define desc_eof(a) (le16_to_cpu((a).status) & BIT2)
228#define desc_crc_error(a) (le16_to_cpu((a).status) & BIT1)
229#define desc_abort(a) (le16_to_cpu((a).status) & BIT0)
230#define desc_residue(a) ((le16_to_cpu((a).status) & 0x38) >> 3)
231
232struct _input_signal_events {
233 int ri_up;
234 int ri_down;
235 int dsr_up;
236 int dsr_down;
237 int dcd_up;
238 int dcd_down;
239 int cts_up;
240 int cts_down;
241};
242
243/*
244 * device instance data structure
245 */
246struct slgt_info {
247 void *if_ptr; /* General purpose pointer (used by SPPP) */
8fb06c77 248 struct tty_port port;
705b6c7b
PF
249
250 struct slgt_info *next_device; /* device list link */
251
252 int magic;
705b6c7b
PF
253
254 char device_name[25];
255 struct pci_dev *pdev;
256
257 int port_count; /* count of ports on adapter */
258 int adapter_num; /* adapter instance number */
259 int port_num; /* port instance number */
260
261 /* array of pointers to port contexts on this adapter */
262 struct slgt_info *port_array[SLGT_MAX_PORTS];
263
705b6c7b 264 int line; /* tty line instance number */
705b6c7b
PF
265
266 struct mgsl_icount icount;
267
705b6c7b
PF
268 int timeout;
269 int x_char; /* xon/xoff character */
705b6c7b
PF
270 unsigned int read_status_mask;
271 unsigned int ignore_status_mask;
272
705b6c7b
PF
273 wait_queue_head_t status_event_wait_q;
274 wait_queue_head_t event_wait_q;
275 struct timer_list tx_timer;
276 struct timer_list rx_timer;
277
0080b7aa
PF
278 unsigned int gpio_present;
279 struct cond_wait *gpio_wait_q;
280
705b6c7b
PF
281 spinlock_t lock; /* spinlock for synchronizing with ISR */
282
283 struct work_struct task;
284 u32 pending_bh;
0fab6de0
JP
285 bool bh_requested;
286 bool bh_running;
705b6c7b
PF
287
288 int isr_overflow;
0fab6de0
JP
289 bool irq_requested; /* true if IRQ requested */
290 bool irq_occurred; /* for diagnostics use */
705b6c7b
PF
291
292 /* device configuration */
293
294 unsigned int bus_type;
295 unsigned int irq_level;
296 unsigned long irq_flags;
297
298 unsigned char __iomem * reg_addr; /* memory mapped registers address */
299 u32 phys_reg_addr;
0fab6de0 300 bool reg_addr_requested;
705b6c7b
PF
301
302 MGSL_PARAMS params; /* communications parameters */
303 u32 idle_mode;
304 u32 max_frame_size; /* as set by device config */
305
306 unsigned int raw_rx_size;
307 unsigned int if_mode;
308
309 /* device status */
310
0fab6de0
JP
311 bool rx_enabled;
312 bool rx_restart;
705b6c7b 313
0fab6de0
JP
314 bool tx_enabled;
315 bool tx_active;
705b6c7b
PF
316
317 unsigned char signals; /* serial signal states */
2641dfd9 318 int init_error; /* initialization error */
705b6c7b
PF
319
320 unsigned char *tx_buf;
321 int tx_count;
322
323 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
324 char char_buf[MAX_ASYNC_BUFFER_SIZE];
0fab6de0 325 bool drop_rts_on_tx_done;
705b6c7b
PF
326 struct _input_signal_events input_signal_events;
327
328 int dcd_chkcount; /* check counts to prevent */
329 int cts_chkcount; /* too many IRQs if a signal */
330 int dsr_chkcount; /* is floating */
331 int ri_chkcount;
332
333 char *bufs; /* virtual address of DMA buffer lists */
334 dma_addr_t bufs_dma_addr; /* physical address of buffer descriptors */
335
336 unsigned int rbuf_count;
337 struct slgt_desc *rbufs;
338 unsigned int rbuf_current;
339 unsigned int rbuf_index;
340
341 unsigned int tbuf_count;
342 struct slgt_desc *tbufs;
343 unsigned int tbuf_current;
344 unsigned int tbuf_start;
345
346 unsigned char *tmp_rbuf;
347 unsigned int tmp_rbuf_count;
348
349 /* SPPP/Cisco HDLC device parts */
350
351 int netcount;
352 int dosyncppp;
353 spinlock_t netlock;
af69c7f9 354#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
355 struct net_device *netdev;
356#endif
357
358};
359
360static MGSL_PARAMS default_params = {
361 .mode = MGSL_MODE_HDLC,
362 .loopback = 0,
363 .flags = HDLC_FLAG_UNDERRUN_ABORT15,
364 .encoding = HDLC_ENCODING_NRZI_SPACE,
365 .clock_speed = 0,
366 .addr_filter = 0xff,
367 .crc_type = HDLC_CRC_16_CCITT,
368 .preamble_length = HDLC_PREAMBLE_LENGTH_8BITS,
369 .preamble = HDLC_PREAMBLE_PATTERN_NONE,
370 .data_rate = 9600,
371 .data_bits = 8,
372 .stop_bits = 1,
373 .parity = ASYNC_PARITY_NONE
374};
375
376
377#define BH_RECEIVE 1
378#define BH_TRANSMIT 2
379#define BH_STATUS 4
380#define IO_PIN_SHUTDOWN_LIMIT 100
381
382#define DMABUFSIZE 256
383#define DESC_LIST_SIZE 4096
384
385#define MASK_PARITY BIT1
202af6d5
PF
386#define MASK_FRAMING BIT0
387#define MASK_BREAK BIT14
705b6c7b
PF
388#define MASK_OVERRUN BIT4
389
390#define GSR 0x00 /* global status */
0080b7aa
PF
391#define JCR 0x04 /* JTAG control */
392#define IODR 0x08 /* GPIO direction */
393#define IOER 0x0c /* GPIO interrupt enable */
394#define IOVR 0x10 /* GPIO value */
395#define IOSR 0x14 /* GPIO interrupt status */
705b6c7b
PF
396#define TDR 0x80 /* tx data */
397#define RDR 0x80 /* rx data */
398#define TCR 0x82 /* tx control */
399#define TIR 0x84 /* tx idle */
400#define TPR 0x85 /* tx preamble */
401#define RCR 0x86 /* rx control */
402#define VCR 0x88 /* V.24 control */
403#define CCR 0x89 /* clock control */
404#define BDR 0x8a /* baud divisor */
405#define SCR 0x8c /* serial control */
406#define SSR 0x8e /* serial status */
407#define RDCSR 0x90 /* rx DMA control/status */
408#define TDCSR 0x94 /* tx DMA control/status */
409#define RDDAR 0x98 /* rx DMA descriptor address */
410#define TDDAR 0x9c /* tx DMA descriptor address */
411
412#define RXIDLE BIT14
413#define RXBREAK BIT14
414#define IRQ_TXDATA BIT13
415#define IRQ_TXIDLE BIT12
416#define IRQ_TXUNDER BIT11 /* HDLC */
417#define IRQ_RXDATA BIT10
418#define IRQ_RXIDLE BIT9 /* HDLC */
419#define IRQ_RXBREAK BIT9 /* async */
420#define IRQ_RXOVER BIT8
421#define IRQ_DSR BIT7
422#define IRQ_CTS BIT6
423#define IRQ_DCD BIT5
424#define IRQ_RI BIT4
425#define IRQ_ALL 0x3ff0
426#define IRQ_MASTER BIT0
427
428#define slgt_irq_on(info, mask) \
429 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) | (mask)))
430#define slgt_irq_off(info, mask) \
431 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) & ~(mask)))
432
433static __u8 rd_reg8(struct slgt_info *info, unsigned int addr);
434static void wr_reg8(struct slgt_info *info, unsigned int addr, __u8 value);
435static __u16 rd_reg16(struct slgt_info *info, unsigned int addr);
436static void wr_reg16(struct slgt_info *info, unsigned int addr, __u16 value);
437static __u32 rd_reg32(struct slgt_info *info, unsigned int addr);
438static void wr_reg32(struct slgt_info *info, unsigned int addr, __u32 value);
439
440static void msc_set_vcr(struct slgt_info *info);
441
442static int startup(struct slgt_info *info);
443static int block_til_ready(struct tty_struct *tty, struct file * filp,struct slgt_info *info);
444static void shutdown(struct slgt_info *info);
445static void program_hw(struct slgt_info *info);
446static void change_params(struct slgt_info *info);
447
448static int register_test(struct slgt_info *info);
449static int irq_test(struct slgt_info *info);
450static int loopback_test(struct slgt_info *info);
451static int adapter_test(struct slgt_info *info);
452
453static void reset_adapter(struct slgt_info *info);
454static void reset_port(struct slgt_info *info);
455static void async_mode(struct slgt_info *info);
cb10dc9a 456static void sync_mode(struct slgt_info *info);
705b6c7b
PF
457
458static void rx_stop(struct slgt_info *info);
459static void rx_start(struct slgt_info *info);
460static void reset_rbufs(struct slgt_info *info);
461static void free_rbufs(struct slgt_info *info, unsigned int first, unsigned int last);
462static void rdma_reset(struct slgt_info *info);
0fab6de0
JP
463static bool rx_get_frame(struct slgt_info *info);
464static bool rx_get_buf(struct slgt_info *info);
705b6c7b
PF
465
466static void tx_start(struct slgt_info *info);
467static void tx_stop(struct slgt_info *info);
468static void tx_set_idle(struct slgt_info *info);
469static unsigned int free_tbuf_count(struct slgt_info *info);
403214d0 470static unsigned int tbuf_bytes(struct slgt_info *info);
705b6c7b
PF
471static void reset_tbufs(struct slgt_info *info);
472static void tdma_reset(struct slgt_info *info);
bb029c67 473static void tdma_start(struct slgt_info *info);
705b6c7b
PF
474static void tx_load(struct slgt_info *info, const char *buf, unsigned int count);
475
476static void get_signals(struct slgt_info *info);
477static void set_signals(struct slgt_info *info);
478static void enable_loopback(struct slgt_info *info);
479static void set_rate(struct slgt_info *info, u32 data_rate);
480
481static int bh_action(struct slgt_info *info);
c4028958 482static void bh_handler(struct work_struct *work);
705b6c7b
PF
483static void bh_transmit(struct slgt_info *info);
484static void isr_serial(struct slgt_info *info);
485static void isr_rdma(struct slgt_info *info);
486static void isr_txeom(struct slgt_info *info, unsigned short status);
487static void isr_tdma(struct slgt_info *info);
705b6c7b
PF
488
489static int alloc_dma_bufs(struct slgt_info *info);
490static void free_dma_bufs(struct slgt_info *info);
491static int alloc_desc(struct slgt_info *info);
492static void free_desc(struct slgt_info *info);
493static int alloc_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count);
494static void free_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count);
495
496static int alloc_tmp_rbuf(struct slgt_info *info);
497static void free_tmp_rbuf(struct slgt_info *info);
498
499static void tx_timeout(unsigned long context);
500static void rx_timeout(unsigned long context);
501
502/*
503 * ioctl handlers
504 */
505static int get_stats(struct slgt_info *info, struct mgsl_icount __user *user_icount);
506static int get_params(struct slgt_info *info, MGSL_PARAMS __user *params);
507static int set_params(struct slgt_info *info, MGSL_PARAMS __user *params);
508static int get_txidle(struct slgt_info *info, int __user *idle_mode);
509static int set_txidle(struct slgt_info *info, int idle_mode);
510static int tx_enable(struct slgt_info *info, int enable);
511static int tx_abort(struct slgt_info *info);
512static int rx_enable(struct slgt_info *info, int enable);
513static int modem_input_wait(struct slgt_info *info,int arg);
514static int wait_mgsl_event(struct slgt_info *info, int __user *mask_ptr);
515static int tiocmget(struct tty_struct *tty, struct file *file);
516static int tiocmset(struct tty_struct *tty, struct file *file,
517 unsigned int set, unsigned int clear);
9e98966c 518static int set_break(struct tty_struct *tty, int break_state);
705b6c7b
PF
519static int get_interface(struct slgt_info *info, int __user *if_mode);
520static int set_interface(struct slgt_info *info, int if_mode);
0080b7aa
PF
521static int set_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
522static int get_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
523static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
705b6c7b
PF
524
525/*
526 * driver functions
527 */
528static void add_device(struct slgt_info *info);
529static void device_init(int adapter_num, struct pci_dev *pdev);
530static int claim_resources(struct slgt_info *info);
531static void release_resources(struct slgt_info *info);
532
533/*
534 * DEBUG OUTPUT CODE
535 */
536#ifndef DBGINFO
537#define DBGINFO(fmt)
538#endif
539#ifndef DBGERR
540#define DBGERR(fmt)
541#endif
542#ifndef DBGBH
543#define DBGBH(fmt)
544#endif
545#ifndef DBGISR
546#define DBGISR(fmt)
547#endif
548
549#ifdef DBGDATA
550static void trace_block(struct slgt_info *info, const char *data, int count, const char *label)
551{
552 int i;
553 int linecount;
554 printk("%s %s data:\n",info->device_name, label);
555 while(count) {
556 linecount = (count > 16) ? 16 : count;
557 for(i=0; i < linecount; i++)
558 printk("%02X ",(unsigned char)data[i]);
559 for(;i<17;i++)
560 printk(" ");
561 for(i=0;i<linecount;i++) {
562 if (data[i]>=040 && data[i]<=0176)
563 printk("%c",data[i]);
564 else
565 printk(".");
566 }
567 printk("\n");
568 data += linecount;
569 count -= linecount;
570 }
571}
572#else
573#define DBGDATA(info, buf, size, label)
574#endif
575
576#ifdef DBGTBUF
577static void dump_tbufs(struct slgt_info *info)
578{
579 int i;
580 printk("tbuf_current=%d\n", info->tbuf_current);
581 for (i=0 ; i < info->tbuf_count ; i++) {
582 printk("%d: count=%04X status=%04X\n",
583 i, le16_to_cpu(info->tbufs[i].count), le16_to_cpu(info->tbufs[i].status));
584 }
585}
586#else
587#define DBGTBUF(info)
588#endif
589
590#ifdef DBGRBUF
591static void dump_rbufs(struct slgt_info *info)
592{
593 int i;
594 printk("rbuf_current=%d\n", info->rbuf_current);
595 for (i=0 ; i < info->rbuf_count ; i++) {
596 printk("%d: count=%04X status=%04X\n",
597 i, le16_to_cpu(info->rbufs[i].count), le16_to_cpu(info->rbufs[i].status));
598 }
599}
600#else
601#define DBGRBUF(info)
602#endif
603
604static inline int sanity_check(struct slgt_info *info, char *devname, const char *name)
605{
606#ifdef SANITY_CHECK
607 if (!info) {
608 printk("null struct slgt_info for (%s) in %s\n", devname, name);
609 return 1;
610 }
611 if (info->magic != MGSL_MAGIC) {
612 printk("bad magic number struct slgt_info (%s) in %s\n", devname, name);
613 return 1;
614 }
615#else
616 if (!info)
617 return 1;
618#endif
619 return 0;
620}
621
622/**
623 * line discipline callback wrappers
624 *
625 * The wrappers maintain line discipline references
626 * while calling into the line discipline.
627 *
628 * ldisc_receive_buf - pass receive data to line discipline
629 */
630static void ldisc_receive_buf(struct tty_struct *tty,
631 const __u8 *data, char *flags, int count)
632{
633 struct tty_ldisc *ld;
634 if (!tty)
635 return;
636 ld = tty_ldisc_ref(tty);
637 if (ld) {
a352def2
AC
638 if (ld->ops->receive_buf)
639 ld->ops->receive_buf(tty, data, flags, count);
705b6c7b
PF
640 tty_ldisc_deref(ld);
641 }
642}
643
644/* tty callbacks */
645
646static int open(struct tty_struct *tty, struct file *filp)
647{
648 struct slgt_info *info;
649 int retval, line;
650 unsigned long flags;
651
652 line = tty->index;
653 if ((line < 0) || (line >= slgt_device_count)) {
654 DBGERR(("%s: open with invalid line #%d.\n", driver_name, line));
655 return -ENODEV;
656 }
657
658 info = slgt_device_list;
659 while(info && info->line != line)
660 info = info->next_device;
661 if (sanity_check(info, tty->name, "open"))
662 return -ENODEV;
663 if (info->init_error) {
664 DBGERR(("%s init error=%d\n", info->device_name, info->init_error));
665 return -ENODEV;
666 }
667
668 tty->driver_data = info;
8fb06c77 669 info->port.tty = tty;
705b6c7b 670
8fb06c77 671 DBGINFO(("%s open, old ref count = %d\n", info->device_name, info->port.count));
705b6c7b
PF
672
673 /* If port is closing, signal caller to try again */
8fb06c77
AC
674 if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING){
675 if (info->port.flags & ASYNC_CLOSING)
676 interruptible_sleep_on(&info->port.close_wait);
677 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
705b6c7b
PF
678 -EAGAIN : -ERESTARTSYS);
679 goto cleanup;
680 }
681
8fb06c77 682 info->port.tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
705b6c7b
PF
683
684 spin_lock_irqsave(&info->netlock, flags);
685 if (info->netcount) {
686 retval = -EBUSY;
687 spin_unlock_irqrestore(&info->netlock, flags);
688 goto cleanup;
689 }
8fb06c77 690 info->port.count++;
705b6c7b
PF
691 spin_unlock_irqrestore(&info->netlock, flags);
692
8fb06c77 693 if (info->port.count == 1) {
705b6c7b
PF
694 /* 1st open on this device, init hardware */
695 retval = startup(info);
696 if (retval < 0)
697 goto cleanup;
698 }
699
700 retval = block_til_ready(tty, filp, info);
701 if (retval) {
702 DBGINFO(("%s block_til_ready rc=%d\n", info->device_name, retval));
703 goto cleanup;
704 }
705
706 retval = 0;
707
708cleanup:
709 if (retval) {
710 if (tty->count == 1)
8fb06c77
AC
711 info->port.tty = NULL; /* tty layer will release tty struct */
712 if(info->port.count)
713 info->port.count--;
705b6c7b
PF
714 }
715
716 DBGINFO(("%s open rc=%d\n", info->device_name, retval));
717 return retval;
718}
719
720static void close(struct tty_struct *tty, struct file *filp)
721{
722 struct slgt_info *info = tty->driver_data;
723
724 if (sanity_check(info, tty->name, "close"))
725 return;
8fb06c77 726 DBGINFO(("%s close entry, count=%d\n", info->device_name, info->port.count));
705b6c7b 727
8fb06c77 728 if (!info->port.count)
705b6c7b
PF
729 return;
730
731 if (tty_hung_up_p(filp))
732 goto cleanup;
733
8fb06c77 734 if ((tty->count == 1) && (info->port.count != 1)) {
705b6c7b
PF
735 /*
736 * tty->count is 1 and the tty structure will be freed.
8fb06c77 737 * info->port.count should be one in this case.
705b6c7b
PF
738 * if it's not, correct it so that the port is shutdown.
739 */
740 DBGERR(("%s close: bad refcount; tty->count=1, "
8fb06c77
AC
741 "info->port.count=%d\n", info->device_name, info->port.count));
742 info->port.count = 1;
705b6c7b
PF
743 }
744
8fb06c77 745 info->port.count--;
705b6c7b
PF
746
747 /* if at least one open remaining, leave hardware active */
8fb06c77 748 if (info->port.count)
705b6c7b
PF
749 goto cleanup;
750
8fb06c77 751 info->port.flags |= ASYNC_CLOSING;
705b6c7b
PF
752
753 /* set tty->closing to notify line discipline to
754 * only process XON/XOFF characters. Only the N_TTY
755 * discipline appears to use this (ppp does not).
756 */
757 tty->closing = 1;
758
759 /* wait for transmit data to clear all layers */
760
44b7d1b3 761 if (info->port.closing_wait != ASYNC_CLOSING_WAIT_NONE) {
705b6c7b 762 DBGINFO(("%s call tty_wait_until_sent\n", info->device_name));
44b7d1b3 763 tty_wait_until_sent(tty, info->port.closing_wait);
705b6c7b
PF
764 }
765
8fb06c77 766 if (info->port.flags & ASYNC_INITIALIZED)
705b6c7b 767 wait_until_sent(tty, info->timeout);
978e595f 768 flush_buffer(tty);
705b6c7b
PF
769 tty_ldisc_flush(tty);
770
771 shutdown(info);
772
773 tty->closing = 0;
8fb06c77 774 info->port.tty = NULL;
705b6c7b 775
8fb06c77 776 if (info->port.blocked_open) {
44b7d1b3
AC
777 if (info->port.close_delay) {
778 msleep_interruptible(jiffies_to_msecs(info->port.close_delay));
705b6c7b 779 }
8fb06c77 780 wake_up_interruptible(&info->port.open_wait);
705b6c7b
PF
781 }
782
8fb06c77 783 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
705b6c7b 784
8fb06c77 785 wake_up_interruptible(&info->port.close_wait);
705b6c7b
PF
786
787cleanup:
8fb06c77 788 DBGINFO(("%s close exit, count=%d\n", tty->driver->name, info->port.count));
705b6c7b
PF
789}
790
791static void hangup(struct tty_struct *tty)
792{
793 struct slgt_info *info = tty->driver_data;
794
795 if (sanity_check(info, tty->name, "hangup"))
796 return;
797 DBGINFO(("%s hangup\n", info->device_name));
798
799 flush_buffer(tty);
800 shutdown(info);
801
8fb06c77
AC
802 info->port.count = 0;
803 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
804 info->port.tty = NULL;
705b6c7b 805
8fb06c77 806 wake_up_interruptible(&info->port.open_wait);
705b6c7b
PF
807}
808
606d099c 809static void set_termios(struct tty_struct *tty, struct ktermios *old_termios)
705b6c7b
PF
810{
811 struct slgt_info *info = tty->driver_data;
812 unsigned long flags;
813
814 DBGINFO(("%s set_termios\n", tty->driver->name));
815
705b6c7b
PF
816 change_params(info);
817
818 /* Handle transition to B0 status */
819 if (old_termios->c_cflag & CBAUD &&
820 !(tty->termios->c_cflag & CBAUD)) {
821 info->signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
822 spin_lock_irqsave(&info->lock,flags);
823 set_signals(info);
824 spin_unlock_irqrestore(&info->lock,flags);
825 }
826
827 /* Handle transition away from B0 status */
828 if (!(old_termios->c_cflag & CBAUD) &&
829 tty->termios->c_cflag & CBAUD) {
830 info->signals |= SerialSignal_DTR;
831 if (!(tty->termios->c_cflag & CRTSCTS) ||
832 !test_bit(TTY_THROTTLED, &tty->flags)) {
833 info->signals |= SerialSignal_RTS;
834 }
835 spin_lock_irqsave(&info->lock,flags);
836 set_signals(info);
837 spin_unlock_irqrestore(&info->lock,flags);
838 }
839
840 /* Handle turning off CRTSCTS */
841 if (old_termios->c_cflag & CRTSCTS &&
842 !(tty->termios->c_cflag & CRTSCTS)) {
843 tty->hw_stopped = 0;
844 tx_release(tty);
845 }
846}
847
848static int write(struct tty_struct *tty,
849 const unsigned char *buf, int count)
850{
851 int ret = 0;
852 struct slgt_info *info = tty->driver_data;
853 unsigned long flags;
8a38c285 854 unsigned int bufs_needed;
705b6c7b
PF
855
856 if (sanity_check(info, tty->name, "write"))
857 goto cleanup;
858 DBGINFO(("%s write count=%d\n", info->device_name, count));
859
326f28e9 860 if (!info->tx_buf)
705b6c7b
PF
861 goto cleanup;
862
863 if (count > info->max_frame_size) {
864 ret = -EIO;
865 goto cleanup;
866 }
867
868 if (!count)
869 goto cleanup;
870
8a38c285
PF
871 if (!info->tx_active && info->tx_count) {
872 /* send accumulated data from send_char() */
873 tx_load(info, info->tx_buf, info->tx_count);
874 goto start;
705b6c7b 875 }
8a38c285
PF
876 bufs_needed = (count/DMABUFSIZE);
877 if (count % DMABUFSIZE)
878 ++bufs_needed;
879 if (bufs_needed > free_tbuf_count(info))
880 goto cleanup;
705b6c7b
PF
881
882 ret = info->tx_count = count;
883 tx_load(info, buf, count);
884 goto start;
885
886start:
887 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
888 spin_lock_irqsave(&info->lock,flags);
889 if (!info->tx_active)
890 tx_start(info);
bb029c67
PF
891 else
892 tdma_start(info);
705b6c7b
PF
893 spin_unlock_irqrestore(&info->lock,flags);
894 }
895
896cleanup:
897 DBGINFO(("%s write rc=%d\n", info->device_name, ret));
898 return ret;
899}
900
55da7789 901static int put_char(struct tty_struct *tty, unsigned char ch)
705b6c7b
PF
902{
903 struct slgt_info *info = tty->driver_data;
904 unsigned long flags;
6c82c415 905 int ret = 0;
705b6c7b
PF
906
907 if (sanity_check(info, tty->name, "put_char"))
55da7789 908 return 0;
705b6c7b 909 DBGINFO(("%s put_char(%d)\n", info->device_name, ch));
326f28e9 910 if (!info->tx_buf)
55da7789 911 return 0;
705b6c7b 912 spin_lock_irqsave(&info->lock,flags);
55da7789 913 if (!info->tx_active && (info->tx_count < info->max_frame_size)) {
705b6c7b 914 info->tx_buf[info->tx_count++] = ch;
55da7789
AC
915 ret = 1;
916 }
705b6c7b 917 spin_unlock_irqrestore(&info->lock,flags);
55da7789 918 return ret;
705b6c7b
PF
919}
920
921static void send_xchar(struct tty_struct *tty, char ch)
922{
923 struct slgt_info *info = tty->driver_data;
924 unsigned long flags;
925
926 if (sanity_check(info, tty->name, "send_xchar"))
927 return;
928 DBGINFO(("%s send_xchar(%d)\n", info->device_name, ch));
929 info->x_char = ch;
930 if (ch) {
931 spin_lock_irqsave(&info->lock,flags);
932 if (!info->tx_enabled)
933 tx_start(info);
934 spin_unlock_irqrestore(&info->lock,flags);
935 }
936}
937
938static void wait_until_sent(struct tty_struct *tty, int timeout)
939{
940 struct slgt_info *info = tty->driver_data;
941 unsigned long orig_jiffies, char_time;
942
943 if (!info )
944 return;
945 if (sanity_check(info, tty->name, "wait_until_sent"))
946 return;
947 DBGINFO(("%s wait_until_sent entry\n", info->device_name));
8fb06c77 948 if (!(info->port.flags & ASYNC_INITIALIZED))
705b6c7b
PF
949 goto exit;
950
951 orig_jiffies = jiffies;
952
953 /* Set check interval to 1/5 of estimated time to
954 * send a character, and make it at least 1. The check
955 * interval should also be less than the timeout.
956 * Note: use tight timings here to satisfy the NIST-PCTS.
957 */
958
978e595f
AC
959 lock_kernel();
960
705b6c7b
PF
961 if (info->params.data_rate) {
962 char_time = info->timeout/(32 * 5);
963 if (!char_time)
964 char_time++;
965 } else
966 char_time = 1;
967
968 if (timeout)
969 char_time = min_t(unsigned long, char_time, timeout);
970
971 while (info->tx_active) {
972 msleep_interruptible(jiffies_to_msecs(char_time));
973 if (signal_pending(current))
974 break;
975 if (timeout && time_after(jiffies, orig_jiffies + timeout))
976 break;
977 }
978e595f 978 unlock_kernel();
705b6c7b
PF
979
980exit:
981 DBGINFO(("%s wait_until_sent exit\n", info->device_name));
982}
983
984static int write_room(struct tty_struct *tty)
985{
986 struct slgt_info *info = tty->driver_data;
987 int ret;
988
989 if (sanity_check(info, tty->name, "write_room"))
990 return 0;
991 ret = (info->tx_active) ? 0 : HDLC_MAX_FRAME_SIZE;
992 DBGINFO(("%s write_room=%d\n", info->device_name, ret));
993 return ret;
994}
995
996static void flush_chars(struct tty_struct *tty)
997{
998 struct slgt_info *info = tty->driver_data;
999 unsigned long flags;
1000
1001 if (sanity_check(info, tty->name, "flush_chars"))
1002 return;
1003 DBGINFO(("%s flush_chars entry tx_count=%d\n", info->device_name, info->tx_count));
1004
1005 if (info->tx_count <= 0 || tty->stopped ||
1006 tty->hw_stopped || !info->tx_buf)
1007 return;
1008
1009 DBGINFO(("%s flush_chars start transmit\n", info->device_name));
1010
1011 spin_lock_irqsave(&info->lock,flags);
1012 if (!info->tx_active && info->tx_count) {
1013 tx_load(info, info->tx_buf,info->tx_count);
1014 tx_start(info);
1015 }
1016 spin_unlock_irqrestore(&info->lock,flags);
1017}
1018
1019static void flush_buffer(struct tty_struct *tty)
1020{
1021 struct slgt_info *info = tty->driver_data;
1022 unsigned long flags;
1023
1024 if (sanity_check(info, tty->name, "flush_buffer"))
1025 return;
1026 DBGINFO(("%s flush_buffer\n", info->device_name));
1027
1028 spin_lock_irqsave(&info->lock,flags);
1029 if (!info->tx_active)
1030 info->tx_count = 0;
1031 spin_unlock_irqrestore(&info->lock,flags);
1032
705b6c7b
PF
1033 tty_wakeup(tty);
1034}
1035
1036/*
1037 * throttle (stop) transmitter
1038 */
1039static void tx_hold(struct tty_struct *tty)
1040{
1041 struct slgt_info *info = tty->driver_data;
1042 unsigned long flags;
1043
1044 if (sanity_check(info, tty->name, "tx_hold"))
1045 return;
1046 DBGINFO(("%s tx_hold\n", info->device_name));
1047 spin_lock_irqsave(&info->lock,flags);
1048 if (info->tx_enabled && info->params.mode == MGSL_MODE_ASYNC)
1049 tx_stop(info);
1050 spin_unlock_irqrestore(&info->lock,flags);
1051}
1052
1053/*
1054 * release (start) transmitter
1055 */
1056static void tx_release(struct tty_struct *tty)
1057{
1058 struct slgt_info *info = tty->driver_data;
1059 unsigned long flags;
1060
1061 if (sanity_check(info, tty->name, "tx_release"))
1062 return;
1063 DBGINFO(("%s tx_release\n", info->device_name));
1064 spin_lock_irqsave(&info->lock,flags);
1065 if (!info->tx_active && info->tx_count) {
1066 tx_load(info, info->tx_buf, info->tx_count);
1067 tx_start(info);
1068 }
1069 spin_unlock_irqrestore(&info->lock,flags);
1070}
1071
1072/*
1073 * Service an IOCTL request
1074 *
1075 * Arguments
1076 *
1077 * tty pointer to tty instance data
1078 * file pointer to associated file object for device
1079 * cmd IOCTL command code
1080 * arg command argument/context
1081 *
1082 * Return 0 if success, otherwise error code
1083 */
1084static int ioctl(struct tty_struct *tty, struct file *file,
1085 unsigned int cmd, unsigned long arg)
1086{
1087 struct slgt_info *info = tty->driver_data;
1088 struct mgsl_icount cnow; /* kernel counter temps */
1089 struct serial_icounter_struct __user *p_cuser; /* user space */
1090 unsigned long flags;
1091 void __user *argp = (void __user *)arg;
1f8cabb7 1092 int ret;
705b6c7b
PF
1093
1094 if (sanity_check(info, tty->name, "ioctl"))
1095 return -ENODEV;
1096 DBGINFO(("%s ioctl() cmd=%08X\n", info->device_name, cmd));
1097
1098 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1099 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1100 if (tty->flags & (1 << TTY_IO_ERROR))
1101 return -EIO;
1102 }
1103
1f8cabb7
AC
1104 lock_kernel();
1105
705b6c7b
PF
1106 switch (cmd) {
1107 case MGSL_IOCGPARAMS:
1f8cabb7
AC
1108 ret = get_params(info, argp);
1109 break;
705b6c7b 1110 case MGSL_IOCSPARAMS:
1f8cabb7
AC
1111 ret = set_params(info, argp);
1112 break;
705b6c7b 1113 case MGSL_IOCGTXIDLE:
1f8cabb7
AC
1114 ret = get_txidle(info, argp);
1115 break;
705b6c7b 1116 case MGSL_IOCSTXIDLE:
1f8cabb7
AC
1117 ret = set_txidle(info, (int)arg);
1118 break;
705b6c7b 1119 case MGSL_IOCTXENABLE:
1f8cabb7
AC
1120 ret = tx_enable(info, (int)arg);
1121 break;
705b6c7b 1122 case MGSL_IOCRXENABLE:
1f8cabb7
AC
1123 ret = rx_enable(info, (int)arg);
1124 break;
705b6c7b 1125 case MGSL_IOCTXABORT:
1f8cabb7
AC
1126 ret = tx_abort(info);
1127 break;
705b6c7b 1128 case MGSL_IOCGSTATS:
1f8cabb7
AC
1129 ret = get_stats(info, argp);
1130 break;
705b6c7b 1131 case MGSL_IOCWAITEVENT:
1f8cabb7
AC
1132 ret = wait_mgsl_event(info, argp);
1133 break;
705b6c7b 1134 case TIOCMIWAIT:
1f8cabb7
AC
1135 ret = modem_input_wait(info,(int)arg);
1136 break;
705b6c7b 1137 case MGSL_IOCGIF:
1f8cabb7
AC
1138 ret = get_interface(info, argp);
1139 break;
705b6c7b 1140 case MGSL_IOCSIF:
1f8cabb7
AC
1141 ret = set_interface(info,(int)arg);
1142 break;
0080b7aa 1143 case MGSL_IOCSGPIO:
1f8cabb7
AC
1144 ret = set_gpio(info, argp);
1145 break;
0080b7aa 1146 case MGSL_IOCGGPIO:
1f8cabb7
AC
1147 ret = get_gpio(info, argp);
1148 break;
0080b7aa 1149 case MGSL_IOCWAITGPIO:
1f8cabb7
AC
1150 ret = wait_gpio(info, argp);
1151 break;
705b6c7b
PF
1152 case TIOCGICOUNT:
1153 spin_lock_irqsave(&info->lock,flags);
1154 cnow = info->icount;
1155 spin_unlock_irqrestore(&info->lock,flags);
1156 p_cuser = argp;
1157 if (put_user(cnow.cts, &p_cuser->cts) ||
1158 put_user(cnow.dsr, &p_cuser->dsr) ||
1159 put_user(cnow.rng, &p_cuser->rng) ||
1160 put_user(cnow.dcd, &p_cuser->dcd) ||
1161 put_user(cnow.rx, &p_cuser->rx) ||
1162 put_user(cnow.tx, &p_cuser->tx) ||
1163 put_user(cnow.frame, &p_cuser->frame) ||
1164 put_user(cnow.overrun, &p_cuser->overrun) ||
1165 put_user(cnow.parity, &p_cuser->parity) ||
1166 put_user(cnow.brk, &p_cuser->brk) ||
1167 put_user(cnow.buf_overrun, &p_cuser->buf_overrun))
1f8cabb7
AC
1168 ret = -EFAULT;
1169 ret = 0;
1170 break;
705b6c7b 1171 default:
1f8cabb7 1172 ret = -ENOIOCTLCMD;
705b6c7b 1173 }
1f8cabb7
AC
1174 unlock_kernel();
1175 return ret;
705b6c7b
PF
1176}
1177
2acdb169
PF
1178/*
1179 * support for 32 bit ioctl calls on 64 bit systems
1180 */
1181#ifdef CONFIG_COMPAT
1182static long get_params32(struct slgt_info *info, struct MGSL_PARAMS32 __user *user_params)
1183{
1184 struct MGSL_PARAMS32 tmp_params;
1185
1186 DBGINFO(("%s get_params32\n", info->device_name));
1187 tmp_params.mode = (compat_ulong_t)info->params.mode;
1188 tmp_params.loopback = info->params.loopback;
1189 tmp_params.flags = info->params.flags;
1190 tmp_params.encoding = info->params.encoding;
1191 tmp_params.clock_speed = (compat_ulong_t)info->params.clock_speed;
1192 tmp_params.addr_filter = info->params.addr_filter;
1193 tmp_params.crc_type = info->params.crc_type;
1194 tmp_params.preamble_length = info->params.preamble_length;
1195 tmp_params.preamble = info->params.preamble;
1196 tmp_params.data_rate = (compat_ulong_t)info->params.data_rate;
1197 tmp_params.data_bits = info->params.data_bits;
1198 tmp_params.stop_bits = info->params.stop_bits;
1199 tmp_params.parity = info->params.parity;
1200 if (copy_to_user(user_params, &tmp_params, sizeof(struct MGSL_PARAMS32)))
1201 return -EFAULT;
1202 return 0;
1203}
1204
1205static long set_params32(struct slgt_info *info, struct MGSL_PARAMS32 __user *new_params)
1206{
1207 struct MGSL_PARAMS32 tmp_params;
1208
1209 DBGINFO(("%s set_params32\n", info->device_name));
1210 if (copy_from_user(&tmp_params, new_params, sizeof(struct MGSL_PARAMS32)))
1211 return -EFAULT;
1212
1213 spin_lock(&info->lock);
1214 info->params.mode = tmp_params.mode;
1215 info->params.loopback = tmp_params.loopback;
1216 info->params.flags = tmp_params.flags;
1217 info->params.encoding = tmp_params.encoding;
1218 info->params.clock_speed = tmp_params.clock_speed;
1219 info->params.addr_filter = tmp_params.addr_filter;
1220 info->params.crc_type = tmp_params.crc_type;
1221 info->params.preamble_length = tmp_params.preamble_length;
1222 info->params.preamble = tmp_params.preamble;
1223 info->params.data_rate = tmp_params.data_rate;
1224 info->params.data_bits = tmp_params.data_bits;
1225 info->params.stop_bits = tmp_params.stop_bits;
1226 info->params.parity = tmp_params.parity;
1227 spin_unlock(&info->lock);
1228
1229 change_params(info);
1230
1231 return 0;
1232}
1233
1234static long slgt_compat_ioctl(struct tty_struct *tty, struct file *file,
1235 unsigned int cmd, unsigned long arg)
1236{
1237 struct slgt_info *info = tty->driver_data;
1238 int rc = -ENOIOCTLCMD;
1239
1240 if (sanity_check(info, tty->name, "compat_ioctl"))
1241 return -ENODEV;
1242 DBGINFO(("%s compat_ioctl() cmd=%08X\n", info->device_name, cmd));
1243
1244 switch (cmd) {
1245
1246 case MGSL_IOCSPARAMS32:
1247 rc = set_params32(info, compat_ptr(arg));
1248 break;
1249
1250 case MGSL_IOCGPARAMS32:
1251 rc = get_params32(info, compat_ptr(arg));
1252 break;
1253
1254 case MGSL_IOCGPARAMS:
1255 case MGSL_IOCSPARAMS:
1256 case MGSL_IOCGTXIDLE:
1257 case MGSL_IOCGSTATS:
1258 case MGSL_IOCWAITEVENT:
1259 case MGSL_IOCGIF:
1260 case MGSL_IOCSGPIO:
1261 case MGSL_IOCGGPIO:
1262 case MGSL_IOCWAITGPIO:
1263 case TIOCGICOUNT:
1264 rc = ioctl(tty, file, cmd, (unsigned long)(compat_ptr(arg)));
1265 break;
1266
1267 case MGSL_IOCSTXIDLE:
1268 case MGSL_IOCTXENABLE:
1269 case MGSL_IOCRXENABLE:
1270 case MGSL_IOCTXABORT:
1271 case TIOCMIWAIT:
1272 case MGSL_IOCSIF:
1273 rc = ioctl(tty, file, cmd, arg);
1274 break;
1275 }
1276
1277 DBGINFO(("%s compat_ioctl() cmd=%08X rc=%d\n", info->device_name, cmd, rc));
1278 return rc;
1279}
1280#else
1281#define slgt_compat_ioctl NULL
1282#endif /* ifdef CONFIG_COMPAT */
1283
705b6c7b
PF
1284/*
1285 * proc fs support
1286 */
1287static inline int line_info(char *buf, struct slgt_info *info)
1288{
1289 char stat_buf[30];
1290 int ret;
1291 unsigned long flags;
1292
1293 ret = sprintf(buf, "%s: IO=%08X IRQ=%d MaxFrameSize=%u\n",
1294 info->device_name, info->phys_reg_addr,
1295 info->irq_level, info->max_frame_size);
1296
1297 /* output current serial signal states */
1298 spin_lock_irqsave(&info->lock,flags);
1299 get_signals(info);
1300 spin_unlock_irqrestore(&info->lock,flags);
1301
1302 stat_buf[0] = 0;
1303 stat_buf[1] = 0;
1304 if (info->signals & SerialSignal_RTS)
1305 strcat(stat_buf, "|RTS");
1306 if (info->signals & SerialSignal_CTS)
1307 strcat(stat_buf, "|CTS");
1308 if (info->signals & SerialSignal_DTR)
1309 strcat(stat_buf, "|DTR");
1310 if (info->signals & SerialSignal_DSR)
1311 strcat(stat_buf, "|DSR");
1312 if (info->signals & SerialSignal_DCD)
1313 strcat(stat_buf, "|CD");
1314 if (info->signals & SerialSignal_RI)
1315 strcat(stat_buf, "|RI");
1316
1317 if (info->params.mode != MGSL_MODE_ASYNC) {
1318 ret += sprintf(buf+ret, "\tHDLC txok:%d rxok:%d",
1319 info->icount.txok, info->icount.rxok);
1320 if (info->icount.txunder)
1321 ret += sprintf(buf+ret, " txunder:%d", info->icount.txunder);
1322 if (info->icount.txabort)
1323 ret += sprintf(buf+ret, " txabort:%d", info->icount.txabort);
1324 if (info->icount.rxshort)
1325 ret += sprintf(buf+ret, " rxshort:%d", info->icount.rxshort);
1326 if (info->icount.rxlong)
1327 ret += sprintf(buf+ret, " rxlong:%d", info->icount.rxlong);
1328 if (info->icount.rxover)
1329 ret += sprintf(buf+ret, " rxover:%d", info->icount.rxover);
1330 if (info->icount.rxcrc)
1331 ret += sprintf(buf+ret, " rxcrc:%d", info->icount.rxcrc);
1332 } else {
1333 ret += sprintf(buf+ret, "\tASYNC tx:%d rx:%d",
1334 info->icount.tx, info->icount.rx);
1335 if (info->icount.frame)
1336 ret += sprintf(buf+ret, " fe:%d", info->icount.frame);
1337 if (info->icount.parity)
1338 ret += sprintf(buf+ret, " pe:%d", info->icount.parity);
1339 if (info->icount.brk)
1340 ret += sprintf(buf+ret, " brk:%d", info->icount.brk);
1341 if (info->icount.overrun)
1342 ret += sprintf(buf+ret, " oe:%d", info->icount.overrun);
1343 }
1344
1345 /* Append serial signal status to end */
1346 ret += sprintf(buf+ret, " %s\n", stat_buf+1);
1347
1348 ret += sprintf(buf+ret, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1349 info->tx_active,info->bh_requested,info->bh_running,
1350 info->pending_bh);
1351
1352 return ret;
1353}
1354
1355/* Called to print information about devices
1356 */
1357static int read_proc(char *page, char **start, off_t off, int count,
1358 int *eof, void *data)
1359{
1360 int len = 0, l;
1361 off_t begin = 0;
1362 struct slgt_info *info;
1363
1364 len += sprintf(page, "synclink_gt driver:%s\n", driver_version);
1365
1366 info = slgt_device_list;
1367 while( info ) {
1368 l = line_info(page + len, info);
1369 len += l;
1370 if (len+begin > off+count)
1371 goto done;
1372 if (len+begin < off) {
1373 begin += len;
1374 len = 0;
1375 }
1376 info = info->next_device;
1377 }
1378
1379 *eof = 1;
1380done:
1381 if (off >= len+begin)
1382 return 0;
1383 *start = page + (off-begin);
1384 return ((count < begin+len-off) ? count : begin+len-off);
1385}
1386
1387/*
1388 * return count of bytes in transmit buffer
1389 */
1390static int chars_in_buffer(struct tty_struct *tty)
1391{
1392 struct slgt_info *info = tty->driver_data;
403214d0 1393 int count;
705b6c7b
PF
1394 if (sanity_check(info, tty->name, "chars_in_buffer"))
1395 return 0;
403214d0
PF
1396 count = tbuf_bytes(info);
1397 DBGINFO(("%s chars_in_buffer()=%d\n", info->device_name, count));
1398 return count;
705b6c7b
PF
1399}
1400
1401/*
1402 * signal remote device to throttle send data (our receive data)
1403 */
1404static void throttle(struct tty_struct * tty)
1405{
1406 struct slgt_info *info = tty->driver_data;
1407 unsigned long flags;
1408
1409 if (sanity_check(info, tty->name, "throttle"))
1410 return;
1411 DBGINFO(("%s throttle\n", info->device_name));
1412 if (I_IXOFF(tty))
1413 send_xchar(tty, STOP_CHAR(tty));
1414 if (tty->termios->c_cflag & CRTSCTS) {
1415 spin_lock_irqsave(&info->lock,flags);
1416 info->signals &= ~SerialSignal_RTS;
1417 set_signals(info);
1418 spin_unlock_irqrestore(&info->lock,flags);
1419 }
1420}
1421
1422/*
1423 * signal remote device to stop throttling send data (our receive data)
1424 */
1425static void unthrottle(struct tty_struct * tty)
1426{
1427 struct slgt_info *info = tty->driver_data;
1428 unsigned long flags;
1429
1430 if (sanity_check(info, tty->name, "unthrottle"))
1431 return;
1432 DBGINFO(("%s unthrottle\n", info->device_name));
1433 if (I_IXOFF(tty)) {
1434 if (info->x_char)
1435 info->x_char = 0;
1436 else
1437 send_xchar(tty, START_CHAR(tty));
1438 }
1439 if (tty->termios->c_cflag & CRTSCTS) {
1440 spin_lock_irqsave(&info->lock,flags);
1441 info->signals |= SerialSignal_RTS;
1442 set_signals(info);
1443 spin_unlock_irqrestore(&info->lock,flags);
1444 }
1445}
1446
1447/*
1448 * set or clear transmit break condition
1449 * break_state -1=set break condition, 0=clear
1450 */
9e98966c 1451static int set_break(struct tty_struct *tty, int break_state)
705b6c7b
PF
1452{
1453 struct slgt_info *info = tty->driver_data;
1454 unsigned short value;
1455 unsigned long flags;
1456
1457 if (sanity_check(info, tty->name, "set_break"))
9e98966c 1458 return -EINVAL;
705b6c7b
PF
1459 DBGINFO(("%s set_break(%d)\n", info->device_name, break_state));
1460
1461 spin_lock_irqsave(&info->lock,flags);
1462 value = rd_reg16(info, TCR);
1463 if (break_state == -1)
1464 value |= BIT6;
1465 else
1466 value &= ~BIT6;
1467 wr_reg16(info, TCR, value);
1468 spin_unlock_irqrestore(&info->lock,flags);
9e98966c 1469 return 0;
705b6c7b
PF
1470}
1471
af69c7f9 1472#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
1473
1474/**
1475 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1476 * set encoding and frame check sequence (FCS) options
1477 *
1478 * dev pointer to network device structure
1479 * encoding serial encoding setting
1480 * parity FCS setting
1481 *
1482 * returns 0 if success, otherwise error code
1483 */
1484static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
1485 unsigned short parity)
1486{
1487 struct slgt_info *info = dev_to_port(dev);
1488 unsigned char new_encoding;
1489 unsigned short new_crctype;
1490
1491 /* return error if TTY interface open */
8fb06c77 1492 if (info->port.count)
705b6c7b
PF
1493 return -EBUSY;
1494
1495 DBGINFO(("%s hdlcdev_attach\n", info->device_name));
1496
1497 switch (encoding)
1498 {
1499 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
1500 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
1501 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
1502 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
1503 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
1504 default: return -EINVAL;
1505 }
1506
1507 switch (parity)
1508 {
1509 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
1510 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
1511 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
1512 default: return -EINVAL;
1513 }
1514
1515 info->params.encoding = new_encoding;
53b3531b 1516 info->params.crc_type = new_crctype;
705b6c7b
PF
1517
1518 /* if network interface up, reprogram hardware */
1519 if (info->netcount)
1520 program_hw(info);
1521
1522 return 0;
1523}
1524
1525/**
1526 * called by generic HDLC layer to send frame
1527 *
1528 * skb socket buffer containing HDLC frame
1529 * dev pointer to network device structure
1530 *
1531 * returns 0 if success, otherwise error code
1532 */
1533static int hdlcdev_xmit(struct sk_buff *skb, struct net_device *dev)
1534{
1535 struct slgt_info *info = dev_to_port(dev);
705b6c7b
PF
1536 unsigned long flags;
1537
1538 DBGINFO(("%s hdlc_xmit\n", dev->name));
1539
1540 /* stop sending until this frame completes */
1541 netif_stop_queue(dev);
1542
1543 /* copy data to device buffers */
1544 info->tx_count = skb->len;
1545 tx_load(info, skb->data, skb->len);
1546
1547 /* update network statistics */
198191c4
KH
1548 dev->stats.tx_packets++;
1549 dev->stats.tx_bytes += skb->len;
705b6c7b
PF
1550
1551 /* done with socket buffer, so free it */
1552 dev_kfree_skb(skb);
1553
1554 /* save start time for transmit timeout detection */
1555 dev->trans_start = jiffies;
1556
1557 /* start hardware transmitter if necessary */
1558 spin_lock_irqsave(&info->lock,flags);
1559 if (!info->tx_active)
1560 tx_start(info);
1561 spin_unlock_irqrestore(&info->lock,flags);
1562
1563 return 0;
1564}
1565
1566/**
1567 * called by network layer when interface enabled
1568 * claim resources and initialize hardware
1569 *
1570 * dev pointer to network device structure
1571 *
1572 * returns 0 if success, otherwise error code
1573 */
1574static int hdlcdev_open(struct net_device *dev)
1575{
1576 struct slgt_info *info = dev_to_port(dev);
1577 int rc;
1578 unsigned long flags;
1579
d4c63b7c
PF
1580 if (!try_module_get(THIS_MODULE))
1581 return -EBUSY;
1582
705b6c7b
PF
1583 DBGINFO(("%s hdlcdev_open\n", dev->name));
1584
1585 /* generic HDLC layer open processing */
1586 if ((rc = hdlc_open(dev)))
1587 return rc;
1588
1589 /* arbitrate between network and tty opens */
1590 spin_lock_irqsave(&info->netlock, flags);
8fb06c77 1591 if (info->port.count != 0 || info->netcount != 0) {
705b6c7b
PF
1592 DBGINFO(("%s hdlc_open busy\n", dev->name));
1593 spin_unlock_irqrestore(&info->netlock, flags);
1594 return -EBUSY;
1595 }
1596 info->netcount=1;
1597 spin_unlock_irqrestore(&info->netlock, flags);
1598
1599 /* claim resources and init adapter */
1600 if ((rc = startup(info)) != 0) {
1601 spin_lock_irqsave(&info->netlock, flags);
1602 info->netcount=0;
1603 spin_unlock_irqrestore(&info->netlock, flags);
1604 return rc;
1605 }
1606
1607 /* assert DTR and RTS, apply hardware settings */
1608 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
1609 program_hw(info);
1610
1611 /* enable network layer transmit */
1612 dev->trans_start = jiffies;
1613 netif_start_queue(dev);
1614
1615 /* inform generic HDLC layer of current DCD status */
1616 spin_lock_irqsave(&info->lock, flags);
1617 get_signals(info);
1618 spin_unlock_irqrestore(&info->lock, flags);
fbeff3c1
KH
1619 if (info->signals & SerialSignal_DCD)
1620 netif_carrier_on(dev);
1621 else
1622 netif_carrier_off(dev);
705b6c7b
PF
1623 return 0;
1624}
1625
1626/**
1627 * called by network layer when interface is disabled
1628 * shutdown hardware and release resources
1629 *
1630 * dev pointer to network device structure
1631 *
1632 * returns 0 if success, otherwise error code
1633 */
1634static int hdlcdev_close(struct net_device *dev)
1635{
1636 struct slgt_info *info = dev_to_port(dev);
1637 unsigned long flags;
1638
1639 DBGINFO(("%s hdlcdev_close\n", dev->name));
1640
1641 netif_stop_queue(dev);
1642
1643 /* shutdown adapter and release resources */
1644 shutdown(info);
1645
1646 hdlc_close(dev);
1647
1648 spin_lock_irqsave(&info->netlock, flags);
1649 info->netcount=0;
1650 spin_unlock_irqrestore(&info->netlock, flags);
1651
d4c63b7c 1652 module_put(THIS_MODULE);
705b6c7b
PF
1653 return 0;
1654}
1655
1656/**
1657 * called by network layer to process IOCTL call to network device
1658 *
1659 * dev pointer to network device structure
1660 * ifr pointer to network interface request structure
1661 * cmd IOCTL command code
1662 *
1663 * returns 0 if success, otherwise error code
1664 */
1665static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1666{
1667 const size_t size = sizeof(sync_serial_settings);
1668 sync_serial_settings new_line;
1669 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
1670 struct slgt_info *info = dev_to_port(dev);
1671 unsigned int flags;
1672
1673 DBGINFO(("%s hdlcdev_ioctl\n", dev->name));
1674
1675 /* return error if TTY interface open */
8fb06c77 1676 if (info->port.count)
705b6c7b
PF
1677 return -EBUSY;
1678
1679 if (cmd != SIOCWANDEV)
1680 return hdlc_ioctl(dev, ifr, cmd);
1681
1682 switch(ifr->ifr_settings.type) {
1683 case IF_GET_IFACE: /* return current sync_serial_settings */
1684
1685 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
1686 if (ifr->ifr_settings.size < size) {
1687 ifr->ifr_settings.size = size; /* data size wanted */
1688 return -ENOBUFS;
1689 }
1690
1691 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1692 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1693 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1694 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
1695
1696 switch (flags){
1697 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
1698 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
1699 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
1700 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
1701 default: new_line.clock_type = CLOCK_DEFAULT;
1702 }
1703
1704 new_line.clock_rate = info->params.clock_speed;
1705 new_line.loopback = info->params.loopback ? 1:0;
1706
1707 if (copy_to_user(line, &new_line, size))
1708 return -EFAULT;
1709 return 0;
1710
1711 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
1712
1713 if(!capable(CAP_NET_ADMIN))
1714 return -EPERM;
1715 if (copy_from_user(&new_line, line, size))
1716 return -EFAULT;
1717
1718 switch (new_line.clock_type)
1719 {
1720 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
1721 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
1722 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
1723 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
1724 case CLOCK_DEFAULT: flags = info->params.flags &
1725 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1726 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1727 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1728 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
1729 default: return -EINVAL;
1730 }
1731
1732 if (new_line.loopback != 0 && new_line.loopback != 1)
1733 return -EINVAL;
1734
1735 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1736 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1737 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1738 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
1739 info->params.flags |= flags;
1740
1741 info->params.loopback = new_line.loopback;
1742
1743 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
1744 info->params.clock_speed = new_line.clock_rate;
1745 else
1746 info->params.clock_speed = 0;
1747
1748 /* if network interface up, reprogram hardware */
1749 if (info->netcount)
1750 program_hw(info);
1751 return 0;
1752
1753 default:
1754 return hdlc_ioctl(dev, ifr, cmd);
1755 }
1756}
1757
1758/**
1759 * called by network layer when transmit timeout is detected
1760 *
1761 * dev pointer to network device structure
1762 */
1763static void hdlcdev_tx_timeout(struct net_device *dev)
1764{
1765 struct slgt_info *info = dev_to_port(dev);
705b6c7b
PF
1766 unsigned long flags;
1767
1768 DBGINFO(("%s hdlcdev_tx_timeout\n", dev->name));
1769
198191c4
KH
1770 dev->stats.tx_errors++;
1771 dev->stats.tx_aborted_errors++;
705b6c7b
PF
1772
1773 spin_lock_irqsave(&info->lock,flags);
1774 tx_stop(info);
1775 spin_unlock_irqrestore(&info->lock,flags);
1776
1777 netif_wake_queue(dev);
1778}
1779
1780/**
1781 * called by device driver when transmit completes
1782 * reenable network layer transmit if stopped
1783 *
1784 * info pointer to device instance information
1785 */
1786static void hdlcdev_tx_done(struct slgt_info *info)
1787{
1788 if (netif_queue_stopped(info->netdev))
1789 netif_wake_queue(info->netdev);
1790}
1791
1792/**
1793 * called by device driver when frame received
1794 * pass frame to network layer
1795 *
1796 * info pointer to device instance information
1797 * buf pointer to buffer contianing frame data
1798 * size count of data bytes in buf
1799 */
1800static void hdlcdev_rx(struct slgt_info *info, char *buf, int size)
1801{
1802 struct sk_buff *skb = dev_alloc_skb(size);
1803 struct net_device *dev = info->netdev;
705b6c7b
PF
1804
1805 DBGINFO(("%s hdlcdev_rx\n", dev->name));
1806
1807 if (skb == NULL) {
1808 DBGERR(("%s: can't alloc skb, drop packet\n", dev->name));
198191c4 1809 dev->stats.rx_dropped++;
705b6c7b
PF
1810 return;
1811 }
1812
198191c4 1813 memcpy(skb_put(skb, size), buf, size);
705b6c7b 1814
198191c4 1815 skb->protocol = hdlc_type_trans(skb, dev);
705b6c7b 1816
198191c4
KH
1817 dev->stats.rx_packets++;
1818 dev->stats.rx_bytes += size;
705b6c7b
PF
1819
1820 netif_rx(skb);
1821
198191c4 1822 dev->last_rx = jiffies;
705b6c7b
PF
1823}
1824
1825/**
1826 * called by device driver when adding device instance
1827 * do generic HDLC initialization
1828 *
1829 * info pointer to device instance information
1830 *
1831 * returns 0 if success, otherwise error code
1832 */
1833static int hdlcdev_init(struct slgt_info *info)
1834{
1835 int rc;
1836 struct net_device *dev;
1837 hdlc_device *hdlc;
1838
1839 /* allocate and initialize network and HDLC layer objects */
1840
1841 if (!(dev = alloc_hdlcdev(info))) {
1842 printk(KERN_ERR "%s hdlc device alloc failure\n", info->device_name);
1843 return -ENOMEM;
1844 }
1845
1846 /* for network layer reporting purposes only */
1847 dev->mem_start = info->phys_reg_addr;
1848 dev->mem_end = info->phys_reg_addr + SLGT_REG_SIZE - 1;
1849 dev->irq = info->irq_level;
1850
1851 /* network layer callbacks and settings */
1852 dev->do_ioctl = hdlcdev_ioctl;
1853 dev->open = hdlcdev_open;
1854 dev->stop = hdlcdev_close;
1855 dev->tx_timeout = hdlcdev_tx_timeout;
1856 dev->watchdog_timeo = 10*HZ;
1857 dev->tx_queue_len = 50;
1858
1859 /* generic HDLC layer callbacks and settings */
1860 hdlc = dev_to_hdlc(dev);
1861 hdlc->attach = hdlcdev_attach;
1862 hdlc->xmit = hdlcdev_xmit;
1863
1864 /* register objects with HDLC layer */
1865 if ((rc = register_hdlc_device(dev))) {
1866 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
1867 free_netdev(dev);
1868 return rc;
1869 }
1870
1871 info->netdev = dev;
1872 return 0;
1873}
1874
1875/**
1876 * called by device driver when removing device instance
1877 * do generic HDLC cleanup
1878 *
1879 * info pointer to device instance information
1880 */
1881static void hdlcdev_exit(struct slgt_info *info)
1882{
1883 unregister_hdlc_device(info->netdev);
1884 free_netdev(info->netdev);
1885 info->netdev = NULL;
1886}
1887
1888#endif /* ifdef CONFIG_HDLC */
1889
1890/*
1891 * get async data from rx DMA buffers
1892 */
1893static void rx_async(struct slgt_info *info)
1894{
8fb06c77 1895 struct tty_struct *tty = info->port.tty;
705b6c7b
PF
1896 struct mgsl_icount *icount = &info->icount;
1897 unsigned int start, end;
1898 unsigned char *p;
1899 unsigned char status;
1900 struct slgt_desc *bufs = info->rbufs;
1901 int i, count;
33f0f88f
AC
1902 int chars = 0;
1903 int stat;
1904 unsigned char ch;
705b6c7b
PF
1905
1906 start = end = info->rbuf_current;
1907
1908 while(desc_complete(bufs[end])) {
1909 count = desc_count(bufs[end]) - info->rbuf_index;
1910 p = bufs[end].buf + info->rbuf_index;
1911
1912 DBGISR(("%s rx_async count=%d\n", info->device_name, count));
1913 DBGDATA(info, p, count, "rx");
1914
1915 for(i=0 ; i < count; i+=2, p+=2) {
33f0f88f 1916 ch = *p;
705b6c7b
PF
1917 icount->rx++;
1918
33f0f88f
AC
1919 stat = 0;
1920
202af6d5
PF
1921 if ((status = *(p+1) & (BIT1 + BIT0))) {
1922 if (status & BIT1)
705b6c7b 1923 icount->parity++;
202af6d5 1924 else if (status & BIT0)
705b6c7b
PF
1925 icount->frame++;
1926 /* discard char if tty control flags say so */
1927 if (status & info->ignore_status_mask)
1928 continue;
202af6d5 1929 if (status & BIT1)
33f0f88f 1930 stat = TTY_PARITY;
202af6d5 1931 else if (status & BIT0)
33f0f88f 1932 stat = TTY_FRAME;
705b6c7b
PF
1933 }
1934 if (tty) {
33f0f88f
AC
1935 tty_insert_flip_char(tty, ch, stat);
1936 chars++;
705b6c7b
PF
1937 }
1938 }
1939
1940 if (i < count) {
1941 /* receive buffer not completed */
1942 info->rbuf_index += i;
40565f19 1943 mod_timer(&info->rx_timer, jiffies + 1);
705b6c7b
PF
1944 break;
1945 }
1946
1947 info->rbuf_index = 0;
1948 free_rbufs(info, end, end);
1949
1950 if (++end == info->rbuf_count)
1951 end = 0;
1952
1953 /* if entire list searched then no frame available */
1954 if (end == start)
1955 break;
1956 }
1957
33f0f88f 1958 if (tty && chars)
705b6c7b
PF
1959 tty_flip_buffer_push(tty);
1960}
1961
1962/*
1963 * return next bottom half action to perform
1964 */
1965static int bh_action(struct slgt_info *info)
1966{
1967 unsigned long flags;
1968 int rc;
1969
1970 spin_lock_irqsave(&info->lock,flags);
1971
1972 if (info->pending_bh & BH_RECEIVE) {
1973 info->pending_bh &= ~BH_RECEIVE;
1974 rc = BH_RECEIVE;
1975 } else if (info->pending_bh & BH_TRANSMIT) {
1976 info->pending_bh &= ~BH_TRANSMIT;
1977 rc = BH_TRANSMIT;
1978 } else if (info->pending_bh & BH_STATUS) {
1979 info->pending_bh &= ~BH_STATUS;
1980 rc = BH_STATUS;
1981 } else {
1982 /* Mark BH routine as complete */
0fab6de0
JP
1983 info->bh_running = false;
1984 info->bh_requested = false;
705b6c7b
PF
1985 rc = 0;
1986 }
1987
1988 spin_unlock_irqrestore(&info->lock,flags);
1989
1990 return rc;
1991}
1992
1993/*
1994 * perform bottom half processing
1995 */
c4028958 1996static void bh_handler(struct work_struct *work)
705b6c7b 1997{
c4028958 1998 struct slgt_info *info = container_of(work, struct slgt_info, task);
705b6c7b
PF
1999 int action;
2000
2001 if (!info)
2002 return;
0fab6de0 2003 info->bh_running = true;
705b6c7b
PF
2004
2005 while((action = bh_action(info))) {
2006 switch (action) {
2007 case BH_RECEIVE:
2008 DBGBH(("%s bh receive\n", info->device_name));
2009 switch(info->params.mode) {
2010 case MGSL_MODE_ASYNC:
2011 rx_async(info);
2012 break;
2013 case MGSL_MODE_HDLC:
2014 while(rx_get_frame(info));
2015 break;
2016 case MGSL_MODE_RAW:
cb10dc9a
PF
2017 case MGSL_MODE_MONOSYNC:
2018 case MGSL_MODE_BISYNC:
705b6c7b
PF
2019 while(rx_get_buf(info));
2020 break;
2021 }
2022 /* restart receiver if rx DMA buffers exhausted */
2023 if (info->rx_restart)
2024 rx_start(info);
2025 break;
2026 case BH_TRANSMIT:
2027 bh_transmit(info);
2028 break;
2029 case BH_STATUS:
2030 DBGBH(("%s bh status\n", info->device_name));
2031 info->ri_chkcount = 0;
2032 info->dsr_chkcount = 0;
2033 info->dcd_chkcount = 0;
2034 info->cts_chkcount = 0;
2035 break;
2036 default:
2037 DBGBH(("%s unknown action\n", info->device_name));
2038 break;
2039 }
2040 }
2041 DBGBH(("%s bh_handler exit\n", info->device_name));
2042}
2043
2044static void bh_transmit(struct slgt_info *info)
2045{
8fb06c77 2046 struct tty_struct *tty = info->port.tty;
705b6c7b
PF
2047
2048 DBGBH(("%s bh_transmit\n", info->device_name));
b963a844 2049 if (tty)
705b6c7b 2050 tty_wakeup(tty);
705b6c7b
PF
2051}
2052
ed8485fb 2053static void dsr_change(struct slgt_info *info, unsigned short status)
705b6c7b 2054{
ed8485fb
PF
2055 if (status & BIT3) {
2056 info->signals |= SerialSignal_DSR;
2057 info->input_signal_events.dsr_up++;
2058 } else {
2059 info->signals &= ~SerialSignal_DSR;
2060 info->input_signal_events.dsr_down++;
2061 }
705b6c7b
PF
2062 DBGISR(("dsr_change %s signals=%04X\n", info->device_name, info->signals));
2063 if ((info->dsr_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2064 slgt_irq_off(info, IRQ_DSR);
2065 return;
2066 }
2067 info->icount.dsr++;
705b6c7b
PF
2068 wake_up_interruptible(&info->status_event_wait_q);
2069 wake_up_interruptible(&info->event_wait_q);
2070 info->pending_bh |= BH_STATUS;
2071}
2072
ed8485fb 2073static void cts_change(struct slgt_info *info, unsigned short status)
705b6c7b 2074{
ed8485fb
PF
2075 if (status & BIT2) {
2076 info->signals |= SerialSignal_CTS;
2077 info->input_signal_events.cts_up++;
2078 } else {
2079 info->signals &= ~SerialSignal_CTS;
2080 info->input_signal_events.cts_down++;
2081 }
705b6c7b
PF
2082 DBGISR(("cts_change %s signals=%04X\n", info->device_name, info->signals));
2083 if ((info->cts_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2084 slgt_irq_off(info, IRQ_CTS);
2085 return;
2086 }
2087 info->icount.cts++;
705b6c7b
PF
2088 wake_up_interruptible(&info->status_event_wait_q);
2089 wake_up_interruptible(&info->event_wait_q);
2090 info->pending_bh |= BH_STATUS;
2091
8fb06c77
AC
2092 if (info->port.flags & ASYNC_CTS_FLOW) {
2093 if (info->port.tty) {
2094 if (info->port.tty->hw_stopped) {
705b6c7b 2095 if (info->signals & SerialSignal_CTS) {
8fb06c77 2096 info->port.tty->hw_stopped = 0;
705b6c7b
PF
2097 info->pending_bh |= BH_TRANSMIT;
2098 return;
2099 }
2100 } else {
2101 if (!(info->signals & SerialSignal_CTS))
8fb06c77 2102 info->port.tty->hw_stopped = 1;
705b6c7b
PF
2103 }
2104 }
2105 }
2106}
2107
ed8485fb 2108static void dcd_change(struct slgt_info *info, unsigned short status)
705b6c7b 2109{
ed8485fb
PF
2110 if (status & BIT1) {
2111 info->signals |= SerialSignal_DCD;
2112 info->input_signal_events.dcd_up++;
2113 } else {
2114 info->signals &= ~SerialSignal_DCD;
2115 info->input_signal_events.dcd_down++;
2116 }
705b6c7b
PF
2117 DBGISR(("dcd_change %s signals=%04X\n", info->device_name, info->signals));
2118 if ((info->dcd_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2119 slgt_irq_off(info, IRQ_DCD);
2120 return;
2121 }
2122 info->icount.dcd++;
af69c7f9 2123#if SYNCLINK_GENERIC_HDLC
fbeff3c1
KH
2124 if (info->netcount) {
2125 if (info->signals & SerialSignal_DCD)
2126 netif_carrier_on(info->netdev);
2127 else
2128 netif_carrier_off(info->netdev);
2129 }
705b6c7b
PF
2130#endif
2131 wake_up_interruptible(&info->status_event_wait_q);
2132 wake_up_interruptible(&info->event_wait_q);
2133 info->pending_bh |= BH_STATUS;
2134
8fb06c77 2135 if (info->port.flags & ASYNC_CHECK_CD) {
705b6c7b 2136 if (info->signals & SerialSignal_DCD)
8fb06c77 2137 wake_up_interruptible(&info->port.open_wait);
705b6c7b 2138 else {
8fb06c77
AC
2139 if (info->port.tty)
2140 tty_hangup(info->port.tty);
705b6c7b
PF
2141 }
2142 }
2143}
2144
ed8485fb 2145static void ri_change(struct slgt_info *info, unsigned short status)
705b6c7b 2146{
ed8485fb
PF
2147 if (status & BIT0) {
2148 info->signals |= SerialSignal_RI;
2149 info->input_signal_events.ri_up++;
2150 } else {
2151 info->signals &= ~SerialSignal_RI;
2152 info->input_signal_events.ri_down++;
2153 }
705b6c7b
PF
2154 DBGISR(("ri_change %s signals=%04X\n", info->device_name, info->signals));
2155 if ((info->ri_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2156 slgt_irq_off(info, IRQ_RI);
2157 return;
2158 }
ed8485fb 2159 info->icount.rng++;
705b6c7b
PF
2160 wake_up_interruptible(&info->status_event_wait_q);
2161 wake_up_interruptible(&info->event_wait_q);
2162 info->pending_bh |= BH_STATUS;
2163}
2164
2165static void isr_serial(struct slgt_info *info)
2166{
2167 unsigned short status = rd_reg16(info, SSR);
2168
2169 DBGISR(("%s isr_serial status=%04X\n", info->device_name, status));
2170
2171 wr_reg16(info, SSR, status); /* clear pending */
2172
0fab6de0 2173 info->irq_occurred = true;
705b6c7b
PF
2174
2175 if (info->params.mode == MGSL_MODE_ASYNC) {
2176 if (status & IRQ_TXIDLE) {
2177 if (info->tx_count)
2178 isr_txeom(info, status);
2179 }
2180 if ((status & IRQ_RXBREAK) && (status & RXBREAK)) {
2181 info->icount.brk++;
2182 /* process break detection if tty control allows */
8fb06c77 2183 if (info->port.tty) {
705b6c7b
PF
2184 if (!(status & info->ignore_status_mask)) {
2185 if (info->read_status_mask & MASK_BREAK) {
8fb06c77
AC
2186 tty_insert_flip_char(info->port.tty, 0, TTY_BREAK);
2187 if (info->port.flags & ASYNC_SAK)
2188 do_SAK(info->port.tty);
705b6c7b
PF
2189 }
2190 }
2191 }
2192 }
2193 } else {
2194 if (status & (IRQ_TXIDLE + IRQ_TXUNDER))
2195 isr_txeom(info, status);
2196
2197 if (status & IRQ_RXIDLE) {
2198 if (status & RXIDLE)
2199 info->icount.rxidle++;
2200 else
2201 info->icount.exithunt++;
2202 wake_up_interruptible(&info->event_wait_q);
2203 }
2204
2205 if (status & IRQ_RXOVER)
2206 rx_start(info);
2207 }
2208
2209 if (status & IRQ_DSR)
ed8485fb 2210 dsr_change(info, status);
705b6c7b 2211 if (status & IRQ_CTS)
ed8485fb 2212 cts_change(info, status);
705b6c7b 2213 if (status & IRQ_DCD)
ed8485fb 2214 dcd_change(info, status);
705b6c7b 2215 if (status & IRQ_RI)
ed8485fb 2216 ri_change(info, status);
705b6c7b
PF
2217}
2218
2219static void isr_rdma(struct slgt_info *info)
2220{
2221 unsigned int status = rd_reg32(info, RDCSR);
2222
2223 DBGISR(("%s isr_rdma status=%08x\n", info->device_name, status));
2224
2225 /* RDCSR (rx DMA control/status)
2226 *
2227 * 31..07 reserved
2228 * 06 save status byte to DMA buffer
2229 * 05 error
2230 * 04 eol (end of list)
2231 * 03 eob (end of buffer)
2232 * 02 IRQ enable
2233 * 01 reset
2234 * 00 enable
2235 */
2236 wr_reg32(info, RDCSR, status); /* clear pending */
2237
2238 if (status & (BIT5 + BIT4)) {
2239 DBGISR(("%s isr_rdma rx_restart=1\n", info->device_name));
0fab6de0 2240 info->rx_restart = true;
705b6c7b
PF
2241 }
2242 info->pending_bh |= BH_RECEIVE;
2243}
2244
2245static void isr_tdma(struct slgt_info *info)
2246{
2247 unsigned int status = rd_reg32(info, TDCSR);
2248
2249 DBGISR(("%s isr_tdma status=%08x\n", info->device_name, status));
2250
2251 /* TDCSR (tx DMA control/status)
2252 *
2253 * 31..06 reserved
2254 * 05 error
2255 * 04 eol (end of list)
2256 * 03 eob (end of buffer)
2257 * 02 IRQ enable
2258 * 01 reset
2259 * 00 enable
2260 */
2261 wr_reg32(info, TDCSR, status); /* clear pending */
2262
2263 if (status & (BIT5 + BIT4 + BIT3)) {
2264 // another transmit buffer has completed
2265 // run bottom half to get more send data from user
2266 info->pending_bh |= BH_TRANSMIT;
2267 }
2268}
2269
2270static void isr_txeom(struct slgt_info *info, unsigned short status)
2271{
2272 DBGISR(("%s txeom status=%04x\n", info->device_name, status));
2273
2274 slgt_irq_off(info, IRQ_TXDATA + IRQ_TXIDLE + IRQ_TXUNDER);
2275 tdma_reset(info);
2276 reset_tbufs(info);
2277 if (status & IRQ_TXUNDER) {
2278 unsigned short val = rd_reg16(info, TCR);
2279 wr_reg16(info, TCR, (unsigned short)(val | BIT2)); /* set reset bit */
2280 wr_reg16(info, TCR, val); /* clear reset bit */
2281 }
2282
2283 if (info->tx_active) {
2284 if (info->params.mode != MGSL_MODE_ASYNC) {
2285 if (status & IRQ_TXUNDER)
2286 info->icount.txunder++;
2287 else if (status & IRQ_TXIDLE)
2288 info->icount.txok++;
2289 }
2290
0fab6de0 2291 info->tx_active = false;
705b6c7b
PF
2292 info->tx_count = 0;
2293
2294 del_timer(&info->tx_timer);
2295
2296 if (info->params.mode != MGSL_MODE_ASYNC && info->drop_rts_on_tx_done) {
2297 info->signals &= ~SerialSignal_RTS;
0fab6de0 2298 info->drop_rts_on_tx_done = false;
705b6c7b
PF
2299 set_signals(info);
2300 }
2301
af69c7f9 2302#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
2303 if (info->netcount)
2304 hdlcdev_tx_done(info);
2305 else
2306#endif
2307 {
8fb06c77 2308 if (info->port.tty && (info->port.tty->stopped || info->port.tty->hw_stopped)) {
705b6c7b
PF
2309 tx_stop(info);
2310 return;
2311 }
2312 info->pending_bh |= BH_TRANSMIT;
2313 }
2314 }
2315}
2316
0080b7aa
PF
2317static void isr_gpio(struct slgt_info *info, unsigned int changed, unsigned int state)
2318{
2319 struct cond_wait *w, *prev;
2320
2321 /* wake processes waiting for specific transitions */
2322 for (w = info->gpio_wait_q, prev = NULL ; w != NULL ; w = w->next) {
2323 if (w->data & changed) {
2324 w->data = state;
2325 wake_up_interruptible(&w->q);
2326 if (prev != NULL)
2327 prev->next = w->next;
2328 else
2329 info->gpio_wait_q = w->next;
2330 } else
2331 prev = w;
2332 }
2333}
2334
705b6c7b
PF
2335/* interrupt service routine
2336 *
2337 * irq interrupt number
2338 * dev_id device ID supplied during interrupt registration
705b6c7b 2339 */
a6f97b29 2340static irqreturn_t slgt_interrupt(int dummy, void *dev_id)
705b6c7b 2341{
a6f97b29 2342 struct slgt_info *info = dev_id;
705b6c7b
PF
2343 unsigned int gsr;
2344 unsigned int i;
2345
a6f97b29 2346 DBGISR(("slgt_interrupt irq=%d entry\n", info->irq_level));
705b6c7b
PF
2347
2348 spin_lock(&info->lock);
2349
2350 while((gsr = rd_reg32(info, GSR) & 0xffffff00)) {
2351 DBGISR(("%s gsr=%08x\n", info->device_name, gsr));
0fab6de0 2352 info->irq_occurred = true;
705b6c7b
PF
2353 for(i=0; i < info->port_count ; i++) {
2354 if (info->port_array[i] == NULL)
2355 continue;
2356 if (gsr & (BIT8 << i))
2357 isr_serial(info->port_array[i]);
2358 if (gsr & (BIT16 << (i*2)))
2359 isr_rdma(info->port_array[i]);
2360 if (gsr & (BIT17 << (i*2)))
2361 isr_tdma(info->port_array[i]);
2362 }
2363 }
2364
0080b7aa
PF
2365 if (info->gpio_present) {
2366 unsigned int state;
2367 unsigned int changed;
2368 while ((changed = rd_reg32(info, IOSR)) != 0) {
2369 DBGISR(("%s iosr=%08x\n", info->device_name, changed));
2370 /* read latched state of GPIO signals */
2371 state = rd_reg32(info, IOVR);
2372 /* clear pending GPIO interrupt bits */
2373 wr_reg32(info, IOSR, changed);
2374 for (i=0 ; i < info->port_count ; i++) {
2375 if (info->port_array[i] != NULL)
2376 isr_gpio(info->port_array[i], changed, state);
2377 }
2378 }
2379 }
2380
705b6c7b
PF
2381 for(i=0; i < info->port_count ; i++) {
2382 struct slgt_info *port = info->port_array[i];
2383
8fb06c77 2384 if (port && (port->port.count || port->netcount) &&
705b6c7b
PF
2385 port->pending_bh && !port->bh_running &&
2386 !port->bh_requested) {
2387 DBGISR(("%s bh queued\n", port->device_name));
2388 schedule_work(&port->task);
0fab6de0 2389 port->bh_requested = true;
705b6c7b
PF
2390 }
2391 }
2392
2393 spin_unlock(&info->lock);
2394
a6f97b29 2395 DBGISR(("slgt_interrupt irq=%d exit\n", info->irq_level));
705b6c7b
PF
2396 return IRQ_HANDLED;
2397}
2398
2399static int startup(struct slgt_info *info)
2400{
2401 DBGINFO(("%s startup\n", info->device_name));
2402
8fb06c77 2403 if (info->port.flags & ASYNC_INITIALIZED)
705b6c7b
PF
2404 return 0;
2405
2406 if (!info->tx_buf) {
2407 info->tx_buf = kmalloc(info->max_frame_size, GFP_KERNEL);
2408 if (!info->tx_buf) {
2409 DBGERR(("%s can't allocate tx buffer\n", info->device_name));
2410 return -ENOMEM;
2411 }
2412 }
2413
2414 info->pending_bh = 0;
2415
2416 memset(&info->icount, 0, sizeof(info->icount));
2417
2418 /* program hardware for current parameters */
2419 change_params(info);
2420
8fb06c77
AC
2421 if (info->port.tty)
2422 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
705b6c7b 2423
8fb06c77 2424 info->port.flags |= ASYNC_INITIALIZED;
705b6c7b
PF
2425
2426 return 0;
2427}
2428
2429/*
2430 * called by close() and hangup() to shutdown hardware
2431 */
2432static void shutdown(struct slgt_info *info)
2433{
2434 unsigned long flags;
2435
8fb06c77 2436 if (!(info->port.flags & ASYNC_INITIALIZED))
705b6c7b
PF
2437 return;
2438
2439 DBGINFO(("%s shutdown\n", info->device_name));
2440
2441 /* clear status wait queue because status changes */
2442 /* can't happen after shutting down the hardware */
2443 wake_up_interruptible(&info->status_event_wait_q);
2444 wake_up_interruptible(&info->event_wait_q);
2445
2446 del_timer_sync(&info->tx_timer);
2447 del_timer_sync(&info->rx_timer);
2448
2449 kfree(info->tx_buf);
2450 info->tx_buf = NULL;
2451
2452 spin_lock_irqsave(&info->lock,flags);
2453
2454 tx_stop(info);
2455 rx_stop(info);
2456
2457 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
2458
8fb06c77 2459 if (!info->port.tty || info->port.tty->termios->c_cflag & HUPCL) {
705b6c7b
PF
2460 info->signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
2461 set_signals(info);
2462 }
2463
0080b7aa
PF
2464 flush_cond_wait(&info->gpio_wait_q);
2465
705b6c7b
PF
2466 spin_unlock_irqrestore(&info->lock,flags);
2467
8fb06c77
AC
2468 if (info->port.tty)
2469 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
705b6c7b 2470
8fb06c77 2471 info->port.flags &= ~ASYNC_INITIALIZED;
705b6c7b
PF
2472}
2473
2474static void program_hw(struct slgt_info *info)
2475{
2476 unsigned long flags;
2477
2478 spin_lock_irqsave(&info->lock,flags);
2479
2480 rx_stop(info);
2481 tx_stop(info);
2482
cb10dc9a 2483 if (info->params.mode != MGSL_MODE_ASYNC ||
705b6c7b 2484 info->netcount)
cb10dc9a 2485 sync_mode(info);
705b6c7b
PF
2486 else
2487 async_mode(info);
2488
2489 set_signals(info);
2490
2491 info->dcd_chkcount = 0;
2492 info->cts_chkcount = 0;
2493 info->ri_chkcount = 0;
2494 info->dsr_chkcount = 0;
2495
2496 slgt_irq_on(info, IRQ_DCD | IRQ_CTS | IRQ_DSR);
2497 get_signals(info);
2498
2499 if (info->netcount ||
8fb06c77 2500 (info->port.tty && info->port.tty->termios->c_cflag & CREAD))
705b6c7b
PF
2501 rx_start(info);
2502
2503 spin_unlock_irqrestore(&info->lock,flags);
2504}
2505
2506/*
2507 * reconfigure adapter based on new parameters
2508 */
2509static void change_params(struct slgt_info *info)
2510{
2511 unsigned cflag;
2512 int bits_per_char;
2513
8fb06c77 2514 if (!info->port.tty || !info->port.tty->termios)
705b6c7b
PF
2515 return;
2516 DBGINFO(("%s change_params\n", info->device_name));
2517
8fb06c77 2518 cflag = info->port.tty->termios->c_cflag;
705b6c7b
PF
2519
2520 /* if B0 rate (hangup) specified then negate DTR and RTS */
2521 /* otherwise assert DTR and RTS */
2522 if (cflag & CBAUD)
2523 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
2524 else
2525 info->signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2526
2527 /* byte size and parity */
2528
2529 switch (cflag & CSIZE) {
2530 case CS5: info->params.data_bits = 5; break;
2531 case CS6: info->params.data_bits = 6; break;
2532 case CS7: info->params.data_bits = 7; break;
2533 case CS8: info->params.data_bits = 8; break;
2534 default: info->params.data_bits = 7; break;
2535 }
2536
2537 info->params.stop_bits = (cflag & CSTOPB) ? 2 : 1;
2538
2539 if (cflag & PARENB)
2540 info->params.parity = (cflag & PARODD) ? ASYNC_PARITY_ODD : ASYNC_PARITY_EVEN;
2541 else
2542 info->params.parity = ASYNC_PARITY_NONE;
2543
2544 /* calculate number of jiffies to transmit a full
2545 * FIFO (32 bytes) at specified data rate
2546 */
2547 bits_per_char = info->params.data_bits +
2548 info->params.stop_bits + 1;
2549
8fb06c77 2550 info->params.data_rate = tty_get_baud_rate(info->port.tty);
705b6c7b
PF
2551
2552 if (info->params.data_rate) {
2553 info->timeout = (32*HZ*bits_per_char) /
2554 info->params.data_rate;
2555 }
2556 info->timeout += HZ/50; /* Add .02 seconds of slop */
2557
2558 if (cflag & CRTSCTS)
8fb06c77 2559 info->port.flags |= ASYNC_CTS_FLOW;
705b6c7b 2560 else
8fb06c77 2561 info->port.flags &= ~ASYNC_CTS_FLOW;
705b6c7b
PF
2562
2563 if (cflag & CLOCAL)
8fb06c77 2564 info->port.flags &= ~ASYNC_CHECK_CD;
705b6c7b 2565 else
8fb06c77 2566 info->port.flags |= ASYNC_CHECK_CD;
705b6c7b
PF
2567
2568 /* process tty input control flags */
2569
2570 info->read_status_mask = IRQ_RXOVER;
8fb06c77 2571 if (I_INPCK(info->port.tty))
705b6c7b 2572 info->read_status_mask |= MASK_PARITY | MASK_FRAMING;
8fb06c77 2573 if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
705b6c7b 2574 info->read_status_mask |= MASK_BREAK;
8fb06c77 2575 if (I_IGNPAR(info->port.tty))
705b6c7b 2576 info->ignore_status_mask |= MASK_PARITY | MASK_FRAMING;
8fb06c77 2577 if (I_IGNBRK(info->port.tty)) {
705b6c7b
PF
2578 info->ignore_status_mask |= MASK_BREAK;
2579 /* If ignoring parity and break indicators, ignore
2580 * overruns too. (For real raw support).
2581 */
8fb06c77 2582 if (I_IGNPAR(info->port.tty))
705b6c7b
PF
2583 info->ignore_status_mask |= MASK_OVERRUN;
2584 }
2585
2586 program_hw(info);
2587}
2588
2589static int get_stats(struct slgt_info *info, struct mgsl_icount __user *user_icount)
2590{
2591 DBGINFO(("%s get_stats\n", info->device_name));
2592 if (!user_icount) {
2593 memset(&info->icount, 0, sizeof(info->icount));
2594 } else {
2595 if (copy_to_user(user_icount, &info->icount, sizeof(struct mgsl_icount)))
2596 return -EFAULT;
2597 }
2598 return 0;
2599}
2600
2601static int get_params(struct slgt_info *info, MGSL_PARAMS __user *user_params)
2602{
2603 DBGINFO(("%s get_params\n", info->device_name));
2604 if (copy_to_user(user_params, &info->params, sizeof(MGSL_PARAMS)))
2605 return -EFAULT;
2606 return 0;
2607}
2608
2609static int set_params(struct slgt_info *info, MGSL_PARAMS __user *new_params)
2610{
2611 unsigned long flags;
2612 MGSL_PARAMS tmp_params;
2613
2614 DBGINFO(("%s set_params\n", info->device_name));
2615 if (copy_from_user(&tmp_params, new_params, sizeof(MGSL_PARAMS)))
2616 return -EFAULT;
2617
2618 spin_lock_irqsave(&info->lock, flags);
2619 memcpy(&info->params, &tmp_params, sizeof(MGSL_PARAMS));
2620 spin_unlock_irqrestore(&info->lock, flags);
2621
2622 change_params(info);
2623
2624 return 0;
2625}
2626
2627static int get_txidle(struct slgt_info *info, int __user *idle_mode)
2628{
2629 DBGINFO(("%s get_txidle=%d\n", info->device_name, info->idle_mode));
2630 if (put_user(info->idle_mode, idle_mode))
2631 return -EFAULT;
2632 return 0;
2633}
2634
2635static int set_txidle(struct slgt_info *info, int idle_mode)
2636{
2637 unsigned long flags;
2638 DBGINFO(("%s set_txidle(%d)\n", info->device_name, idle_mode));
2639 spin_lock_irqsave(&info->lock,flags);
2640 info->idle_mode = idle_mode;
643f3319
PF
2641 if (info->params.mode != MGSL_MODE_ASYNC)
2642 tx_set_idle(info);
705b6c7b
PF
2643 spin_unlock_irqrestore(&info->lock,flags);
2644 return 0;
2645}
2646
2647static int tx_enable(struct slgt_info *info, int enable)
2648{
2649 unsigned long flags;
2650 DBGINFO(("%s tx_enable(%d)\n", info->device_name, enable));
2651 spin_lock_irqsave(&info->lock,flags);
2652 if (enable) {
2653 if (!info->tx_enabled)
2654 tx_start(info);
2655 } else {
2656 if (info->tx_enabled)
2657 tx_stop(info);
2658 }
2659 spin_unlock_irqrestore(&info->lock,flags);
2660 return 0;
2661}
2662
2663/*
2664 * abort transmit HDLC frame
2665 */
2666static int tx_abort(struct slgt_info *info)
2667{
2668 unsigned long flags;
2669 DBGINFO(("%s tx_abort\n", info->device_name));
2670 spin_lock_irqsave(&info->lock,flags);
2671 tdma_reset(info);
2672 spin_unlock_irqrestore(&info->lock,flags);
2673 return 0;
2674}
2675
2676static int rx_enable(struct slgt_info *info, int enable)
2677{
2678 unsigned long flags;
2679 DBGINFO(("%s rx_enable(%d)\n", info->device_name, enable));
2680 spin_lock_irqsave(&info->lock,flags);
2681 if (enable) {
2682 if (!info->rx_enabled)
2683 rx_start(info);
cb10dc9a
PF
2684 else if (enable == 2) {
2685 /* force hunt mode (write 1 to RCR[3]) */
2686 wr_reg16(info, RCR, rd_reg16(info, RCR) | BIT3);
2687 }
705b6c7b
PF
2688 } else {
2689 if (info->rx_enabled)
2690 rx_stop(info);
2691 }
2692 spin_unlock_irqrestore(&info->lock,flags);
2693 return 0;
2694}
2695
2696/*
2697 * wait for specified event to occur
2698 */
2699static int wait_mgsl_event(struct slgt_info *info, int __user *mask_ptr)
2700{
2701 unsigned long flags;
2702 int s;
2703 int rc=0;
2704 struct mgsl_icount cprev, cnow;
2705 int events;
2706 int mask;
2707 struct _input_signal_events oldsigs, newsigs;
2708 DECLARE_WAITQUEUE(wait, current);
2709
2710 if (get_user(mask, mask_ptr))
2711 return -EFAULT;
2712
2713 DBGINFO(("%s wait_mgsl_event(%d)\n", info->device_name, mask));
2714
2715 spin_lock_irqsave(&info->lock,flags);
2716
2717 /* return immediately if state matches requested events */
2718 get_signals(info);
2719 s = info->signals;
2720
2721 events = mask &
2722 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
2723 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
2724 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
2725 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
2726 if (events) {
2727 spin_unlock_irqrestore(&info->lock,flags);
2728 goto exit;
2729 }
2730
2731 /* save current irq counts */
2732 cprev = info->icount;
2733 oldsigs = info->input_signal_events;
2734
2735 /* enable hunt and idle irqs if needed */
2736 if (mask & (MgslEvent_ExitHuntMode+MgslEvent_IdleReceived)) {
2737 unsigned short val = rd_reg16(info, SCR);
2738 if (!(val & IRQ_RXIDLE))
2739 wr_reg16(info, SCR, (unsigned short)(val | IRQ_RXIDLE));
2740 }
2741
2742 set_current_state(TASK_INTERRUPTIBLE);
2743 add_wait_queue(&info->event_wait_q, &wait);
2744
2745 spin_unlock_irqrestore(&info->lock,flags);
2746
2747 for(;;) {
2748 schedule();
2749 if (signal_pending(current)) {
2750 rc = -ERESTARTSYS;
2751 break;
2752 }
2753
2754 /* get current irq counts */
2755 spin_lock_irqsave(&info->lock,flags);
2756 cnow = info->icount;
2757 newsigs = info->input_signal_events;
2758 set_current_state(TASK_INTERRUPTIBLE);
2759 spin_unlock_irqrestore(&info->lock,flags);
2760
2761 /* if no change, wait aborted for some reason */
2762 if (newsigs.dsr_up == oldsigs.dsr_up &&
2763 newsigs.dsr_down == oldsigs.dsr_down &&
2764 newsigs.dcd_up == oldsigs.dcd_up &&
2765 newsigs.dcd_down == oldsigs.dcd_down &&
2766 newsigs.cts_up == oldsigs.cts_up &&
2767 newsigs.cts_down == oldsigs.cts_down &&
2768 newsigs.ri_up == oldsigs.ri_up &&
2769 newsigs.ri_down == oldsigs.ri_down &&
2770 cnow.exithunt == cprev.exithunt &&
2771 cnow.rxidle == cprev.rxidle) {
2772 rc = -EIO;
2773 break;
2774 }
2775
2776 events = mask &
2777 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2778 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2779 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2780 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2781 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2782 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2783 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2784 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2785 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2786 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2787 if (events)
2788 break;
2789
2790 cprev = cnow;
2791 oldsigs = newsigs;
2792 }
2793
2794 remove_wait_queue(&info->event_wait_q, &wait);
2795 set_current_state(TASK_RUNNING);
2796
2797
2798 if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
2799 spin_lock_irqsave(&info->lock,flags);
2800 if (!waitqueue_active(&info->event_wait_q)) {
2801 /* disable enable exit hunt mode/idle rcvd IRQs */
2802 wr_reg16(info, SCR,
2803 (unsigned short)(rd_reg16(info, SCR) & ~IRQ_RXIDLE));
2804 }
2805 spin_unlock_irqrestore(&info->lock,flags);
2806 }
2807exit:
2808 if (rc == 0)
2809 rc = put_user(events, mask_ptr);
2810 return rc;
2811}
2812
2813static int get_interface(struct slgt_info *info, int __user *if_mode)
2814{
2815 DBGINFO(("%s get_interface=%x\n", info->device_name, info->if_mode));
2816 if (put_user(info->if_mode, if_mode))
2817 return -EFAULT;
2818 return 0;
2819}
2820
2821static int set_interface(struct slgt_info *info, int if_mode)
2822{
2823 unsigned long flags;
35fbd397 2824 unsigned short val;
705b6c7b
PF
2825
2826 DBGINFO(("%s set_interface=%x)\n", info->device_name, if_mode));
2827 spin_lock_irqsave(&info->lock,flags);
2828 info->if_mode = if_mode;
2829
2830 msc_set_vcr(info);
2831
2832 /* TCR (tx control) 07 1=RTS driver control */
2833 val = rd_reg16(info, TCR);
2834 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
2835 val |= BIT7;
2836 else
2837 val &= ~BIT7;
2838 wr_reg16(info, TCR, val);
2839
2840 spin_unlock_irqrestore(&info->lock,flags);
2841 return 0;
2842}
2843
0080b7aa
PF
2844/*
2845 * set general purpose IO pin state and direction
2846 *
2847 * user_gpio fields:
2848 * state each bit indicates a pin state
2849 * smask set bit indicates pin state to set
2850 * dir each bit indicates a pin direction (0=input, 1=output)
2851 * dmask set bit indicates pin direction to set
2852 */
2853static int set_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
2854{
2855 unsigned long flags;
2856 struct gpio_desc gpio;
2857 __u32 data;
2858
2859 if (!info->gpio_present)
2860 return -EINVAL;
2861 if (copy_from_user(&gpio, user_gpio, sizeof(gpio)))
2862 return -EFAULT;
2863 DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n",
2864 info->device_name, gpio.state, gpio.smask,
2865 gpio.dir, gpio.dmask));
2866
2867 spin_lock_irqsave(&info->lock,flags);
2868 if (gpio.dmask) {
2869 data = rd_reg32(info, IODR);
2870 data |= gpio.dmask & gpio.dir;
2871 data &= ~(gpio.dmask & ~gpio.dir);
2872 wr_reg32(info, IODR, data);
2873 }
2874 if (gpio.smask) {
2875 data = rd_reg32(info, IOVR);
2876 data |= gpio.smask & gpio.state;
2877 data &= ~(gpio.smask & ~gpio.state);
2878 wr_reg32(info, IOVR, data);
2879 }
2880 spin_unlock_irqrestore(&info->lock,flags);
2881
2882 return 0;
2883}
2884
2885/*
2886 * get general purpose IO pin state and direction
2887 */
2888static int get_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
2889{
2890 struct gpio_desc gpio;
2891 if (!info->gpio_present)
2892 return -EINVAL;
2893 gpio.state = rd_reg32(info, IOVR);
2894 gpio.smask = 0xffffffff;
2895 gpio.dir = rd_reg32(info, IODR);
2896 gpio.dmask = 0xffffffff;
2897 if (copy_to_user(user_gpio, &gpio, sizeof(gpio)))
2898 return -EFAULT;
2899 DBGINFO(("%s get_gpio state=%08x dir=%08x\n",
2900 info->device_name, gpio.state, gpio.dir));
2901 return 0;
2902}
2903
2904/*
2905 * conditional wait facility
2906 */
2907static void init_cond_wait(struct cond_wait *w, unsigned int data)
2908{
2909 init_waitqueue_head(&w->q);
2910 init_waitqueue_entry(&w->wait, current);
2911 w->data = data;
2912}
2913
2914static void add_cond_wait(struct cond_wait **head, struct cond_wait *w)
2915{
2916 set_current_state(TASK_INTERRUPTIBLE);
2917 add_wait_queue(&w->q, &w->wait);
2918 w->next = *head;
2919 *head = w;
2920}
2921
2922static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw)
2923{
2924 struct cond_wait *w, *prev;
2925 remove_wait_queue(&cw->q, &cw->wait);
2926 set_current_state(TASK_RUNNING);
2927 for (w = *head, prev = NULL ; w != NULL ; prev = w, w = w->next) {
2928 if (w == cw) {
2929 if (prev != NULL)
2930 prev->next = w->next;
2931 else
2932 *head = w->next;
2933 break;
2934 }
2935 }
2936}
2937
2938static void flush_cond_wait(struct cond_wait **head)
2939{
2940 while (*head != NULL) {
2941 wake_up_interruptible(&(*head)->q);
2942 *head = (*head)->next;
2943 }
2944}
2945
2946/*
2947 * wait for general purpose I/O pin(s) to enter specified state
2948 *
2949 * user_gpio fields:
2950 * state - bit indicates target pin state
2951 * smask - set bit indicates watched pin
2952 *
2953 * The wait ends when at least one watched pin enters the specified
2954 * state. When 0 (no error) is returned, user_gpio->state is set to the
2955 * state of all GPIO pins when the wait ends.
2956 *
2957 * Note: Each pin may be a dedicated input, dedicated output, or
2958 * configurable input/output. The number and configuration of pins
2959 * varies with the specific adapter model. Only input pins (dedicated
2960 * or configured) can be monitored with this function.
2961 */
2962static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
2963{
2964 unsigned long flags;
2965 int rc = 0;
2966 struct gpio_desc gpio;
2967 struct cond_wait wait;
2968 u32 state;
2969
2970 if (!info->gpio_present)
2971 return -EINVAL;
2972 if (copy_from_user(&gpio, user_gpio, sizeof(gpio)))
2973 return -EFAULT;
2974 DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n",
2975 info->device_name, gpio.state, gpio.smask));
2976 /* ignore output pins identified by set IODR bit */
2977 if ((gpio.smask &= ~rd_reg32(info, IODR)) == 0)
2978 return -EINVAL;
2979 init_cond_wait(&wait, gpio.smask);
2980
2981 spin_lock_irqsave(&info->lock, flags);
2982 /* enable interrupts for watched pins */
2983 wr_reg32(info, IOER, rd_reg32(info, IOER) | gpio.smask);
2984 /* get current pin states */
2985 state = rd_reg32(info, IOVR);
2986
2987 if (gpio.smask & ~(state ^ gpio.state)) {
2988 /* already in target state */
2989 gpio.state = state;
2990 } else {
2991 /* wait for target state */
2992 add_cond_wait(&info->gpio_wait_q, &wait);
2993 spin_unlock_irqrestore(&info->lock, flags);
2994 schedule();
2995 if (signal_pending(current))
2996 rc = -ERESTARTSYS;
2997 else
2998 gpio.state = wait.data;
2999 spin_lock_irqsave(&info->lock, flags);
3000 remove_cond_wait(&info->gpio_wait_q, &wait);
3001 }
3002
3003 /* disable all GPIO interrupts if no waiting processes */
3004 if (info->gpio_wait_q == NULL)
3005 wr_reg32(info, IOER, 0);
3006 spin_unlock_irqrestore(&info->lock,flags);
3007
3008 if ((rc == 0) && copy_to_user(user_gpio, &gpio, sizeof(gpio)))
3009 rc = -EFAULT;
3010 return rc;
3011}
3012
705b6c7b
PF
3013static int modem_input_wait(struct slgt_info *info,int arg)
3014{
3015 unsigned long flags;
3016 int rc;
3017 struct mgsl_icount cprev, cnow;
3018 DECLARE_WAITQUEUE(wait, current);
3019
3020 /* save current irq counts */
3021 spin_lock_irqsave(&info->lock,flags);
3022 cprev = info->icount;
3023 add_wait_queue(&info->status_event_wait_q, &wait);
3024 set_current_state(TASK_INTERRUPTIBLE);
3025 spin_unlock_irqrestore(&info->lock,flags);
3026
3027 for(;;) {
3028 schedule();
3029 if (signal_pending(current)) {
3030 rc = -ERESTARTSYS;
3031 break;
3032 }
3033
3034 /* get new irq counts */
3035 spin_lock_irqsave(&info->lock,flags);
3036 cnow = info->icount;
3037 set_current_state(TASK_INTERRUPTIBLE);
3038 spin_unlock_irqrestore(&info->lock,flags);
3039
3040 /* if no change, wait aborted for some reason */
3041 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
3042 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
3043 rc = -EIO;
3044 break;
3045 }
3046
3047 /* check for change in caller specified modem input */
3048 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
3049 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
3050 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
3051 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
3052 rc = 0;
3053 break;
3054 }
3055
3056 cprev = cnow;
3057 }
3058 remove_wait_queue(&info->status_event_wait_q, &wait);
3059 set_current_state(TASK_RUNNING);
3060 return rc;
3061}
3062
3063/*
3064 * return state of serial control and status signals
3065 */
3066static int tiocmget(struct tty_struct *tty, struct file *file)
3067{
3068 struct slgt_info *info = tty->driver_data;
3069 unsigned int result;
3070 unsigned long flags;
3071
3072 spin_lock_irqsave(&info->lock,flags);
3073 get_signals(info);
3074 spin_unlock_irqrestore(&info->lock,flags);
3075
3076 result = ((info->signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
3077 ((info->signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
3078 ((info->signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
3079 ((info->signals & SerialSignal_RI) ? TIOCM_RNG:0) +
3080 ((info->signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
3081 ((info->signals & SerialSignal_CTS) ? TIOCM_CTS:0);
3082
3083 DBGINFO(("%s tiocmget value=%08X\n", info->device_name, result));
3084 return result;
3085}
3086
3087/*
3088 * set modem control signals (DTR/RTS)
3089 *
3090 * cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
3091 * TIOCMSET = set/clear signal values
3092 * value bit mask for command
3093 */
3094static int tiocmset(struct tty_struct *tty, struct file *file,
3095 unsigned int set, unsigned int clear)
3096{
3097 struct slgt_info *info = tty->driver_data;
3098 unsigned long flags;
3099
3100 DBGINFO(("%s tiocmset(%x,%x)\n", info->device_name, set, clear));
3101
3102 if (set & TIOCM_RTS)
3103 info->signals |= SerialSignal_RTS;
3104 if (set & TIOCM_DTR)
3105 info->signals |= SerialSignal_DTR;
3106 if (clear & TIOCM_RTS)
3107 info->signals &= ~SerialSignal_RTS;
3108 if (clear & TIOCM_DTR)
3109 info->signals &= ~SerialSignal_DTR;
3110
3111 spin_lock_irqsave(&info->lock,flags);
3112 set_signals(info);
3113 spin_unlock_irqrestore(&info->lock,flags);
3114 return 0;
3115}
3116
3117/*
3118 * block current process until the device is ready to open
3119 */
3120static int block_til_ready(struct tty_struct *tty, struct file *filp,
3121 struct slgt_info *info)
3122{
3123 DECLARE_WAITQUEUE(wait, current);
3124 int retval;
0fab6de0
JP
3125 bool do_clocal = false;
3126 bool extra_count = false;
705b6c7b
PF
3127 unsigned long flags;
3128
3129 DBGINFO(("%s block_til_ready\n", tty->driver->name));
3130
3131 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
3132 /* nonblock mode is set or port is not enabled */
8fb06c77 3133 info->port.flags |= ASYNC_NORMAL_ACTIVE;
705b6c7b
PF
3134 return 0;
3135 }
3136
3137 if (tty->termios->c_cflag & CLOCAL)
0fab6de0 3138 do_clocal = true;
705b6c7b
PF
3139
3140 /* Wait for carrier detect and the line to become
3141 * free (i.e., not in use by the callout). While we are in
8fb06c77 3142 * this loop, info->port.count is dropped by one, so that
705b6c7b
PF
3143 * close() knows when to free things. We restore it upon
3144 * exit, either normal or abnormal.
3145 */
3146
3147 retval = 0;
8fb06c77 3148 add_wait_queue(&info->port.open_wait, &wait);
705b6c7b
PF
3149
3150 spin_lock_irqsave(&info->lock, flags);
3151 if (!tty_hung_up_p(filp)) {
0fab6de0 3152 extra_count = true;
8fb06c77 3153 info->port.count--;
705b6c7b
PF
3154 }
3155 spin_unlock_irqrestore(&info->lock, flags);
8fb06c77 3156 info->port.blocked_open++;
705b6c7b
PF
3157
3158 while (1) {
3159 if ((tty->termios->c_cflag & CBAUD)) {
3160 spin_lock_irqsave(&info->lock,flags);
3161 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
3162 set_signals(info);
3163 spin_unlock_irqrestore(&info->lock,flags);
3164 }
3165
3166 set_current_state(TASK_INTERRUPTIBLE);
3167
8fb06c77
AC
3168 if (tty_hung_up_p(filp) || !(info->port.flags & ASYNC_INITIALIZED)){
3169 retval = (info->port.flags & ASYNC_HUP_NOTIFY) ?
705b6c7b
PF
3170 -EAGAIN : -ERESTARTSYS;
3171 break;
3172 }
3173
3174 spin_lock_irqsave(&info->lock,flags);
3175 get_signals(info);
3176 spin_unlock_irqrestore(&info->lock,flags);
3177
8fb06c77 3178 if (!(info->port.flags & ASYNC_CLOSING) &&
705b6c7b
PF
3179 (do_clocal || (info->signals & SerialSignal_DCD)) ) {
3180 break;
3181 }
3182
3183 if (signal_pending(current)) {
3184 retval = -ERESTARTSYS;
3185 break;
3186 }
3187
3188 DBGINFO(("%s block_til_ready wait\n", tty->driver->name));
3189 schedule();
3190 }
3191
3192 set_current_state(TASK_RUNNING);
8fb06c77 3193 remove_wait_queue(&info->port.open_wait, &wait);
705b6c7b
PF
3194
3195 if (extra_count)
8fb06c77
AC
3196 info->port.count++;
3197 info->port.blocked_open--;
705b6c7b
PF
3198
3199 if (!retval)
8fb06c77 3200 info->port.flags |= ASYNC_NORMAL_ACTIVE;
705b6c7b
PF
3201
3202 DBGINFO(("%s block_til_ready ready, rc=%d\n", tty->driver->name, retval));
3203 return retval;
3204}
3205
3206static int alloc_tmp_rbuf(struct slgt_info *info)
3207{
04b374d0 3208 info->tmp_rbuf = kmalloc(info->max_frame_size + 5, GFP_KERNEL);
705b6c7b
PF
3209 if (info->tmp_rbuf == NULL)
3210 return -ENOMEM;
3211 return 0;
3212}
3213
3214static void free_tmp_rbuf(struct slgt_info *info)
3215{
3216 kfree(info->tmp_rbuf);
3217 info->tmp_rbuf = NULL;
3218}
3219
3220/*
3221 * allocate DMA descriptor lists.
3222 */
3223static int alloc_desc(struct slgt_info *info)
3224{
3225 unsigned int i;
3226 unsigned int pbufs;
3227
3228 /* allocate memory to hold descriptor lists */
3229 info->bufs = pci_alloc_consistent(info->pdev, DESC_LIST_SIZE, &info->bufs_dma_addr);
3230 if (info->bufs == NULL)
3231 return -ENOMEM;
3232
3233 memset(info->bufs, 0, DESC_LIST_SIZE);
3234
3235 info->rbufs = (struct slgt_desc*)info->bufs;
3236 info->tbufs = ((struct slgt_desc*)info->bufs) + info->rbuf_count;
3237
3238 pbufs = (unsigned int)info->bufs_dma_addr;
3239
3240 /*
3241 * Build circular lists of descriptors
3242 */
3243
3244 for (i=0; i < info->rbuf_count; i++) {
3245 /* physical address of this descriptor */
3246 info->rbufs[i].pdesc = pbufs + (i * sizeof(struct slgt_desc));
3247
3248 /* physical address of next descriptor */
3249 if (i == info->rbuf_count - 1)
3250 info->rbufs[i].next = cpu_to_le32(pbufs);
3251 else
3252 info->rbufs[i].next = cpu_to_le32(pbufs + ((i+1) * sizeof(struct slgt_desc)));
3253 set_desc_count(info->rbufs[i], DMABUFSIZE);
3254 }
3255
3256 for (i=0; i < info->tbuf_count; i++) {
3257 /* physical address of this descriptor */
3258 info->tbufs[i].pdesc = pbufs + ((info->rbuf_count + i) * sizeof(struct slgt_desc));
3259
3260 /* physical address of next descriptor */
3261 if (i == info->tbuf_count - 1)
3262 info->tbufs[i].next = cpu_to_le32(pbufs + info->rbuf_count * sizeof(struct slgt_desc));
3263 else
3264 info->tbufs[i].next = cpu_to_le32(pbufs + ((info->rbuf_count + i + 1) * sizeof(struct slgt_desc)));
3265 }
3266
3267 return 0;
3268}
3269
3270static void free_desc(struct slgt_info *info)
3271{
3272 if (info->bufs != NULL) {
3273 pci_free_consistent(info->pdev, DESC_LIST_SIZE, info->bufs, info->bufs_dma_addr);
3274 info->bufs = NULL;
3275 info->rbufs = NULL;
3276 info->tbufs = NULL;
3277 }
3278}
3279
3280static int alloc_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count)
3281{
3282 int i;
3283 for (i=0; i < count; i++) {
3284 if ((bufs[i].buf = pci_alloc_consistent(info->pdev, DMABUFSIZE, &bufs[i].buf_dma_addr)) == NULL)
3285 return -ENOMEM;
3286 bufs[i].pbuf = cpu_to_le32((unsigned int)bufs[i].buf_dma_addr);
3287 }
3288 return 0;
3289}
3290
3291static void free_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count)
3292{
3293 int i;
3294 for (i=0; i < count; i++) {
3295 if (bufs[i].buf == NULL)
3296 continue;
3297 pci_free_consistent(info->pdev, DMABUFSIZE, bufs[i].buf, bufs[i].buf_dma_addr);
3298 bufs[i].buf = NULL;
3299 }
3300}
3301
3302static int alloc_dma_bufs(struct slgt_info *info)
3303{
3304 info->rbuf_count = 32;
3305 info->tbuf_count = 32;
3306
3307 if (alloc_desc(info) < 0 ||
3308 alloc_bufs(info, info->rbufs, info->rbuf_count) < 0 ||
3309 alloc_bufs(info, info->tbufs, info->tbuf_count) < 0 ||
3310 alloc_tmp_rbuf(info) < 0) {
3311 DBGERR(("%s DMA buffer alloc fail\n", info->device_name));
3312 return -ENOMEM;
3313 }
3314 reset_rbufs(info);
3315 return 0;
3316}
3317
3318static void free_dma_bufs(struct slgt_info *info)
3319{
3320 if (info->bufs) {
3321 free_bufs(info, info->rbufs, info->rbuf_count);
3322 free_bufs(info, info->tbufs, info->tbuf_count);
3323 free_desc(info);
3324 }
3325 free_tmp_rbuf(info);
3326}
3327
3328static int claim_resources(struct slgt_info *info)
3329{
3330 if (request_mem_region(info->phys_reg_addr, SLGT_REG_SIZE, "synclink_gt") == NULL) {
3331 DBGERR(("%s reg addr conflict, addr=%08X\n",
3332 info->device_name, info->phys_reg_addr));
3333 info->init_error = DiagStatus_AddressConflict;
3334 goto errout;
3335 }
3336 else
0fab6de0 3337 info->reg_addr_requested = true;
705b6c7b 3338
24cb2335 3339 info->reg_addr = ioremap_nocache(info->phys_reg_addr, SLGT_REG_SIZE);
705b6c7b
PF
3340 if (!info->reg_addr) {
3341 DBGERR(("%s cant map device registers, addr=%08X\n",
3342 info->device_name, info->phys_reg_addr));
3343 info->init_error = DiagStatus_CantAssignPciResources;
3344 goto errout;
3345 }
705b6c7b
PF
3346 return 0;
3347
3348errout:
3349 release_resources(info);
3350 return -ENODEV;
3351}
3352
3353static void release_resources(struct slgt_info *info)
3354{
3355 if (info->irq_requested) {
3356 free_irq(info->irq_level, info);
0fab6de0 3357 info->irq_requested = false;
705b6c7b
PF
3358 }
3359
3360 if (info->reg_addr_requested) {
3361 release_mem_region(info->phys_reg_addr, SLGT_REG_SIZE);
0fab6de0 3362 info->reg_addr_requested = false;
705b6c7b
PF
3363 }
3364
3365 if (info->reg_addr) {
0c8365ec 3366 iounmap(info->reg_addr);
705b6c7b
PF
3367 info->reg_addr = NULL;
3368 }
3369}
3370
3371/* Add the specified device instance data structure to the
3372 * global linked list of devices and increment the device count.
3373 */
3374static void add_device(struct slgt_info *info)
3375{
3376 char *devstr;
3377
3378 info->next_device = NULL;
3379 info->line = slgt_device_count;
3380 sprintf(info->device_name, "%s%d", tty_dev_prefix, info->line);
3381
3382 if (info->line < MAX_DEVICES) {
3383 if (maxframe[info->line])
3384 info->max_frame_size = maxframe[info->line];
3385 info->dosyncppp = dosyncppp[info->line];
3386 }
3387
3388 slgt_device_count++;
3389
3390 if (!slgt_device_list)
3391 slgt_device_list = info;
3392 else {
3393 struct slgt_info *current_dev = slgt_device_list;
3394 while(current_dev->next_device)
3395 current_dev = current_dev->next_device;
3396 current_dev->next_device = info;
3397 }
3398
3399 if (info->max_frame_size < 4096)
3400 info->max_frame_size = 4096;
3401 else if (info->max_frame_size > 65535)
3402 info->max_frame_size = 65535;
3403
3404 switch(info->pdev->device) {
3405 case SYNCLINK_GT_DEVICE_ID:
3406 devstr = "GT";
3407 break;
6f84be84
PF
3408 case SYNCLINK_GT2_DEVICE_ID:
3409 devstr = "GT2";
3410 break;
705b6c7b
PF
3411 case SYNCLINK_GT4_DEVICE_ID:
3412 devstr = "GT4";
3413 break;
3414 case SYNCLINK_AC_DEVICE_ID:
3415 devstr = "AC";
3416 info->params.mode = MGSL_MODE_ASYNC;
3417 break;
3418 default:
3419 devstr = "(unknown model)";
3420 }
3421 printk("SyncLink %s %s IO=%08x IRQ=%d MaxFrameSize=%u\n",
3422 devstr, info->device_name, info->phys_reg_addr,
3423 info->irq_level, info->max_frame_size);
3424
af69c7f9 3425#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
3426 hdlcdev_init(info);
3427#endif
3428}
3429
3430/*
3431 * allocate device instance structure, return NULL on failure
3432 */
3433static struct slgt_info *alloc_dev(int adapter_num, int port_num, struct pci_dev *pdev)
3434{
3435 struct slgt_info *info;
3436
dd00cc48 3437 info = kzalloc(sizeof(struct slgt_info), GFP_KERNEL);
705b6c7b
PF
3438
3439 if (!info) {
3440 DBGERR(("%s device alloc failed adapter=%d port=%d\n",
3441 driver_name, adapter_num, port_num));
3442 } else {
44b7d1b3 3443 tty_port_init(&info->port);
705b6c7b 3444 info->magic = MGSL_MAGIC;
c4028958 3445 INIT_WORK(&info->task, bh_handler);
705b6c7b
PF
3446 info->max_frame_size = 4096;
3447 info->raw_rx_size = DMABUFSIZE;
44b7d1b3
AC
3448 info->port.close_delay = 5*HZ/10;
3449 info->port.closing_wait = 30*HZ;
705b6c7b
PF
3450 init_waitqueue_head(&info->status_event_wait_q);
3451 init_waitqueue_head(&info->event_wait_q);
3452 spin_lock_init(&info->netlock);
3453 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
3454 info->idle_mode = HDLC_TXIDLE_FLAGS;
3455 info->adapter_num = adapter_num;
3456 info->port_num = port_num;
3457
40565f19
JS
3458 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
3459 setup_timer(&info->rx_timer, rx_timeout, (unsigned long)info);
705b6c7b
PF
3460
3461 /* Copy configuration info to device instance data */
3462 info->pdev = pdev;
3463 info->irq_level = pdev->irq;
3464 info->phys_reg_addr = pci_resource_start(pdev,0);
3465
705b6c7b 3466 info->bus_type = MGSL_BUS_TYPE_PCI;
0f2ed4c6 3467 info->irq_flags = IRQF_SHARED;
705b6c7b
PF
3468
3469 info->init_error = -1; /* assume error, set to 0 on successful init */
3470 }
3471
3472 return info;
3473}
3474
3475static void device_init(int adapter_num, struct pci_dev *pdev)
3476{
3477 struct slgt_info *port_array[SLGT_MAX_PORTS];
3478 int i;
3479 int port_count = 1;
3480
6f84be84
PF
3481 if (pdev->device == SYNCLINK_GT2_DEVICE_ID)
3482 port_count = 2;
3483 else if (pdev->device == SYNCLINK_GT4_DEVICE_ID)
705b6c7b
PF
3484 port_count = 4;
3485
3486 /* allocate device instances for all ports */
3487 for (i=0; i < port_count; ++i) {
3488 port_array[i] = alloc_dev(adapter_num, i, pdev);
3489 if (port_array[i] == NULL) {
3490 for (--i; i >= 0; --i)
3491 kfree(port_array[i]);
3492 return;
3493 }
3494 }
3495
3496 /* give copy of port_array to all ports and add to device list */
3497 for (i=0; i < port_count; ++i) {
3498 memcpy(port_array[i]->port_array, port_array, sizeof(port_array));
3499 add_device(port_array[i]);
3500 port_array[i]->port_count = port_count;
3501 spin_lock_init(&port_array[i]->lock);
3502 }
3503
3504 /* Allocate and claim adapter resources */
3505 if (!claim_resources(port_array[0])) {
3506
3507 alloc_dma_bufs(port_array[0]);
3508
3509 /* copy resource information from first port to others */
3510 for (i = 1; i < port_count; ++i) {
3511 port_array[i]->lock = port_array[0]->lock;
3512 port_array[i]->irq_level = port_array[0]->irq_level;
3513 port_array[i]->reg_addr = port_array[0]->reg_addr;
3514 alloc_dma_bufs(port_array[i]);
3515 }
3516
3517 if (request_irq(port_array[0]->irq_level,
3518 slgt_interrupt,
3519 port_array[0]->irq_flags,
3520 port_array[0]->device_name,
3521 port_array[0]) < 0) {
3522 DBGERR(("%s request_irq failed IRQ=%d\n",
3523 port_array[0]->device_name,
3524 port_array[0]->irq_level));
3525 } else {
0fab6de0 3526 port_array[0]->irq_requested = true;
705b6c7b 3527 adapter_test(port_array[0]);
0080b7aa 3528 for (i=1 ; i < port_count ; i++) {
705b6c7b 3529 port_array[i]->init_error = port_array[0]->init_error;
0080b7aa
PF
3530 port_array[i]->gpio_present = port_array[0]->gpio_present;
3531 }
705b6c7b
PF
3532 }
3533 }
62eb5b1f
PF
3534
3535 for (i=0; i < port_count; ++i)
3536 tty_register_device(serial_driver, port_array[i]->line, &(port_array[i]->pdev->dev));
705b6c7b
PF
3537}
3538
3539static int __devinit init_one(struct pci_dev *dev,
3540 const struct pci_device_id *ent)
3541{
3542 if (pci_enable_device(dev)) {
3543 printk("error enabling pci device %p\n", dev);
3544 return -EIO;
3545 }
3546 pci_set_master(dev);
3547 device_init(slgt_device_count, dev);
3548 return 0;
3549}
3550
3551static void __devexit remove_one(struct pci_dev *dev)
3552{
3553}
3554
b68e31d0 3555static const struct tty_operations ops = {
705b6c7b
PF
3556 .open = open,
3557 .close = close,
3558 .write = write,
3559 .put_char = put_char,
3560 .flush_chars = flush_chars,
3561 .write_room = write_room,
3562 .chars_in_buffer = chars_in_buffer,
3563 .flush_buffer = flush_buffer,
3564 .ioctl = ioctl,
2acdb169 3565 .compat_ioctl = slgt_compat_ioctl,
705b6c7b
PF
3566 .throttle = throttle,
3567 .unthrottle = unthrottle,
3568 .send_xchar = send_xchar,
3569 .break_ctl = set_break,
3570 .wait_until_sent = wait_until_sent,
3571 .read_proc = read_proc,
3572 .set_termios = set_termios,
3573 .stop = tx_hold,
3574 .start = tx_release,
3575 .hangup = hangup,
3576 .tiocmget = tiocmget,
3577 .tiocmset = tiocmset,
3578};
3579
3580static void slgt_cleanup(void)
3581{
3582 int rc;
3583 struct slgt_info *info;
3584 struct slgt_info *tmp;
3585
3586 printk("unload %s %s\n", driver_name, driver_version);
3587
3588 if (serial_driver) {
62eb5b1f
PF
3589 for (info=slgt_device_list ; info != NULL ; info=info->next_device)
3590 tty_unregister_device(serial_driver, info->line);
705b6c7b
PF
3591 if ((rc = tty_unregister_driver(serial_driver)))
3592 DBGERR(("tty_unregister_driver error=%d\n", rc));
3593 put_tty_driver(serial_driver);
3594 }
3595
3596 /* reset devices */
3597 info = slgt_device_list;
3598 while(info) {
3599 reset_port(info);
3600 info = info->next_device;
3601 }
3602
3603 /* release devices */
3604 info = slgt_device_list;
3605 while(info) {
af69c7f9 3606#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
3607 hdlcdev_exit(info);
3608#endif
3609 free_dma_bufs(info);
3610 free_tmp_rbuf(info);
3611 if (info->port_num == 0)
3612 release_resources(info);
3613 tmp = info;
3614 info = info->next_device;
3615 kfree(tmp);
3616 }
3617
3618 if (pci_registered)
3619 pci_unregister_driver(&pci_driver);
3620}
3621
3622/*
3623 * Driver initialization entry point.
3624 */
3625static int __init slgt_init(void)
3626{
3627 int rc;
3628
3629 printk("%s %s\n", driver_name, driver_version);
3630
705b6c7b
PF
3631 serial_driver = alloc_tty_driver(MAX_DEVICES);
3632 if (!serial_driver) {
62eb5b1f
PF
3633 printk("%s can't allocate tty driver\n", driver_name);
3634 return -ENOMEM;
705b6c7b
PF
3635 }
3636
3637 /* Initialize the tty_driver structure */
3638
3639 serial_driver->owner = THIS_MODULE;
3640 serial_driver->driver_name = tty_driver_name;
3641 serial_driver->name = tty_dev_prefix;
3642 serial_driver->major = ttymajor;
3643 serial_driver->minor_start = 64;
3644 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
3645 serial_driver->subtype = SERIAL_TYPE_NORMAL;
3646 serial_driver->init_termios = tty_std_termios;
3647 serial_driver->init_termios.c_cflag =
3648 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
606d099c
AC
3649 serial_driver->init_termios.c_ispeed = 9600;
3650 serial_driver->init_termios.c_ospeed = 9600;
62eb5b1f 3651 serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
705b6c7b
PF
3652 tty_set_operations(serial_driver, &ops);
3653 if ((rc = tty_register_driver(serial_driver)) < 0) {
3654 DBGERR(("%s can't register serial driver\n", driver_name));
3655 put_tty_driver(serial_driver);
3656 serial_driver = NULL;
3657 goto error;
3658 }
3659
3660 printk("%s %s, tty major#%d\n",
3661 driver_name, driver_version,
3662 serial_driver->major);
3663
62eb5b1f
PF
3664 slgt_device_count = 0;
3665 if ((rc = pci_register_driver(&pci_driver)) < 0) {
3666 printk("%s pci_register_driver error=%d\n", driver_name, rc);
3667 goto error;
3668 }
0fab6de0 3669 pci_registered = true;
62eb5b1f
PF
3670
3671 if (!slgt_device_list)
3672 printk("%s no devices found\n",driver_name);
3673
705b6c7b
PF
3674 return 0;
3675
3676error:
3677 slgt_cleanup();
3678 return rc;
3679}
3680
3681static void __exit slgt_exit(void)
3682{
3683 slgt_cleanup();
3684}
3685
3686module_init(slgt_init);
3687module_exit(slgt_exit);
3688
3689/*
3690 * register access routines
3691 */
3692
3693#define CALC_REGADDR() \
3694 unsigned long reg_addr = ((unsigned long)info->reg_addr) + addr; \
3695 if (addr >= 0x80) \
3696 reg_addr += (info->port_num) * 32;
3697
3698static __u8 rd_reg8(struct slgt_info *info, unsigned int addr)
3699{
3700 CALC_REGADDR();
3701 return readb((void __iomem *)reg_addr);
3702}
3703
3704static void wr_reg8(struct slgt_info *info, unsigned int addr, __u8 value)
3705{
3706 CALC_REGADDR();
3707 writeb(value, (void __iomem *)reg_addr);
3708}
3709
3710static __u16 rd_reg16(struct slgt_info *info, unsigned int addr)
3711{
3712 CALC_REGADDR();
3713 return readw((void __iomem *)reg_addr);
3714}
3715
3716static void wr_reg16(struct slgt_info *info, unsigned int addr, __u16 value)
3717{
3718 CALC_REGADDR();
3719 writew(value, (void __iomem *)reg_addr);
3720}
3721
3722static __u32 rd_reg32(struct slgt_info *info, unsigned int addr)
3723{
3724 CALC_REGADDR();
3725 return readl((void __iomem *)reg_addr);
3726}
3727
3728static void wr_reg32(struct slgt_info *info, unsigned int addr, __u32 value)
3729{
3730 CALC_REGADDR();
3731 writel(value, (void __iomem *)reg_addr);
3732}
3733
3734static void rdma_reset(struct slgt_info *info)
3735{
3736 unsigned int i;
3737
3738 /* set reset bit */
3739 wr_reg32(info, RDCSR, BIT1);
3740
3741 /* wait for enable bit cleared */
3742 for(i=0 ; i < 1000 ; i++)
3743 if (!(rd_reg32(info, RDCSR) & BIT0))
3744 break;
3745}
3746
3747static void tdma_reset(struct slgt_info *info)
3748{
3749 unsigned int i;
3750
3751 /* set reset bit */
3752 wr_reg32(info, TDCSR, BIT1);
3753
3754 /* wait for enable bit cleared */
3755 for(i=0 ; i < 1000 ; i++)
3756 if (!(rd_reg32(info, TDCSR) & BIT0))
3757 break;
3758}
3759
3760/*
3761 * enable internal loopback
3762 * TxCLK and RxCLK are generated from BRG
3763 * and TxD is looped back to RxD internally.
3764 */
3765static void enable_loopback(struct slgt_info *info)
3766{
3767 /* SCR (serial control) BIT2=looopback enable */
3768 wr_reg16(info, SCR, (unsigned short)(rd_reg16(info, SCR) | BIT2));
3769
3770 if (info->params.mode != MGSL_MODE_ASYNC) {
3771 /* CCR (clock control)
3772 * 07..05 tx clock source (010 = BRG)
3773 * 04..02 rx clock source (010 = BRG)
3774 * 01 auxclk enable (0 = disable)
3775 * 00 BRG enable (1 = enable)
3776 *
3777 * 0100 1001
3778 */
3779 wr_reg8(info, CCR, 0x49);
3780
3781 /* set speed if available, otherwise use default */
3782 if (info->params.clock_speed)
3783 set_rate(info, info->params.clock_speed);
3784 else
3785 set_rate(info, 3686400);
3786 }
3787}
3788
3789/*
3790 * set baud rate generator to specified rate
3791 */
3792static void set_rate(struct slgt_info *info, u32 rate)
3793{
3794 unsigned int div;
3795 static unsigned int osc = 14745600;
3796
3797 /* div = osc/rate - 1
3798 *
3799 * Round div up if osc/rate is not integer to
3800 * force to next slowest rate.
3801 */
3802
3803 if (rate) {
3804 div = osc/rate;
3805 if (!(osc % rate) && div)
3806 div--;
3807 wr_reg16(info, BDR, (unsigned short)div);
3808 }
3809}
3810
3811static void rx_stop(struct slgt_info *info)
3812{
3813 unsigned short val;
3814
3815 /* disable and reset receiver */
3816 val = rd_reg16(info, RCR) & ~BIT1; /* clear enable bit */
3817 wr_reg16(info, RCR, (unsigned short)(val | BIT2)); /* set reset bit */
3818 wr_reg16(info, RCR, val); /* clear reset bit */
3819
3820 slgt_irq_off(info, IRQ_RXOVER + IRQ_RXDATA + IRQ_RXIDLE);
3821
3822 /* clear pending rx interrupts */
3823 wr_reg16(info, SSR, IRQ_RXIDLE + IRQ_RXOVER);
3824
3825 rdma_reset(info);
3826
0fab6de0
JP
3827 info->rx_enabled = false;
3828 info->rx_restart = false;
705b6c7b
PF
3829}
3830
3831static void rx_start(struct slgt_info *info)
3832{
3833 unsigned short val;
3834
3835 slgt_irq_off(info, IRQ_RXOVER + IRQ_RXDATA);
3836
3837 /* clear pending rx overrun IRQ */
3838 wr_reg16(info, SSR, IRQ_RXOVER);
3839
3840 /* reset and disable receiver */
3841 val = rd_reg16(info, RCR) & ~BIT1; /* clear enable bit */
3842 wr_reg16(info, RCR, (unsigned short)(val | BIT2)); /* set reset bit */
3843 wr_reg16(info, RCR, val); /* clear reset bit */
3844
3845 rdma_reset(info);
3846 reset_rbufs(info);
3847
3848 /* set 1st descriptor address */
3849 wr_reg32(info, RDDAR, info->rbufs[0].pdesc);
3850
3851 if (info->params.mode != MGSL_MODE_ASYNC) {
3852 /* enable rx DMA and DMA interrupt */
3853 wr_reg32(info, RDCSR, (BIT2 + BIT0));
3854 } else {
3855 /* enable saving of rx status, rx DMA and DMA interrupt */
3856 wr_reg32(info, RDCSR, (BIT6 + BIT2 + BIT0));
3857 }
3858
3859 slgt_irq_on(info, IRQ_RXOVER);
3860
3861 /* enable receiver */
3862 wr_reg16(info, RCR, (unsigned short)(rd_reg16(info, RCR) | BIT1));
3863
0fab6de0
JP
3864 info->rx_restart = false;
3865 info->rx_enabled = true;
705b6c7b
PF
3866}
3867
3868static void tx_start(struct slgt_info *info)
3869{
3870 if (!info->tx_enabled) {
3871 wr_reg16(info, TCR,
cb10dc9a 3872 (unsigned short)((rd_reg16(info, TCR) | BIT1) & ~BIT2));
0fab6de0 3873 info->tx_enabled = true;
705b6c7b
PF
3874 }
3875
3876 if (info->tx_count) {
0fab6de0 3877 info->drop_rts_on_tx_done = false;
705b6c7b
PF
3878
3879 if (info->params.mode != MGSL_MODE_ASYNC) {
3880 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3881 get_signals(info);
3882 if (!(info->signals & SerialSignal_RTS)) {
3883 info->signals |= SerialSignal_RTS;
3884 set_signals(info);
0fab6de0 3885 info->drop_rts_on_tx_done = true;
705b6c7b
PF
3886 }
3887 }
3888
3889 slgt_irq_off(info, IRQ_TXDATA);
3890 slgt_irq_on(info, IRQ_TXUNDER + IRQ_TXIDLE);
3891 /* clear tx idle and underrun status bits */
3892 wr_reg16(info, SSR, (unsigned short)(IRQ_TXIDLE + IRQ_TXUNDER));
40565f19
JS
3893 if (info->params.mode == MGSL_MODE_HDLC)
3894 mod_timer(&info->tx_timer, jiffies +
3895 msecs_to_jiffies(5000));
705b6c7b 3896 } else {
705b6c7b
PF
3897 slgt_irq_off(info, IRQ_TXDATA);
3898 slgt_irq_on(info, IRQ_TXIDLE);
3899 /* clear tx idle status bit */
3900 wr_reg16(info, SSR, IRQ_TXIDLE);
705b6c7b 3901 }
bb029c67 3902 tdma_start(info);
0fab6de0 3903 info->tx_active = true;
705b6c7b
PF
3904 }
3905}
3906
bb029c67
PF
3907/*
3908 * start transmit DMA if inactive and there are unsent buffers
3909 */
3910static void tdma_start(struct slgt_info *info)
3911{
3912 unsigned int i;
3913
3914 if (rd_reg32(info, TDCSR) & BIT0)
3915 return;
3916
3917 /* transmit DMA inactive, check for unsent buffers */
3918 i = info->tbuf_start;
3919 while (!desc_count(info->tbufs[i])) {
3920 if (++i == info->tbuf_count)
3921 i = 0;
3922 if (i == info->tbuf_current)
3923 return;
3924 }
3925 info->tbuf_start = i;
3926
3927 /* there are unsent buffers, start transmit DMA */
3928
3929 /* reset needed if previous error condition */
3930 tdma_reset(info);
3931
3932 /* set 1st descriptor address */
3933 wr_reg32(info, TDDAR, info->tbufs[info->tbuf_start].pdesc);
8a38c285 3934 wr_reg32(info, TDCSR, BIT2 + BIT0); /* IRQ + DMA enable */
bb029c67
PF
3935}
3936
705b6c7b
PF
3937static void tx_stop(struct slgt_info *info)
3938{
3939 unsigned short val;
3940
3941 del_timer(&info->tx_timer);
3942
3943 tdma_reset(info);
3944
3945 /* reset and disable transmitter */
3946 val = rd_reg16(info, TCR) & ~BIT1; /* clear enable bit */
3947 wr_reg16(info, TCR, (unsigned short)(val | BIT2)); /* set reset bit */
705b6c7b
PF
3948
3949 slgt_irq_off(info, IRQ_TXDATA + IRQ_TXIDLE + IRQ_TXUNDER);
3950
3951 /* clear tx idle and underrun status bit */
3952 wr_reg16(info, SSR, (unsigned short)(IRQ_TXIDLE + IRQ_TXUNDER));
3953
3954 reset_tbufs(info);
3955
0fab6de0
JP
3956 info->tx_enabled = false;
3957 info->tx_active = false;
705b6c7b
PF
3958}
3959
3960static void reset_port(struct slgt_info *info)
3961{
3962 if (!info->reg_addr)
3963 return;
3964
3965 tx_stop(info);
3966 rx_stop(info);
3967
3968 info->signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
3969 set_signals(info);
3970
3971 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
3972}
3973
3974static void reset_adapter(struct slgt_info *info)
3975{
3976 int i;
3977 for (i=0; i < info->port_count; ++i) {
3978 if (info->port_array[i])
3979 reset_port(info->port_array[i]);
3980 }
3981}
3982
3983static void async_mode(struct slgt_info *info)
3984{
3985 unsigned short val;
3986
3987 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
3988 tx_stop(info);
3989 rx_stop(info);
3990
3991 /* TCR (tx control)
3992 *
3993 * 15..13 mode, 010=async
3994 * 12..10 encoding, 000=NRZ
3995 * 09 parity enable
3996 * 08 1=odd parity, 0=even parity
3997 * 07 1=RTS driver control
3998 * 06 1=break enable
3999 * 05..04 character length
4000 * 00=5 bits
4001 * 01=6 bits
4002 * 10=7 bits
4003 * 11=8 bits
4004 * 03 0=1 stop bit, 1=2 stop bits
4005 * 02 reset
4006 * 01 enable
4007 * 00 auto-CTS enable
4008 */
4009 val = 0x4000;
4010
4011 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
4012 val |= BIT7;
4013
4014 if (info->params.parity != ASYNC_PARITY_NONE) {
4015 val |= BIT9;
4016 if (info->params.parity == ASYNC_PARITY_ODD)
4017 val |= BIT8;
4018 }
4019
4020 switch (info->params.data_bits)
4021 {
4022 case 6: val |= BIT4; break;
4023 case 7: val |= BIT5; break;
4024 case 8: val |= BIT5 + BIT4; break;
4025 }
4026
4027 if (info->params.stop_bits != 1)
4028 val |= BIT3;
4029
4030 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
4031 val |= BIT0;
4032
4033 wr_reg16(info, TCR, val);
4034
4035 /* RCR (rx control)
4036 *
4037 * 15..13 mode, 010=async
4038 * 12..10 encoding, 000=NRZ
4039 * 09 parity enable
4040 * 08 1=odd parity, 0=even parity
4041 * 07..06 reserved, must be 0
4042 * 05..04 character length
4043 * 00=5 bits
4044 * 01=6 bits
4045 * 10=7 bits
4046 * 11=8 bits
4047 * 03 reserved, must be zero
4048 * 02 reset
4049 * 01 enable
4050 * 00 auto-DCD enable
4051 */
4052 val = 0x4000;
4053
4054 if (info->params.parity != ASYNC_PARITY_NONE) {
4055 val |= BIT9;
4056 if (info->params.parity == ASYNC_PARITY_ODD)
4057 val |= BIT8;
4058 }
4059
4060 switch (info->params.data_bits)
4061 {
4062 case 6: val |= BIT4; break;
4063 case 7: val |= BIT5; break;
4064 case 8: val |= BIT5 + BIT4; break;
4065 }
4066
4067 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
4068 val |= BIT0;
4069
4070 wr_reg16(info, RCR, val);
4071
4072 /* CCR (clock control)
4073 *
4074 * 07..05 011 = tx clock source is BRG/16
4075 * 04..02 010 = rx clock source is BRG
4076 * 01 0 = auxclk disabled
4077 * 00 1 = BRG enabled
4078 *
4079 * 0110 1001
4080 */
4081 wr_reg8(info, CCR, 0x69);
4082
4083 msc_set_vcr(info);
4084
705b6c7b
PF
4085 /* SCR (serial control)
4086 *
4087 * 15 1=tx req on FIFO half empty
4088 * 14 1=rx req on FIFO half full
4089 * 13 tx data IRQ enable
4090 * 12 tx idle IRQ enable
4091 * 11 rx break on IRQ enable
4092 * 10 rx data IRQ enable
4093 * 09 rx break off IRQ enable
4094 * 08 overrun IRQ enable
4095 * 07 DSR IRQ enable
4096 * 06 CTS IRQ enable
4097 * 05 DCD IRQ enable
4098 * 04 RI IRQ enable
4099 * 03 reserved, must be zero
4100 * 02 1=txd->rxd internal loopback enable
4101 * 01 reserved, must be zero
4102 * 00 1=master IRQ enable
4103 */
4104 val = BIT15 + BIT14 + BIT0;
4105 wr_reg16(info, SCR, val);
4106
4107 slgt_irq_on(info, IRQ_RXBREAK | IRQ_RXOVER);
4108
4109 set_rate(info, info->params.data_rate * 16);
4110
4111 if (info->params.loopback)
4112 enable_loopback(info);
4113}
4114
cb10dc9a 4115static void sync_mode(struct slgt_info *info)
705b6c7b
PF
4116{
4117 unsigned short val;
4118
4119 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
4120 tx_stop(info);
4121 rx_stop(info);
4122
4123 /* TCR (tx control)
4124 *
cb10dc9a 4125 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
705b6c7b
PF
4126 * 12..10 encoding
4127 * 09 CRC enable
4128 * 08 CRC32
4129 * 07 1=RTS driver control
4130 * 06 preamble enable
4131 * 05..04 preamble length
4132 * 03 share open/close flag
4133 * 02 reset
4134 * 01 enable
4135 * 00 auto-CTS enable
4136 */
4137 val = 0;
4138
cb10dc9a
PF
4139 switch(info->params.mode) {
4140 case MGSL_MODE_MONOSYNC: val |= BIT14 + BIT13; break;
4141 case MGSL_MODE_BISYNC: val |= BIT15; break;
4142 case MGSL_MODE_RAW: val |= BIT13; break;
4143 }
705b6c7b
PF
4144 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
4145 val |= BIT7;
4146
4147 switch(info->params.encoding)
4148 {
4149 case HDLC_ENCODING_NRZB: val |= BIT10; break;
4150 case HDLC_ENCODING_NRZI_MARK: val |= BIT11; break;
4151 case HDLC_ENCODING_NRZI: val |= BIT11 + BIT10; break;
4152 case HDLC_ENCODING_BIPHASE_MARK: val |= BIT12; break;
4153 case HDLC_ENCODING_BIPHASE_SPACE: val |= BIT12 + BIT10; break;
4154 case HDLC_ENCODING_BIPHASE_LEVEL: val |= BIT12 + BIT11; break;
4155 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: val |= BIT12 + BIT11 + BIT10; break;
4156 }
4157
04b374d0 4158 switch (info->params.crc_type & HDLC_CRC_MASK)
705b6c7b
PF
4159 {
4160 case HDLC_CRC_16_CCITT: val |= BIT9; break;
4161 case HDLC_CRC_32_CCITT: val |= BIT9 + BIT8; break;
4162 }
4163
4164 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
4165 val |= BIT6;
4166
4167 switch (info->params.preamble_length)
4168 {
4169 case HDLC_PREAMBLE_LENGTH_16BITS: val |= BIT5; break;
4170 case HDLC_PREAMBLE_LENGTH_32BITS: val |= BIT4; break;
4171 case HDLC_PREAMBLE_LENGTH_64BITS: val |= BIT5 + BIT4; break;
4172 }
4173
4174 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
4175 val |= BIT0;
4176
4177 wr_reg16(info, TCR, val);
4178
4179 /* TPR (transmit preamble) */
4180
4181 switch (info->params.preamble)
4182 {
4183 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
4184 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
4185 case HDLC_PREAMBLE_PATTERN_ZEROS: val = 0x00; break;
4186 case HDLC_PREAMBLE_PATTERN_10: val = 0x55; break;
4187 case HDLC_PREAMBLE_PATTERN_01: val = 0xaa; break;
4188 default: val = 0x7e; break;
4189 }
4190 wr_reg8(info, TPR, (unsigned char)val);
4191
4192 /* RCR (rx control)
4193 *
cb10dc9a 4194 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
705b6c7b
PF
4195 * 12..10 encoding
4196 * 09 CRC enable
4197 * 08 CRC32
4198 * 07..03 reserved, must be 0
4199 * 02 reset
4200 * 01 enable
4201 * 00 auto-DCD enable
4202 */
4203 val = 0;
4204
cb10dc9a
PF
4205 switch(info->params.mode) {
4206 case MGSL_MODE_MONOSYNC: val |= BIT14 + BIT13; break;
4207 case MGSL_MODE_BISYNC: val |= BIT15; break;
4208 case MGSL_MODE_RAW: val |= BIT13; break;
4209 }
705b6c7b
PF
4210
4211 switch(info->params.encoding)
4212 {
4213 case HDLC_ENCODING_NRZB: val |= BIT10; break;
4214 case HDLC_ENCODING_NRZI_MARK: val |= BIT11; break;
4215 case HDLC_ENCODING_NRZI: val |= BIT11 + BIT10; break;
4216 case HDLC_ENCODING_BIPHASE_MARK: val |= BIT12; break;
4217 case HDLC_ENCODING_BIPHASE_SPACE: val |= BIT12 + BIT10; break;
4218 case HDLC_ENCODING_BIPHASE_LEVEL: val |= BIT12 + BIT11; break;
4219 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: val |= BIT12 + BIT11 + BIT10; break;
4220 }
4221
04b374d0 4222 switch (info->params.crc_type & HDLC_CRC_MASK)
705b6c7b
PF
4223 {
4224 case HDLC_CRC_16_CCITT: val |= BIT9; break;
4225 case HDLC_CRC_32_CCITT: val |= BIT9 + BIT8; break;
4226 }
4227
4228 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
4229 val |= BIT0;
4230
4231 wr_reg16(info, RCR, val);
4232
4233 /* CCR (clock control)
4234 *
4235 * 07..05 tx clock source
4236 * 04..02 rx clock source
4237 * 01 auxclk enable
4238 * 00 BRG enable
4239 */
4240 val = 0;
4241
4242 if (info->params.flags & HDLC_FLAG_TXC_BRG)
4243 {
4244 // when RxC source is DPLL, BRG generates 16X DPLL
4245 // reference clock, so take TxC from BRG/16 to get
4246 // transmit clock at actual data rate
4247 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
4248 val |= BIT6 + BIT5; /* 011, txclk = BRG/16 */
4249 else
4250 val |= BIT6; /* 010, txclk = BRG */
4251 }
4252 else if (info->params.flags & HDLC_FLAG_TXC_DPLL)
4253 val |= BIT7; /* 100, txclk = DPLL Input */
4254 else if (info->params.flags & HDLC_FLAG_TXC_RXCPIN)
4255 val |= BIT5; /* 001, txclk = RXC Input */
4256
4257 if (info->params.flags & HDLC_FLAG_RXC_BRG)
4258 val |= BIT3; /* 010, rxclk = BRG */
4259 else if (info->params.flags & HDLC_FLAG_RXC_DPLL)
4260 val |= BIT4; /* 100, rxclk = DPLL */
4261 else if (info->params.flags & HDLC_FLAG_RXC_TXCPIN)
4262 val |= BIT2; /* 001, rxclk = TXC Input */
4263
4264 if (info->params.clock_speed)
4265 val |= BIT1 + BIT0;
4266
4267 wr_reg8(info, CCR, (unsigned char)val);
4268
4269 if (info->params.flags & (HDLC_FLAG_TXC_DPLL + HDLC_FLAG_RXC_DPLL))
4270 {
4271 // program DPLL mode
4272 switch(info->params.encoding)
4273 {
4274 case HDLC_ENCODING_BIPHASE_MARK:
4275 case HDLC_ENCODING_BIPHASE_SPACE:
4276 val = BIT7; break;
4277 case HDLC_ENCODING_BIPHASE_LEVEL:
4278 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL:
4279 val = BIT7 + BIT6; break;
4280 default: val = BIT6; // NRZ encodings
4281 }
4282 wr_reg16(info, RCR, (unsigned short)(rd_reg16(info, RCR) | val));
4283
4284 // DPLL requires a 16X reference clock from BRG
4285 set_rate(info, info->params.clock_speed * 16);
4286 }
4287 else
4288 set_rate(info, info->params.clock_speed);
4289
4290 tx_set_idle(info);
4291
4292 msc_set_vcr(info);
4293
4294 /* SCR (serial control)
4295 *
4296 * 15 1=tx req on FIFO half empty
4297 * 14 1=rx req on FIFO half full
4298 * 13 tx data IRQ enable
4299 * 12 tx idle IRQ enable
4300 * 11 underrun IRQ enable
4301 * 10 rx data IRQ enable
4302 * 09 rx idle IRQ enable
4303 * 08 overrun IRQ enable
4304 * 07 DSR IRQ enable
4305 * 06 CTS IRQ enable
4306 * 05 DCD IRQ enable
4307 * 04 RI IRQ enable
4308 * 03 reserved, must be zero
4309 * 02 1=txd->rxd internal loopback enable
4310 * 01 reserved, must be zero
4311 * 00 1=master IRQ enable
4312 */
4313 wr_reg16(info, SCR, BIT15 + BIT14 + BIT0);
4314
4315 if (info->params.loopback)
4316 enable_loopback(info);
4317}
4318
4319/*
4320 * set transmit idle mode
4321 */
4322static void tx_set_idle(struct slgt_info *info)
4323{
643f3319
PF
4324 unsigned char val;
4325 unsigned short tcr;
705b6c7b 4326
643f3319
PF
4327 /* if preamble enabled (tcr[6] == 1) then tx idle size = 8 bits
4328 * else tcr[5:4] = tx idle size: 00 = 8 bits, 01 = 16 bits
4329 */
4330 tcr = rd_reg16(info, TCR);
4331 if (info->idle_mode & HDLC_TXIDLE_CUSTOM_16) {
4332 /* disable preamble, set idle size to 16 bits */
4333 tcr = (tcr & ~(BIT6 + BIT5)) | BIT4;
4334 /* MSB of 16 bit idle specified in tx preamble register (TPR) */
4335 wr_reg8(info, TPR, (unsigned char)((info->idle_mode >> 8) & 0xff));
4336 } else if (!(tcr & BIT6)) {
4337 /* preamble is disabled, set idle size to 8 bits */
4338 tcr &= ~(BIT5 + BIT4);
4339 }
4340 wr_reg16(info, TCR, tcr);
4341
4342 if (info->idle_mode & (HDLC_TXIDLE_CUSTOM_8 | HDLC_TXIDLE_CUSTOM_16)) {
4343 /* LSB of custom tx idle specified in tx idle register */
4344 val = (unsigned char)(info->idle_mode & 0xff);
4345 } else {
4346 /* standard 8 bit idle patterns */
4347 switch(info->idle_mode)
4348 {
4349 case HDLC_TXIDLE_FLAGS: val = 0x7e; break;
4350 case HDLC_TXIDLE_ALT_ZEROS_ONES:
4351 case HDLC_TXIDLE_ALT_MARK_SPACE: val = 0xaa; break;
4352 case HDLC_TXIDLE_ZEROS:
4353 case HDLC_TXIDLE_SPACE: val = 0x00; break;
4354 default: val = 0xff;
4355 }
705b6c7b
PF
4356 }
4357
4358 wr_reg8(info, TIR, val);
4359}
4360
4361/*
4362 * get state of V24 status (input) signals
4363 */
4364static void get_signals(struct slgt_info *info)
4365{
4366 unsigned short status = rd_reg16(info, SSR);
4367
4368 /* clear all serial signals except DTR and RTS */
4369 info->signals &= SerialSignal_DTR + SerialSignal_RTS;
4370
4371 if (status & BIT3)
4372 info->signals |= SerialSignal_DSR;
4373 if (status & BIT2)
4374 info->signals |= SerialSignal_CTS;
4375 if (status & BIT1)
4376 info->signals |= SerialSignal_DCD;
4377 if (status & BIT0)
4378 info->signals |= SerialSignal_RI;
4379}
4380
4381/*
4382 * set V.24 Control Register based on current configuration
4383 */
4384static void msc_set_vcr(struct slgt_info *info)
4385{
4386 unsigned char val = 0;
4387
4388 /* VCR (V.24 control)
4389 *
4390 * 07..04 serial IF select
4391 * 03 DTR
4392 * 02 RTS
4393 * 01 LL
4394 * 00 RL
4395 */
4396
4397 switch(info->if_mode & MGSL_INTERFACE_MASK)
4398 {
4399 case MGSL_INTERFACE_RS232:
4400 val |= BIT5; /* 0010 */
4401 break;
4402 case MGSL_INTERFACE_V35:
4403 val |= BIT7 + BIT6 + BIT5; /* 1110 */
4404 break;
4405 case MGSL_INTERFACE_RS422:
4406 val |= BIT6; /* 0100 */
4407 break;
4408 }
4409
e5590717
PF
4410 if (info->if_mode & MGSL_INTERFACE_MSB_FIRST)
4411 val |= BIT4;
705b6c7b
PF
4412 if (info->signals & SerialSignal_DTR)
4413 val |= BIT3;
4414 if (info->signals & SerialSignal_RTS)
4415 val |= BIT2;
4416 if (info->if_mode & MGSL_INTERFACE_LL)
4417 val |= BIT1;
4418 if (info->if_mode & MGSL_INTERFACE_RL)
4419 val |= BIT0;
4420 wr_reg8(info, VCR, val);
4421}
4422
4423/*
4424 * set state of V24 control (output) signals
4425 */
4426static void set_signals(struct slgt_info *info)
4427{
4428 unsigned char val = rd_reg8(info, VCR);
4429 if (info->signals & SerialSignal_DTR)
4430 val |= BIT3;
4431 else
4432 val &= ~BIT3;
4433 if (info->signals & SerialSignal_RTS)
4434 val |= BIT2;
4435 else
4436 val &= ~BIT2;
4437 wr_reg8(info, VCR, val);
4438}
4439
4440/*
4441 * free range of receive DMA buffers (i to last)
4442 */
4443static void free_rbufs(struct slgt_info *info, unsigned int i, unsigned int last)
4444{
4445 int done = 0;
4446
4447 while(!done) {
4448 /* reset current buffer for reuse */
4449 info->rbufs[i].status = 0;
cb10dc9a
PF
4450 switch(info->params.mode) {
4451 case MGSL_MODE_RAW:
4452 case MGSL_MODE_MONOSYNC:
4453 case MGSL_MODE_BISYNC:
705b6c7b 4454 set_desc_count(info->rbufs[i], info->raw_rx_size);
cb10dc9a
PF
4455 break;
4456 default:
705b6c7b 4457 set_desc_count(info->rbufs[i], DMABUFSIZE);
cb10dc9a 4458 }
705b6c7b
PF
4459
4460 if (i == last)
4461 done = 1;
4462 if (++i == info->rbuf_count)
4463 i = 0;
4464 }
4465 info->rbuf_current = i;
4466}
4467
4468/*
4469 * mark all receive DMA buffers as free
4470 */
4471static void reset_rbufs(struct slgt_info *info)
4472{
4473 free_rbufs(info, 0, info->rbuf_count - 1);
4474}
4475
4476/*
4477 * pass receive HDLC frame to upper layer
4478 *
0fab6de0 4479 * return true if frame available, otherwise false
705b6c7b 4480 */
0fab6de0 4481static bool rx_get_frame(struct slgt_info *info)
705b6c7b
PF
4482{
4483 unsigned int start, end;
4484 unsigned short status;
4485 unsigned int framesize = 0;
705b6c7b 4486 unsigned long flags;
8fb06c77 4487 struct tty_struct *tty = info->port.tty;
705b6c7b 4488 unsigned char addr_field = 0xff;
04b374d0
PF
4489 unsigned int crc_size = 0;
4490
4491 switch (info->params.crc_type & HDLC_CRC_MASK) {
4492 case HDLC_CRC_16_CCITT: crc_size = 2; break;
4493 case HDLC_CRC_32_CCITT: crc_size = 4; break;
4494 }
705b6c7b
PF
4495
4496check_again:
4497
4498 framesize = 0;
4499 addr_field = 0xff;
4500 start = end = info->rbuf_current;
4501
4502 for (;;) {
4503 if (!desc_complete(info->rbufs[end]))
4504 goto cleanup;
4505
4506 if (framesize == 0 && info->params.addr_filter != 0xff)
4507 addr_field = info->rbufs[end].buf[0];
4508
4509 framesize += desc_count(info->rbufs[end]);
4510
4511 if (desc_eof(info->rbufs[end]))
4512 break;
4513
4514 if (++end == info->rbuf_count)
4515 end = 0;
4516
4517 if (end == info->rbuf_current) {
4518 if (info->rx_enabled){
4519 spin_lock_irqsave(&info->lock,flags);
4520 rx_start(info);
4521 spin_unlock_irqrestore(&info->lock,flags);
4522 }
4523 goto cleanup;
4524 }
4525 }
4526
4527 /* status
4528 *
4529 * 15 buffer complete
4530 * 14..06 reserved
4531 * 05..04 residue
4532 * 02 eof (end of frame)
4533 * 01 CRC error
4534 * 00 abort
4535 */
4536 status = desc_status(info->rbufs[end]);
4537
4538 /* ignore CRC bit if not using CRC (bit is undefined) */
04b374d0 4539 if ((info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_NONE)
705b6c7b
PF
4540 status &= ~BIT1;
4541
4542 if (framesize == 0 ||
4543 (addr_field != 0xff && addr_field != info->params.addr_filter)) {
4544 free_rbufs(info, start, end);
4545 goto check_again;
4546 }
4547
04b374d0
PF
4548 if (framesize < (2 + crc_size) || status & BIT0) {
4549 info->icount.rxshort++;
705b6c7b 4550 framesize = 0;
04b374d0
PF
4551 } else if (status & BIT1) {
4552 info->icount.rxcrc++;
4553 if (!(info->params.crc_type & HDLC_CRC_RETURN_EX))
4554 framesize = 0;
4555 }
705b6c7b 4556
af69c7f9 4557#if SYNCLINK_GENERIC_HDLC
04b374d0 4558 if (framesize == 0) {
198191c4
KH
4559 info->netdev->stats.rx_errors++;
4560 info->netdev->stats.rx_frame_errors++;
705b6c7b 4561 }
04b374d0 4562#endif
705b6c7b
PF
4563
4564 DBGBH(("%s rx frame status=%04X size=%d\n",
4565 info->device_name, status, framesize));
4566 DBGDATA(info, info->rbufs[start].buf, min_t(int, framesize, DMABUFSIZE), "rx");
4567
4568 if (framesize) {
04b374d0
PF
4569 if (!(info->params.crc_type & HDLC_CRC_RETURN_EX)) {
4570 framesize -= crc_size;
4571 crc_size = 0;
4572 }
4573
4574 if (framesize > info->max_frame_size + crc_size)
705b6c7b
PF
4575 info->icount.rxlong++;
4576 else {
4577 /* copy dma buffer(s) to contiguous temp buffer */
4578 int copy_count = framesize;
4579 int i = start;
4580 unsigned char *p = info->tmp_rbuf;
4581 info->tmp_rbuf_count = framesize;
4582
4583 info->icount.rxok++;
4584
4585 while(copy_count) {
4586 int partial_count = min(copy_count, DMABUFSIZE);
4587 memcpy(p, info->rbufs[i].buf, partial_count);
4588 p += partial_count;
4589 copy_count -= partial_count;
4590 if (++i == info->rbuf_count)
4591 i = 0;
4592 }
4593
04b374d0
PF
4594 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
4595 *p = (status & BIT1) ? RX_CRC_ERROR : RX_OK;
4596 framesize++;
4597 }
4598
af69c7f9 4599#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
4600 if (info->netcount)
4601 hdlcdev_rx(info,info->tmp_rbuf, framesize);
4602 else
4603#endif
4604 ldisc_receive_buf(tty, info->tmp_rbuf, info->flag_buf, framesize);
4605 }
4606 }
4607 free_rbufs(info, start, end);
0fab6de0 4608 return true;
705b6c7b
PF
4609
4610cleanup:
0fab6de0 4611 return false;
705b6c7b
PF
4612}
4613
4614/*
4615 * pass receive buffer (RAW synchronous mode) to tty layer
0fab6de0 4616 * return true if buffer available, otherwise false
705b6c7b 4617 */
0fab6de0 4618static bool rx_get_buf(struct slgt_info *info)
705b6c7b
PF
4619{
4620 unsigned int i = info->rbuf_current;
cb10dc9a 4621 unsigned int count;
705b6c7b
PF
4622
4623 if (!desc_complete(info->rbufs[i]))
0fab6de0 4624 return false;
cb10dc9a
PF
4625 count = desc_count(info->rbufs[i]);
4626 switch(info->params.mode) {
4627 case MGSL_MODE_MONOSYNC:
4628 case MGSL_MODE_BISYNC:
4629 /* ignore residue in byte synchronous modes */
4630 if (desc_residue(info->rbufs[i]))
4631 count--;
4632 break;
4633 }
4634 DBGDATA(info, info->rbufs[i].buf, count, "rx");
4635 DBGINFO(("rx_get_buf size=%d\n", count));
4636 if (count)
8fb06c77 4637 ldisc_receive_buf(info->port.tty, info->rbufs[i].buf,
cb10dc9a 4638 info->flag_buf, count);
705b6c7b 4639 free_rbufs(info, i, i);
0fab6de0 4640 return true;
705b6c7b
PF
4641}
4642
4643static void reset_tbufs(struct slgt_info *info)
4644{
4645 unsigned int i;
4646 info->tbuf_current = 0;
4647 for (i=0 ; i < info->tbuf_count ; i++) {
4648 info->tbufs[i].status = 0;
4649 info->tbufs[i].count = 0;
4650 }
4651}
4652
4653/*
4654 * return number of free transmit DMA buffers
4655 */
4656static unsigned int free_tbuf_count(struct slgt_info *info)
4657{
4658 unsigned int count = 0;
4659 unsigned int i = info->tbuf_current;
4660
4661 do
4662 {
4663 if (desc_count(info->tbufs[i]))
4664 break; /* buffer in use */
4665 ++count;
4666 if (++i == info->tbuf_count)
4667 i=0;
4668 } while (i != info->tbuf_current);
4669
bb029c67
PF
4670 /* if tx DMA active, last zero count buffer is in use */
4671 if (count && (rd_reg32(info, TDCSR) & BIT0))
705b6c7b
PF
4672 --count;
4673
4674 return count;
4675}
4676
403214d0
PF
4677/*
4678 * return number of bytes in unsent transmit DMA buffers
4679 * and the serial controller tx FIFO
4680 */
4681static unsigned int tbuf_bytes(struct slgt_info *info)
4682{
4683 unsigned int total_count = 0;
4684 unsigned int i = info->tbuf_current;
4685 unsigned int reg_value;
4686 unsigned int count;
4687 unsigned int active_buf_count = 0;
4688
4689 /*
4690 * Add descriptor counts for all tx DMA buffers.
4691 * If count is zero (cleared by DMA controller after read),
4692 * the buffer is complete or is actively being read from.
4693 *
4694 * Record buf_count of last buffer with zero count starting
4695 * from current ring position. buf_count is mirror
4696 * copy of count and is not cleared by serial controller.
4697 * If DMA controller is active, that buffer is actively
4698 * being read so add to total.
4699 */
4700 do {
4701 count = desc_count(info->tbufs[i]);
4702 if (count)
4703 total_count += count;
4704 else if (!total_count)
4705 active_buf_count = info->tbufs[i].buf_count;
4706 if (++i == info->tbuf_count)
4707 i = 0;
4708 } while (i != info->tbuf_current);
4709
4710 /* read tx DMA status register */
4711 reg_value = rd_reg32(info, TDCSR);
4712
4713 /* if tx DMA active, last zero count buffer is in use */
4714 if (reg_value & BIT0)
4715 total_count += active_buf_count;
4716
4717 /* add tx FIFO count = reg_value[15..8] */
4718 total_count += (reg_value >> 8) & 0xff;
4719
4720 /* if transmitter active add one byte for shift register */
4721 if (info->tx_active)
4722 total_count++;
4723
4724 return total_count;
4725}
4726
705b6c7b
PF
4727/*
4728 * load transmit DMA buffer(s) with data
4729 */
4730static void tx_load(struct slgt_info *info, const char *buf, unsigned int size)
4731{
4732 unsigned short count;
4733 unsigned int i;
4734 struct slgt_desc *d;
4735
4736 if (size == 0)
4737 return;
4738
4739 DBGDATA(info, buf, size, "tx");
4740
4741 info->tbuf_start = i = info->tbuf_current;
4742
4743 while (size) {
4744 d = &info->tbufs[i];
4745 if (++i == info->tbuf_count)
4746 i = 0;
4747
4748 count = (unsigned short)((size > DMABUFSIZE) ? DMABUFSIZE : size);
4749 memcpy(d->buf, buf, count);
4750
4751 size -= count;
4752 buf += count;
4753
cb10dc9a
PF
4754 /*
4755 * set EOF bit for last buffer of HDLC frame or
4756 * for every buffer in raw mode
4757 */
4758 if ((!size && info->params.mode == MGSL_MODE_HDLC) ||
4759 info->params.mode == MGSL_MODE_RAW)
4760 set_desc_eof(*d, 1);
705b6c7b
PF
4761 else
4762 set_desc_eof(*d, 0);
4763
4764 set_desc_count(*d, count);
403214d0 4765 d->buf_count = count;
705b6c7b
PF
4766 }
4767
4768 info->tbuf_current = i;
4769}
4770
4771static int register_test(struct slgt_info *info)
4772{
4773 static unsigned short patterns[] =
4774 {0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
4775 static unsigned int count = sizeof(patterns)/sizeof(patterns[0]);
4776 unsigned int i;
4777 int rc = 0;
4778
4779 for (i=0 ; i < count ; i++) {
4780 wr_reg16(info, TIR, patterns[i]);
4781 wr_reg16(info, BDR, patterns[(i+1)%count]);
4782 if ((rd_reg16(info, TIR) != patterns[i]) ||
4783 (rd_reg16(info, BDR) != patterns[(i+1)%count])) {
4784 rc = -ENODEV;
4785 break;
4786 }
4787 }
0080b7aa 4788 info->gpio_present = (rd_reg32(info, JCR) & BIT5) ? 1 : 0;
705b6c7b
PF
4789 info->init_error = rc ? 0 : DiagStatus_AddressFailure;
4790 return rc;
4791}
4792
4793static int irq_test(struct slgt_info *info)
4794{
4795 unsigned long timeout;
4796 unsigned long flags;
8fb06c77 4797 struct tty_struct *oldtty = info->port.tty;
705b6c7b
PF
4798 u32 speed = info->params.data_rate;
4799
4800 info->params.data_rate = 921600;
8fb06c77 4801 info->port.tty = NULL;
705b6c7b
PF
4802
4803 spin_lock_irqsave(&info->lock, flags);
4804 async_mode(info);
4805 slgt_irq_on(info, IRQ_TXIDLE);
4806
4807 /* enable transmitter */
4808 wr_reg16(info, TCR,
4809 (unsigned short)(rd_reg16(info, TCR) | BIT1));
4810
4811 /* write one byte and wait for tx idle */
4812 wr_reg16(info, TDR, 0);
4813
4814 /* assume failure */
4815 info->init_error = DiagStatus_IrqFailure;
0fab6de0 4816 info->irq_occurred = false;
705b6c7b
PF
4817
4818 spin_unlock_irqrestore(&info->lock, flags);
4819
4820 timeout=100;
4821 while(timeout-- && !info->irq_occurred)
4822 msleep_interruptible(10);
4823
4824 spin_lock_irqsave(&info->lock,flags);
4825 reset_port(info);
4826 spin_unlock_irqrestore(&info->lock,flags);
4827
4828 info->params.data_rate = speed;
8fb06c77 4829 info->port.tty = oldtty;
705b6c7b
PF
4830
4831 info->init_error = info->irq_occurred ? 0 : DiagStatus_IrqFailure;
4832 return info->irq_occurred ? 0 : -ENODEV;
4833}
4834
4835static int loopback_test_rx(struct slgt_info *info)
4836{
4837 unsigned char *src, *dest;
4838 int count;
4839
4840 if (desc_complete(info->rbufs[0])) {
4841 count = desc_count(info->rbufs[0]);
4842 src = info->rbufs[0].buf;
4843 dest = info->tmp_rbuf;
4844
4845 for( ; count ; count-=2, src+=2) {
4846 /* src=data byte (src+1)=status byte */
4847 if (!(*(src+1) & (BIT9 + BIT8))) {
4848 *dest = *src;
4849 dest++;
4850 info->tmp_rbuf_count++;
4851 }
4852 }
4853 DBGDATA(info, info->tmp_rbuf, info->tmp_rbuf_count, "rx");
4854 return 1;
4855 }
4856 return 0;
4857}
4858
4859static int loopback_test(struct slgt_info *info)
4860{
4861#define TESTFRAMESIZE 20
4862
4863 unsigned long timeout;
4864 u16 count = TESTFRAMESIZE;
4865 unsigned char buf[TESTFRAMESIZE];
4866 int rc = -ENODEV;
4867 unsigned long flags;
4868
8fb06c77 4869 struct tty_struct *oldtty = info->port.tty;
705b6c7b
PF
4870 MGSL_PARAMS params;
4871
4872 memcpy(&params, &info->params, sizeof(params));
4873
4874 info->params.mode = MGSL_MODE_ASYNC;
4875 info->params.data_rate = 921600;
4876 info->params.loopback = 1;
8fb06c77 4877 info->port.tty = NULL;
705b6c7b
PF
4878
4879 /* build and send transmit frame */
4880 for (count = 0; count < TESTFRAMESIZE; ++count)
4881 buf[count] = (unsigned char)count;
4882
4883 info->tmp_rbuf_count = 0;
4884 memset(info->tmp_rbuf, 0, TESTFRAMESIZE);
4885
4886 /* program hardware for HDLC and enabled receiver */
4887 spin_lock_irqsave(&info->lock,flags);
4888 async_mode(info);
4889 rx_start(info);
4890 info->tx_count = count;
4891 tx_load(info, buf, count);
4892 tx_start(info);
4893 spin_unlock_irqrestore(&info->lock, flags);
4894
4895 /* wait for receive complete */
4896 for (timeout = 100; timeout; --timeout) {
4897 msleep_interruptible(10);
4898 if (loopback_test_rx(info)) {
4899 rc = 0;
4900 break;
4901 }
4902 }
4903
4904 /* verify received frame length and contents */
4905 if (!rc && (info->tmp_rbuf_count != count ||
4906 memcmp(buf, info->tmp_rbuf, count))) {
4907 rc = -ENODEV;
4908 }
4909
4910 spin_lock_irqsave(&info->lock,flags);
4911 reset_adapter(info);
4912 spin_unlock_irqrestore(&info->lock,flags);
4913
4914 memcpy(&info->params, &params, sizeof(info->params));
8fb06c77 4915 info->port.tty = oldtty;
705b6c7b
PF
4916
4917 info->init_error = rc ? DiagStatus_DmaFailure : 0;
4918 return rc;
4919}
4920
4921static int adapter_test(struct slgt_info *info)
4922{
4923 DBGINFO(("testing %s\n", info->device_name));
294dad05 4924 if (register_test(info) < 0) {
705b6c7b
PF
4925 printk("register test failure %s addr=%08X\n",
4926 info->device_name, info->phys_reg_addr);
294dad05 4927 } else if (irq_test(info) < 0) {
705b6c7b
PF
4928 printk("IRQ test failure %s IRQ=%d\n",
4929 info->device_name, info->irq_level);
294dad05 4930 } else if (loopback_test(info) < 0) {
705b6c7b
PF
4931 printk("loopback test failure %s\n", info->device_name);
4932 }
4933 return info->init_error;
4934}
4935
4936/*
4937 * transmit timeout handler
4938 */
4939static void tx_timeout(unsigned long context)
4940{
4941 struct slgt_info *info = (struct slgt_info*)context;
4942 unsigned long flags;
4943
4944 DBGINFO(("%s tx_timeout\n", info->device_name));
4945 if(info->tx_active && info->params.mode == MGSL_MODE_HDLC) {
4946 info->icount.txtimeout++;
4947 }
4948 spin_lock_irqsave(&info->lock,flags);
0fab6de0 4949 info->tx_active = false;
705b6c7b
PF
4950 info->tx_count = 0;
4951 spin_unlock_irqrestore(&info->lock,flags);
4952
af69c7f9 4953#if SYNCLINK_GENERIC_HDLC
705b6c7b
PF
4954 if (info->netcount)
4955 hdlcdev_tx_done(info);
4956 else
4957#endif
4958 bh_transmit(info);
4959}
4960
4961/*
4962 * receive buffer polling timer
4963 */
4964static void rx_timeout(unsigned long context)
4965{
4966 struct slgt_info *info = (struct slgt_info*)context;
4967 unsigned long flags;
4968
4969 DBGINFO(("%s rx_timeout\n", info->device_name));
4970 spin_lock_irqsave(&info->lock, flags);
4971 info->pending_bh |= BH_RECEIVE;
4972 spin_unlock_irqrestore(&info->lock, flags);
c4028958 4973 bh_handler(&info->task);
705b6c7b
PF
4974}
4975