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