blob: f18ab8af0e1ca7230c52b865fbbb877b2ce9f6b7 [file] [log] [blame]
Paul Fulghum705b6c72006-01-08 01:02:06 -08001/*
Paul Fulghum705b6c72006-01-08 01:02:06 -08002 * Device driver for Microgate SyncLink GT serial adapters.
3 *
4 * written by Paul Fulghum for Microgate Corporation
5 * paulkf@microgate.com
6 *
7 * Microgate and SyncLink are trademarks of Microgate Corporation
8 *
9 * This code is released under the GNU General Public License (GPL)
10 *
11 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
12 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
13 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
14 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
15 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
17 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
18 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
19 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
20 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
21 * OF THE POSSIBILITY OF SUCH DAMAGE.
22 */
23
24/*
25 * DEBUG OUTPUT DEFINITIONS
26 *
27 * uncomment lines below to enable specific types of debug output
28 *
29 * DBGINFO information - most verbose output
30 * DBGERR serious errors
31 * DBGBH bottom half service routine debugging
32 * DBGISR interrupt service routine debugging
33 * DBGDATA output receive and transmit data
34 * DBGTBUF output transmit DMA buffers and registers
35 * DBGRBUF output receive DMA buffers and registers
36 */
37
38#define DBGINFO(fmt) if (debug_level >= DEBUG_LEVEL_INFO) printk fmt
39#define DBGERR(fmt) if (debug_level >= DEBUG_LEVEL_ERROR) printk fmt
40#define DBGBH(fmt) if (debug_level >= DEBUG_LEVEL_BH) printk fmt
41#define DBGISR(fmt) if (debug_level >= DEBUG_LEVEL_ISR) printk fmt
42#define DBGDATA(info, buf, size, label) if (debug_level >= DEBUG_LEVEL_DATA) trace_block((info), (buf), (size), (label))
Alan Coxf6025012010-06-01 22:52:46 +020043/*#define DBGTBUF(info) dump_tbufs(info)*/
44/*#define DBGRBUF(info) dump_rbufs(info)*/
Paul Fulghum705b6c72006-01-08 01:02:06 -080045
46
Paul Fulghum705b6c72006-01-08 01:02:06 -080047#include <linux/module.h>
Paul Fulghum705b6c72006-01-08 01:02:06 -080048#include <linux/errno.h>
49#include <linux/signal.h>
50#include <linux/sched.h>
51#include <linux/timer.h>
52#include <linux/interrupt.h>
53#include <linux/pci.h>
54#include <linux/tty.h>
55#include <linux/tty_flip.h>
56#include <linux/serial.h>
57#include <linux/major.h>
58#include <linux/string.h>
59#include <linux/fcntl.h>
60#include <linux/ptrace.h>
61#include <linux/ioport.h>
62#include <linux/mm.h>
Alexey Dobriyana18c56e2009-03-31 15:19:19 -070063#include <linux/seq_file.h>
Paul Fulghum705b6c72006-01-08 01:02:06 -080064#include <linux/slab.h>
65#include <linux/netdevice.h>
66#include <linux/vmalloc.h>
67#include <linux/init.h>
68#include <linux/delay.h>
69#include <linux/ioctl.h>
70#include <linux/termios.h>
71#include <linux/bitops.h>
72#include <linux/workqueue.h>
73#include <linux/hdlc.h>
Robert P. J. Day3dd12472008-02-06 01:37:17 -080074#include <linux/synclink.h>
Paul Fulghum705b6c72006-01-08 01:02:06 -080075
Paul Fulghum705b6c72006-01-08 01:02:06 -080076#include <asm/system.h>
77#include <asm/io.h>
78#include <asm/irq.h>
79#include <asm/dma.h>
80#include <asm/types.h>
81#include <asm/uaccess.h>
82
Paul Fulghumaf69c7f2006-12-06 20:40:24 -080083#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_GT_MODULE))
84#define SYNCLINK_GENERIC_HDLC 1
85#else
86#define SYNCLINK_GENERIC_HDLC 0
Paul Fulghum705b6c72006-01-08 01:02:06 -080087#endif
88
89/*
90 * module identification
91 */
92static char *driver_name = "SyncLink GT";
Paul Fulghum705b6c72006-01-08 01:02:06 -080093static char *tty_driver_name = "synclink_gt";
94static char *tty_dev_prefix = "ttySLG";
95MODULE_LICENSE("GPL");
96#define MGSL_MAGIC 0x5401
Paul Fulghuma077c1a2006-09-30 23:27:46 -070097#define MAX_DEVICES 32
Paul Fulghum705b6c72006-01-08 01:02:06 -080098
99static struct pci_device_id pci_table[] = {
100 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
Paul Fulghum6f84be82006-06-25 05:49:22 -0700101 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT2_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
Paul Fulghum705b6c72006-01-08 01:02:06 -0800102 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_GT4_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
103 {PCI_VENDOR_ID_MICROGATE, SYNCLINK_AC_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
104 {0,}, /* terminate list */
105};
106MODULE_DEVICE_TABLE(pci, pci_table);
107
108static int init_one(struct pci_dev *dev,const struct pci_device_id *ent);
109static void remove_one(struct pci_dev *dev);
110static struct pci_driver pci_driver = {
111 .name = "synclink_gt",
112 .id_table = pci_table,
113 .probe = init_one,
114 .remove = __devexit_p(remove_one),
115};
116
Joe Perches0fab6de2008-04-28 02:14:02 -0700117static bool pci_registered;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800118
119/*
120 * module configuration and status
121 */
122static struct slgt_info *slgt_device_list;
123static int slgt_device_count;
124
125static int ttymajor;
126static int debug_level;
127static int maxframe[MAX_DEVICES];
Paul Fulghum705b6c72006-01-08 01:02:06 -0800128
129module_param(ttymajor, int, 0);
130module_param(debug_level, int, 0);
131module_param_array(maxframe, int, NULL, 0);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800132
133MODULE_PARM_DESC(ttymajor, "TTY major device number override: 0=auto assigned");
134MODULE_PARM_DESC(debug_level, "Debug syslog output: 0=disabled, 1 to 5=increasing detail");
135MODULE_PARM_DESC(maxframe, "Maximum frame size used by device (4096 to 65535)");
Paul Fulghum705b6c72006-01-08 01:02:06 -0800136
137/*
138 * tty support and callbacks
139 */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800140static struct tty_driver *serial_driver;
141
142static int open(struct tty_struct *tty, struct file * filp);
143static void close(struct tty_struct *tty, struct file * filp);
144static void hangup(struct tty_struct *tty);
Alan Cox606d0992006-12-08 02:38:45 -0800145static void set_termios(struct tty_struct *tty, struct ktermios *old_termios);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800146
147static int write(struct tty_struct *tty, const unsigned char *buf, int count);
Alan Cox55da7782008-04-30 00:54:07 -0700148static int put_char(struct tty_struct *tty, unsigned char ch);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800149static void send_xchar(struct tty_struct *tty, char ch);
150static void wait_until_sent(struct tty_struct *tty, int timeout);
151static int write_room(struct tty_struct *tty);
152static void flush_chars(struct tty_struct *tty);
153static void flush_buffer(struct tty_struct *tty);
154static void tx_hold(struct tty_struct *tty);
155static void tx_release(struct tty_struct *tty);
156
157static int ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800158static int chars_in_buffer(struct tty_struct *tty);
159static void throttle(struct tty_struct * tty);
160static void unthrottle(struct tty_struct * tty);
Alan Cox9e989662008-07-22 11:18:03 +0100161static int set_break(struct tty_struct *tty, int break_state);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800162
163/*
164 * generic HDLC support and callbacks
165 */
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800166#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -0800167#define dev_to_port(D) (dev_to_hdlc(D)->priv)
168static void hdlcdev_tx_done(struct slgt_info *info);
169static void hdlcdev_rx(struct slgt_info *info, char *buf, int size);
170static int hdlcdev_init(struct slgt_info *info);
171static void hdlcdev_exit(struct slgt_info *info);
172#endif
173
174
175/*
176 * device specific structures, macros and functions
177 */
178
179#define SLGT_MAX_PORTS 4
180#define SLGT_REG_SIZE 256
181
182/*
Paul Fulghum0080b7a2006-03-28 01:56:15 -0800183 * conditional wait facility
184 */
185struct cond_wait {
186 struct cond_wait *next;
187 wait_queue_head_t q;
188 wait_queue_t wait;
189 unsigned int data;
190};
191static void init_cond_wait(struct cond_wait *w, unsigned int data);
192static void add_cond_wait(struct cond_wait **head, struct cond_wait *w);
193static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w);
194static void flush_cond_wait(struct cond_wait **head);
195
196/*
Paul Fulghum705b6c72006-01-08 01:02:06 -0800197 * DMA buffer descriptor and access macros
198 */
199struct slgt_desc
200{
Al Viro51ef9c52007-10-14 19:34:30 +0100201 __le16 count;
202 __le16 status;
203 __le32 pbuf; /* physical address of data buffer */
204 __le32 next; /* physical address of next descriptor */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800205
206 /* driver book keeping */
207 char *buf; /* virtual address of data buffer */
208 unsigned int pdesc; /* physical address of this descriptor */
209 dma_addr_t buf_dma_addr;
Paul Fulghum403214d2008-07-22 11:21:55 +0100210 unsigned short buf_count;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800211};
212
213#define set_desc_buffer(a,b) (a).pbuf = cpu_to_le32((unsigned int)(b))
214#define set_desc_next(a,b) (a).next = cpu_to_le32((unsigned int)(b))
215#define set_desc_count(a,b)(a).count = cpu_to_le16((unsigned short)(b))
216#define set_desc_eof(a,b) (a).status = cpu_to_le16((b) ? (le16_to_cpu((a).status) | BIT0) : (le16_to_cpu((a).status) & ~BIT0))
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +0100217#define set_desc_status(a, b) (a).status = cpu_to_le16((unsigned short)(b))
Paul Fulghum705b6c72006-01-08 01:02:06 -0800218#define desc_count(a) (le16_to_cpu((a).count))
219#define desc_status(a) (le16_to_cpu((a).status))
220#define desc_complete(a) (le16_to_cpu((a).status) & BIT15)
221#define desc_eof(a) (le16_to_cpu((a).status) & BIT2)
222#define desc_crc_error(a) (le16_to_cpu((a).status) & BIT1)
223#define desc_abort(a) (le16_to_cpu((a).status) & BIT0)
224#define desc_residue(a) ((le16_to_cpu((a).status) & 0x38) >> 3)
225
226struct _input_signal_events {
227 int ri_up;
228 int ri_down;
229 int dsr_up;
230 int dsr_down;
231 int dcd_up;
232 int dcd_down;
233 int cts_up;
234 int cts_down;
235};
236
237/*
238 * device instance data structure
239 */
240struct slgt_info {
241 void *if_ptr; /* General purpose pointer (used by SPPP) */
Alan Cox8fb06c72008-07-16 21:56:46 +0100242 struct tty_port port;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800243
244 struct slgt_info *next_device; /* device list link */
245
246 int magic;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800247
248 char device_name[25];
249 struct pci_dev *pdev;
250
251 int port_count; /* count of ports on adapter */
252 int adapter_num; /* adapter instance number */
253 int port_num; /* port instance number */
254
255 /* array of pointers to port contexts on this adapter */
256 struct slgt_info *port_array[SLGT_MAX_PORTS];
257
Paul Fulghum705b6c72006-01-08 01:02:06 -0800258 int line; /* tty line instance number */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800259
260 struct mgsl_icount icount;
261
Paul Fulghum705b6c72006-01-08 01:02:06 -0800262 int timeout;
263 int x_char; /* xon/xoff character */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800264 unsigned int read_status_mask;
265 unsigned int ignore_status_mask;
266
Paul Fulghum705b6c72006-01-08 01:02:06 -0800267 wait_queue_head_t status_event_wait_q;
268 wait_queue_head_t event_wait_q;
269 struct timer_list tx_timer;
270 struct timer_list rx_timer;
271
Paul Fulghum0080b7a2006-03-28 01:56:15 -0800272 unsigned int gpio_present;
273 struct cond_wait *gpio_wait_q;
274
Paul Fulghum705b6c72006-01-08 01:02:06 -0800275 spinlock_t lock; /* spinlock for synchronizing with ISR */
276
277 struct work_struct task;
278 u32 pending_bh;
Joe Perches0fab6de2008-04-28 02:14:02 -0700279 bool bh_requested;
280 bool bh_running;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800281
282 int isr_overflow;
Joe Perches0fab6de2008-04-28 02:14:02 -0700283 bool irq_requested; /* true if IRQ requested */
284 bool irq_occurred; /* for diagnostics use */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800285
286 /* device configuration */
287
288 unsigned int bus_type;
289 unsigned int irq_level;
290 unsigned long irq_flags;
291
292 unsigned char __iomem * reg_addr; /* memory mapped registers address */
293 u32 phys_reg_addr;
Joe Perches0fab6de2008-04-28 02:14:02 -0700294 bool reg_addr_requested;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800295
296 MGSL_PARAMS params; /* communications parameters */
297 u32 idle_mode;
298 u32 max_frame_size; /* as set by device config */
299
Paul Fulghum814dae02008-07-22 11:22:14 +0100300 unsigned int rbuf_fill_level;
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +0100301 unsigned int rx_pio;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800302 unsigned int if_mode;
Paul Fulghum1f807692009-04-02 16:58:30 -0700303 unsigned int base_clock;
Paul Fulghum98072242010-10-27 15:34:22 -0700304 unsigned int xsync;
305 unsigned int xctrl;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800306
307 /* device status */
308
Joe Perches0fab6de2008-04-28 02:14:02 -0700309 bool rx_enabled;
310 bool rx_restart;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800311
Joe Perches0fab6de2008-04-28 02:14:02 -0700312 bool tx_enabled;
313 bool tx_active;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800314
315 unsigned char signals; /* serial signal states */
Darren Jenkins2641dfd2006-02-28 16:59:20 -0800316 int init_error; /* initialization error */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800317
318 unsigned char *tx_buf;
319 int tx_count;
320
321 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
322 char char_buf[MAX_ASYNC_BUFFER_SIZE];
Joe Perches0fab6de2008-04-28 02:14:02 -0700323 bool drop_rts_on_tx_done;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800324 struct _input_signal_events input_signal_events;
325
326 int dcd_chkcount; /* check counts to prevent */
327 int cts_chkcount; /* too many IRQs if a signal */
328 int dsr_chkcount; /* is floating */
329 int ri_chkcount;
330
331 char *bufs; /* virtual address of DMA buffer lists */
332 dma_addr_t bufs_dma_addr; /* physical address of buffer descriptors */
333
334 unsigned int rbuf_count;
335 struct slgt_desc *rbufs;
336 unsigned int rbuf_current;
337 unsigned int rbuf_index;
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +0100338 unsigned int rbuf_fill_index;
339 unsigned short rbuf_fill_count;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800340
341 unsigned int tbuf_count;
342 struct slgt_desc *tbufs;
343 unsigned int tbuf_current;
344 unsigned int tbuf_start;
345
346 unsigned char *tmp_rbuf;
347 unsigned int tmp_rbuf_count;
348
349 /* SPPP/Cisco HDLC device parts */
350
351 int netcount;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800352 spinlock_t netlock;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800353#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -0800354 struct net_device *netdev;
355#endif
356
357};
358
359static MGSL_PARAMS default_params = {
360 .mode = MGSL_MODE_HDLC,
361 .loopback = 0,
362 .flags = HDLC_FLAG_UNDERRUN_ABORT15,
363 .encoding = HDLC_ENCODING_NRZI_SPACE,
364 .clock_speed = 0,
365 .addr_filter = 0xff,
366 .crc_type = HDLC_CRC_16_CCITT,
367 .preamble_length = HDLC_PREAMBLE_LENGTH_8BITS,
368 .preamble = HDLC_PREAMBLE_PATTERN_NONE,
369 .data_rate = 9600,
370 .data_bits = 8,
371 .stop_bits = 1,
372 .parity = ASYNC_PARITY_NONE
373};
374
375
376#define BH_RECEIVE 1
377#define BH_TRANSMIT 2
378#define BH_STATUS 4
379#define IO_PIN_SHUTDOWN_LIMIT 100
380
381#define DMABUFSIZE 256
382#define DESC_LIST_SIZE 4096
383
384#define MASK_PARITY BIT1
Paul Fulghum202af6d2006-08-31 21:27:36 -0700385#define MASK_FRAMING BIT0
386#define MASK_BREAK BIT14
Paul Fulghum705b6c72006-01-08 01:02:06 -0800387#define MASK_OVERRUN BIT4
388
389#define GSR 0x00 /* global status */
Paul Fulghum0080b7a2006-03-28 01:56:15 -0800390#define JCR 0x04 /* JTAG control */
391#define IODR 0x08 /* GPIO direction */
392#define IOER 0x0c /* GPIO interrupt enable */
393#define IOVR 0x10 /* GPIO value */
394#define IOSR 0x14 /* GPIO interrupt status */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800395#define TDR 0x80 /* tx data */
396#define RDR 0x80 /* rx data */
397#define TCR 0x82 /* tx control */
398#define TIR 0x84 /* tx idle */
399#define TPR 0x85 /* tx preamble */
400#define RCR 0x86 /* rx control */
401#define VCR 0x88 /* V.24 control */
402#define CCR 0x89 /* clock control */
403#define BDR 0x8a /* baud divisor */
404#define SCR 0x8c /* serial control */
405#define SSR 0x8e /* serial status */
406#define RDCSR 0x90 /* rx DMA control/status */
407#define TDCSR 0x94 /* tx DMA control/status */
408#define RDDAR 0x98 /* rx DMA descriptor address */
409#define TDDAR 0x9c /* tx DMA descriptor address */
Paul Fulghum98072242010-10-27 15:34:22 -0700410#define XSR 0x40 /* extended sync pattern */
411#define XCR 0x44 /* extended control */
Paul Fulghum705b6c72006-01-08 01:02:06 -0800412
413#define RXIDLE BIT14
414#define RXBREAK BIT14
415#define IRQ_TXDATA BIT13
416#define IRQ_TXIDLE BIT12
417#define IRQ_TXUNDER BIT11 /* HDLC */
418#define IRQ_RXDATA BIT10
419#define IRQ_RXIDLE BIT9 /* HDLC */
420#define IRQ_RXBREAK BIT9 /* async */
421#define IRQ_RXOVER BIT8
422#define IRQ_DSR BIT7
423#define IRQ_CTS BIT6
424#define IRQ_DCD BIT5
425#define IRQ_RI BIT4
426#define IRQ_ALL 0x3ff0
427#define IRQ_MASTER BIT0
428
429#define slgt_irq_on(info, mask) \
430 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) | (mask)))
431#define slgt_irq_off(info, mask) \
432 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) & ~(mask)))
433
434static __u8 rd_reg8(struct slgt_info *info, unsigned int addr);
435static void wr_reg8(struct slgt_info *info, unsigned int addr, __u8 value);
436static __u16 rd_reg16(struct slgt_info *info, unsigned int addr);
437static void wr_reg16(struct slgt_info *info, unsigned int addr, __u16 value);
438static __u32 rd_reg32(struct slgt_info *info, unsigned int addr);
439static void wr_reg32(struct slgt_info *info, unsigned int addr, __u32 value);
440
441static void msc_set_vcr(struct slgt_info *info);
442
443static int startup(struct slgt_info *info);
444static int block_til_ready(struct tty_struct *tty, struct file * filp,struct slgt_info *info);
445static void shutdown(struct slgt_info *info);
446static void program_hw(struct slgt_info *info);
447static void change_params(struct slgt_info *info);
448
449static int register_test(struct slgt_info *info);
450static int irq_test(struct slgt_info *info);
451static int loopback_test(struct slgt_info *info);
452static int adapter_test(struct slgt_info *info);
453
454static void reset_adapter(struct slgt_info *info);
455static void reset_port(struct slgt_info *info);
456static void async_mode(struct slgt_info *info);
Paul Fulghumcb10dc92006-09-30 23:27:45 -0700457static void sync_mode(struct slgt_info *info);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800458
459static void rx_stop(struct slgt_info *info);
460static void rx_start(struct slgt_info *info);
461static void reset_rbufs(struct slgt_info *info);
462static void free_rbufs(struct slgt_info *info, unsigned int first, unsigned int last);
463static void rdma_reset(struct slgt_info *info);
Joe Perches0fab6de2008-04-28 02:14:02 -0700464static bool rx_get_frame(struct slgt_info *info);
465static bool rx_get_buf(struct slgt_info *info);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800466
467static void tx_start(struct slgt_info *info);
468static void tx_stop(struct slgt_info *info);
469static void tx_set_idle(struct slgt_info *info);
470static unsigned int free_tbuf_count(struct slgt_info *info);
Paul Fulghum403214d2008-07-22 11:21:55 +0100471static unsigned int tbuf_bytes(struct slgt_info *info);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800472static void reset_tbufs(struct slgt_info *info);
473static void tdma_reset(struct slgt_info *info);
Paul Fulghumde538eb2009-12-09 12:31:39 -0800474static bool tx_load(struct slgt_info *info, const char *buf, unsigned int count);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800475
476static void get_signals(struct slgt_info *info);
477static void set_signals(struct slgt_info *info);
478static void enable_loopback(struct slgt_info *info);
479static void set_rate(struct slgt_info *info, u32 data_rate);
480
481static int bh_action(struct slgt_info *info);
David Howellsc4028952006-11-22 14:57:56 +0000482static void bh_handler(struct work_struct *work);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800483static void bh_transmit(struct slgt_info *info);
484static void isr_serial(struct slgt_info *info);
485static void isr_rdma(struct slgt_info *info);
486static void isr_txeom(struct slgt_info *info, unsigned short status);
487static void isr_tdma(struct slgt_info *info);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800488
489static int alloc_dma_bufs(struct slgt_info *info);
490static void free_dma_bufs(struct slgt_info *info);
491static int alloc_desc(struct slgt_info *info);
492static void free_desc(struct slgt_info *info);
493static int alloc_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count);
494static void free_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count);
495
496static int alloc_tmp_rbuf(struct slgt_info *info);
497static void free_tmp_rbuf(struct slgt_info *info);
498
499static void tx_timeout(unsigned long context);
500static void rx_timeout(unsigned long context);
501
502/*
503 * ioctl handlers
504 */
505static int get_stats(struct slgt_info *info, struct mgsl_icount __user *user_icount);
506static int get_params(struct slgt_info *info, MGSL_PARAMS __user *params);
507static int set_params(struct slgt_info *info, MGSL_PARAMS __user *params);
508static int get_txidle(struct slgt_info *info, int __user *idle_mode);
509static int set_txidle(struct slgt_info *info, int idle_mode);
510static int tx_enable(struct slgt_info *info, int enable);
511static int tx_abort(struct slgt_info *info);
512static int rx_enable(struct slgt_info *info, int enable);
513static int modem_input_wait(struct slgt_info *info,int arg);
514static int wait_mgsl_event(struct slgt_info *info, int __user *mask_ptr);
Alan Cox60b33c12011-02-14 16:26:14 +0000515static int tiocmget(struct tty_struct *tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800516static int tiocmset(struct tty_struct *tty, struct file *file,
517 unsigned int set, unsigned int clear);
Alan Cox9e989662008-07-22 11:18:03 +0100518static int set_break(struct tty_struct *tty, int break_state);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800519static int get_interface(struct slgt_info *info, int __user *if_mode);
520static int set_interface(struct slgt_info *info, int if_mode);
Paul Fulghum0080b7a2006-03-28 01:56:15 -0800521static int set_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
522static int get_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
523static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *gpio);
Paul Fulghum98072242010-10-27 15:34:22 -0700524static int get_xsync(struct slgt_info *info, int __user *if_mode);
525static int set_xsync(struct slgt_info *info, int if_mode);
526static int get_xctrl(struct slgt_info *info, int __user *if_mode);
527static int set_xctrl(struct slgt_info *info, int if_mode);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800528
529/*
530 * driver functions
531 */
532static void add_device(struct slgt_info *info);
533static void device_init(int adapter_num, struct pci_dev *pdev);
534static int claim_resources(struct slgt_info *info);
535static void release_resources(struct slgt_info *info);
536
537/*
538 * DEBUG OUTPUT CODE
539 */
540#ifndef DBGINFO
541#define DBGINFO(fmt)
542#endif
543#ifndef DBGERR
544#define DBGERR(fmt)
545#endif
546#ifndef DBGBH
547#define DBGBH(fmt)
548#endif
549#ifndef DBGISR
550#define DBGISR(fmt)
551#endif
552
553#ifdef DBGDATA
554static void trace_block(struct slgt_info *info, const char *data, int count, const char *label)
555{
556 int i;
557 int linecount;
558 printk("%s %s data:\n",info->device_name, label);
559 while(count) {
560 linecount = (count > 16) ? 16 : count;
561 for(i=0; i < linecount; i++)
562 printk("%02X ",(unsigned char)data[i]);
563 for(;i<17;i++)
564 printk(" ");
565 for(i=0;i<linecount;i++) {
566 if (data[i]>=040 && data[i]<=0176)
567 printk("%c",data[i]);
568 else
569 printk(".");
570 }
571 printk("\n");
572 data += linecount;
573 count -= linecount;
574 }
575}
576#else
577#define DBGDATA(info, buf, size, label)
578#endif
579
580#ifdef DBGTBUF
581static void dump_tbufs(struct slgt_info *info)
582{
583 int i;
584 printk("tbuf_current=%d\n", info->tbuf_current);
585 for (i=0 ; i < info->tbuf_count ; i++) {
586 printk("%d: count=%04X status=%04X\n",
587 i, le16_to_cpu(info->tbufs[i].count), le16_to_cpu(info->tbufs[i].status));
588 }
589}
590#else
591#define DBGTBUF(info)
592#endif
593
594#ifdef DBGRBUF
595static void dump_rbufs(struct slgt_info *info)
596{
597 int i;
598 printk("rbuf_current=%d\n", info->rbuf_current);
599 for (i=0 ; i < info->rbuf_count ; i++) {
600 printk("%d: count=%04X status=%04X\n",
601 i, le16_to_cpu(info->rbufs[i].count), le16_to_cpu(info->rbufs[i].status));
602 }
603}
604#else
605#define DBGRBUF(info)
606#endif
607
608static inline int sanity_check(struct slgt_info *info, char *devname, const char *name)
609{
610#ifdef SANITY_CHECK
611 if (!info) {
612 printk("null struct slgt_info for (%s) in %s\n", devname, name);
613 return 1;
614 }
615 if (info->magic != MGSL_MAGIC) {
616 printk("bad magic number struct slgt_info (%s) in %s\n", devname, name);
617 return 1;
618 }
619#else
620 if (!info)
621 return 1;
622#endif
623 return 0;
624}
625
626/**
627 * line discipline callback wrappers
628 *
629 * The wrappers maintain line discipline references
630 * while calling into the line discipline.
631 *
632 * ldisc_receive_buf - pass receive data to line discipline
633 */
634static void ldisc_receive_buf(struct tty_struct *tty,
635 const __u8 *data, char *flags, int count)
636{
637 struct tty_ldisc *ld;
638 if (!tty)
639 return;
640 ld = tty_ldisc_ref(tty);
641 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100642 if (ld->ops->receive_buf)
643 ld->ops->receive_buf(tty, data, flags, count);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800644 tty_ldisc_deref(ld);
645 }
646}
647
648/* tty callbacks */
649
650static int open(struct tty_struct *tty, struct file *filp)
651{
652 struct slgt_info *info;
653 int retval, line;
654 unsigned long flags;
655
656 line = tty->index;
657 if ((line < 0) || (line >= slgt_device_count)) {
658 DBGERR(("%s: open with invalid line #%d.\n", driver_name, line));
659 return -ENODEV;
660 }
661
662 info = slgt_device_list;
663 while(info && info->line != line)
664 info = info->next_device;
665 if (sanity_check(info, tty->name, "open"))
666 return -ENODEV;
667 if (info->init_error) {
668 DBGERR(("%s init error=%d\n", info->device_name, info->init_error));
669 return -ENODEV;
670 }
671
672 tty->driver_data = info;
Alan Cox8fb06c72008-07-16 21:56:46 +0100673 info->port.tty = tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800674
Alan Cox8fb06c72008-07-16 21:56:46 +0100675 DBGINFO(("%s open, old ref count = %d\n", info->device_name, info->port.count));
Paul Fulghum705b6c72006-01-08 01:02:06 -0800676
677 /* If port is closing, signal caller to try again */
Alan Cox8fb06c72008-07-16 21:56:46 +0100678 if (tty_hung_up_p(filp) || info->port.flags & ASYNC_CLOSING){
679 if (info->port.flags & ASYNC_CLOSING)
680 interruptible_sleep_on(&info->port.close_wait);
681 retval = ((info->port.flags & ASYNC_HUP_NOTIFY) ?
Paul Fulghum705b6c72006-01-08 01:02:06 -0800682 -EAGAIN : -ERESTARTSYS);
683 goto cleanup;
684 }
685
Alan Coxa360fae2010-06-01 22:52:50 +0200686 mutex_lock(&info->port.mutex);
Alan Cox8fb06c72008-07-16 21:56:46 +0100687 info->port.tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800688
689 spin_lock_irqsave(&info->netlock, flags);
690 if (info->netcount) {
691 retval = -EBUSY;
692 spin_unlock_irqrestore(&info->netlock, flags);
Alan Coxa360fae2010-06-01 22:52:50 +0200693 mutex_unlock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800694 goto cleanup;
695 }
Alan Cox8fb06c72008-07-16 21:56:46 +0100696 info->port.count++;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800697 spin_unlock_irqrestore(&info->netlock, flags);
698
Alan Cox8fb06c72008-07-16 21:56:46 +0100699 if (info->port.count == 1) {
Paul Fulghum705b6c72006-01-08 01:02:06 -0800700 /* 1st open on this device, init hardware */
701 retval = startup(info);
Dan Carpenter80d04f22010-08-11 20:01:46 +0200702 if (retval < 0) {
703 mutex_unlock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800704 goto cleanup;
Dan Carpenter80d04f22010-08-11 20:01:46 +0200705 }
Paul Fulghum705b6c72006-01-08 01:02:06 -0800706 }
Alan Coxa360fae2010-06-01 22:52:50 +0200707 mutex_unlock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800708 retval = block_til_ready(tty, filp, info);
709 if (retval) {
710 DBGINFO(("%s block_til_ready rc=%d\n", info->device_name, retval));
711 goto cleanup;
712 }
713
714 retval = 0;
715
716cleanup:
717 if (retval) {
718 if (tty->count == 1)
Alan Cox8fb06c72008-07-16 21:56:46 +0100719 info->port.tty = NULL; /* tty layer will release tty struct */
720 if(info->port.count)
721 info->port.count--;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800722 }
723
724 DBGINFO(("%s open rc=%d\n", info->device_name, retval));
725 return retval;
726}
727
728static void close(struct tty_struct *tty, struct file *filp)
729{
730 struct slgt_info *info = tty->driver_data;
731
732 if (sanity_check(info, tty->name, "close"))
733 return;
Alan Cox8fb06c72008-07-16 21:56:46 +0100734 DBGINFO(("%s close entry, count=%d\n", info->device_name, info->port.count));
Paul Fulghum705b6c72006-01-08 01:02:06 -0800735
Alan Coxa6614992009-01-02 13:46:50 +0000736 if (tty_port_close_start(&info->port, tty, filp) == 0)
Paul Fulghum705b6c72006-01-08 01:02:06 -0800737 goto cleanup;
738
Alan Coxa360fae2010-06-01 22:52:50 +0200739 mutex_lock(&info->port.mutex);
Alan Cox8fb06c72008-07-16 21:56:46 +0100740 if (info->port.flags & ASYNC_INITIALIZED)
Paul Fulghum705b6c72006-01-08 01:02:06 -0800741 wait_until_sent(tty, info->timeout);
Alan Cox978e5952008-04-30 00:53:59 -0700742 flush_buffer(tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800743 tty_ldisc_flush(tty);
744
745 shutdown(info);
Alan Coxa360fae2010-06-01 22:52:50 +0200746 mutex_unlock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800747
Alan Coxa6614992009-01-02 13:46:50 +0000748 tty_port_close_end(&info->port, tty);
Alan Cox8fb06c72008-07-16 21:56:46 +0100749 info->port.tty = NULL;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800750cleanup:
Alan Cox8fb06c72008-07-16 21:56:46 +0100751 DBGINFO(("%s close exit, count=%d\n", tty->driver->name, info->port.count));
Paul Fulghum705b6c72006-01-08 01:02:06 -0800752}
753
754static void hangup(struct tty_struct *tty)
755{
756 struct slgt_info *info = tty->driver_data;
Alan Coxa360fae2010-06-01 22:52:50 +0200757 unsigned long flags;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800758
759 if (sanity_check(info, tty->name, "hangup"))
760 return;
761 DBGINFO(("%s hangup\n", info->device_name));
762
763 flush_buffer(tty);
Alan Coxa360fae2010-06-01 22:52:50 +0200764
765 mutex_lock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800766 shutdown(info);
767
Alan Coxa360fae2010-06-01 22:52:50 +0200768 spin_lock_irqsave(&info->port.lock, flags);
Alan Cox8fb06c72008-07-16 21:56:46 +0100769 info->port.count = 0;
770 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
771 info->port.tty = NULL;
Alan Coxa360fae2010-06-01 22:52:50 +0200772 spin_unlock_irqrestore(&info->port.lock, flags);
773 mutex_unlock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800774
Alan Cox8fb06c72008-07-16 21:56:46 +0100775 wake_up_interruptible(&info->port.open_wait);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800776}
777
Alan Cox606d0992006-12-08 02:38:45 -0800778static void set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Paul Fulghum705b6c72006-01-08 01:02:06 -0800779{
780 struct slgt_info *info = tty->driver_data;
781 unsigned long flags;
782
783 DBGINFO(("%s set_termios\n", tty->driver->name));
784
Paul Fulghum705b6c72006-01-08 01:02:06 -0800785 change_params(info);
786
787 /* Handle transition to B0 status */
788 if (old_termios->c_cflag & CBAUD &&
789 !(tty->termios->c_cflag & CBAUD)) {
790 info->signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
791 spin_lock_irqsave(&info->lock,flags);
792 set_signals(info);
793 spin_unlock_irqrestore(&info->lock,flags);
794 }
795
796 /* Handle transition away from B0 status */
797 if (!(old_termios->c_cflag & CBAUD) &&
798 tty->termios->c_cflag & CBAUD) {
799 info->signals |= SerialSignal_DTR;
800 if (!(tty->termios->c_cflag & CRTSCTS) ||
801 !test_bit(TTY_THROTTLED, &tty->flags)) {
802 info->signals |= SerialSignal_RTS;
803 }
804 spin_lock_irqsave(&info->lock,flags);
805 set_signals(info);
806 spin_unlock_irqrestore(&info->lock,flags);
807 }
808
809 /* Handle turning off CRTSCTS */
810 if (old_termios->c_cflag & CRTSCTS &&
811 !(tty->termios->c_cflag & CRTSCTS)) {
812 tty->hw_stopped = 0;
813 tx_release(tty);
814 }
815}
816
Paul Fulghumce892942009-06-24 18:34:51 +0100817static void update_tx_timer(struct slgt_info *info)
818{
819 /*
820 * use worst case speed of 1200bps to calculate transmit timeout
821 * based on data in buffers (tbuf_bytes) and FIFO (128 bytes)
822 */
823 if (info->params.mode == MGSL_MODE_HDLC) {
824 int timeout = (tbuf_bytes(info) * 7) + 1000;
825 mod_timer(&info->tx_timer, jiffies + msecs_to_jiffies(timeout));
826 }
827}
828
Paul Fulghum705b6c72006-01-08 01:02:06 -0800829static int write(struct tty_struct *tty,
830 const unsigned char *buf, int count)
831{
832 int ret = 0;
833 struct slgt_info *info = tty->driver_data;
834 unsigned long flags;
835
836 if (sanity_check(info, tty->name, "write"))
Paul Fulghumde538eb2009-12-09 12:31:39 -0800837 return -EIO;
838
Paul Fulghum705b6c72006-01-08 01:02:06 -0800839 DBGINFO(("%s write count=%d\n", info->device_name, count));
840
Paul Fulghumde538eb2009-12-09 12:31:39 -0800841 if (!info->tx_buf || (count > info->max_frame_size))
842 return -EIO;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800843
Paul Fulghumde538eb2009-12-09 12:31:39 -0800844 if (!count || tty->stopped || tty->hw_stopped)
845 return 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800846
Paul Fulghumde538eb2009-12-09 12:31:39 -0800847 spin_lock_irqsave(&info->lock, flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800848
Paul Fulghumde538eb2009-12-09 12:31:39 -0800849 if (info->tx_count) {
Paul Fulghum8a38c282008-07-22 11:21:28 +0100850 /* send accumulated data from send_char() */
Paul Fulghumde538eb2009-12-09 12:31:39 -0800851 if (!tx_load(info, info->tx_buf, info->tx_count))
852 goto cleanup;
853 info->tx_count = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800854 }
855
Paul Fulghumde538eb2009-12-09 12:31:39 -0800856 if (tx_load(info, buf, count))
857 ret = count;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800858
859cleanup:
Paul Fulghumde538eb2009-12-09 12:31:39 -0800860 spin_unlock_irqrestore(&info->lock, flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800861 DBGINFO(("%s write rc=%d\n", info->device_name, ret));
862 return ret;
863}
864
Alan Cox55da7782008-04-30 00:54:07 -0700865static int put_char(struct tty_struct *tty, unsigned char ch)
Paul Fulghum705b6c72006-01-08 01:02:06 -0800866{
867 struct slgt_info *info = tty->driver_data;
868 unsigned long flags;
Andrew Morton6c82c412008-05-12 14:02:34 -0700869 int ret = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800870
871 if (sanity_check(info, tty->name, "put_char"))
Alan Cox55da7782008-04-30 00:54:07 -0700872 return 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800873 DBGINFO(("%s put_char(%d)\n", info->device_name, ch));
Eric Sesterhenn326f28e92006-06-25 05:48:48 -0700874 if (!info->tx_buf)
Alan Cox55da7782008-04-30 00:54:07 -0700875 return 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800876 spin_lock_irqsave(&info->lock,flags);
Paul Fulghumde538eb2009-12-09 12:31:39 -0800877 if (info->tx_count < info->max_frame_size) {
Paul Fulghum705b6c72006-01-08 01:02:06 -0800878 info->tx_buf[info->tx_count++] = ch;
Alan Cox55da7782008-04-30 00:54:07 -0700879 ret = 1;
880 }
Paul Fulghum705b6c72006-01-08 01:02:06 -0800881 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox55da7782008-04-30 00:54:07 -0700882 return ret;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800883}
884
885static void send_xchar(struct tty_struct *tty, char ch)
886{
887 struct slgt_info *info = tty->driver_data;
888 unsigned long flags;
889
890 if (sanity_check(info, tty->name, "send_xchar"))
891 return;
892 DBGINFO(("%s send_xchar(%d)\n", info->device_name, ch));
893 info->x_char = ch;
894 if (ch) {
895 spin_lock_irqsave(&info->lock,flags);
896 if (!info->tx_enabled)
897 tx_start(info);
898 spin_unlock_irqrestore(&info->lock,flags);
899 }
900}
901
902static void wait_until_sent(struct tty_struct *tty, int timeout)
903{
904 struct slgt_info *info = tty->driver_data;
905 unsigned long orig_jiffies, char_time;
906
907 if (!info )
908 return;
909 if (sanity_check(info, tty->name, "wait_until_sent"))
910 return;
911 DBGINFO(("%s wait_until_sent entry\n", info->device_name));
Alan Cox8fb06c72008-07-16 21:56:46 +0100912 if (!(info->port.flags & ASYNC_INITIALIZED))
Paul Fulghum705b6c72006-01-08 01:02:06 -0800913 goto exit;
914
915 orig_jiffies = jiffies;
916
917 /* Set check interval to 1/5 of estimated time to
918 * send a character, and make it at least 1. The check
919 * interval should also be less than the timeout.
920 * Note: use tight timings here to satisfy the NIST-PCTS.
921 */
922
923 if (info->params.data_rate) {
924 char_time = info->timeout/(32 * 5);
925 if (!char_time)
926 char_time++;
927 } else
928 char_time = 1;
929
930 if (timeout)
931 char_time = min_t(unsigned long, char_time, timeout);
932
933 while (info->tx_active) {
934 msleep_interruptible(jiffies_to_msecs(char_time));
935 if (signal_pending(current))
936 break;
937 if (timeout && time_after(jiffies, orig_jiffies + timeout))
938 break;
939 }
Paul Fulghum705b6c72006-01-08 01:02:06 -0800940exit:
941 DBGINFO(("%s wait_until_sent exit\n", info->device_name));
942}
943
944static int write_room(struct tty_struct *tty)
945{
946 struct slgt_info *info = tty->driver_data;
947 int ret;
948
949 if (sanity_check(info, tty->name, "write_room"))
950 return 0;
951 ret = (info->tx_active) ? 0 : HDLC_MAX_FRAME_SIZE;
952 DBGINFO(("%s write_room=%d\n", info->device_name, ret));
953 return ret;
954}
955
956static void flush_chars(struct tty_struct *tty)
957{
958 struct slgt_info *info = tty->driver_data;
959 unsigned long flags;
960
961 if (sanity_check(info, tty->name, "flush_chars"))
962 return;
963 DBGINFO(("%s flush_chars entry tx_count=%d\n", info->device_name, info->tx_count));
964
965 if (info->tx_count <= 0 || tty->stopped ||
966 tty->hw_stopped || !info->tx_buf)
967 return;
968
969 DBGINFO(("%s flush_chars start transmit\n", info->device_name));
970
971 spin_lock_irqsave(&info->lock,flags);
Paul Fulghumde538eb2009-12-09 12:31:39 -0800972 if (info->tx_count && tx_load(info, info->tx_buf, info->tx_count))
973 info->tx_count = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -0800974 spin_unlock_irqrestore(&info->lock,flags);
975}
976
977static void flush_buffer(struct tty_struct *tty)
978{
979 struct slgt_info *info = tty->driver_data;
980 unsigned long flags;
981
982 if (sanity_check(info, tty->name, "flush_buffer"))
983 return;
984 DBGINFO(("%s flush_buffer\n", info->device_name));
985
Paul Fulghumde538eb2009-12-09 12:31:39 -0800986 spin_lock_irqsave(&info->lock, flags);
987 info->tx_count = 0;
988 spin_unlock_irqrestore(&info->lock, flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -0800989
Paul Fulghum705b6c72006-01-08 01:02:06 -0800990 tty_wakeup(tty);
991}
992
993/*
994 * throttle (stop) transmitter
995 */
996static void tx_hold(struct tty_struct *tty)
997{
998 struct slgt_info *info = tty->driver_data;
999 unsigned long flags;
1000
1001 if (sanity_check(info, tty->name, "tx_hold"))
1002 return;
1003 DBGINFO(("%s tx_hold\n", info->device_name));
1004 spin_lock_irqsave(&info->lock,flags);
1005 if (info->tx_enabled && info->params.mode == MGSL_MODE_ASYNC)
1006 tx_stop(info);
1007 spin_unlock_irqrestore(&info->lock,flags);
1008}
1009
1010/*
1011 * release (start) transmitter
1012 */
1013static void tx_release(struct tty_struct *tty)
1014{
1015 struct slgt_info *info = tty->driver_data;
1016 unsigned long flags;
1017
1018 if (sanity_check(info, tty->name, "tx_release"))
1019 return;
1020 DBGINFO(("%s tx_release\n", info->device_name));
Paul Fulghumde538eb2009-12-09 12:31:39 -08001021 spin_lock_irqsave(&info->lock, flags);
1022 if (info->tx_count && tx_load(info, info->tx_buf, info->tx_count))
1023 info->tx_count = 0;
1024 spin_unlock_irqrestore(&info->lock, flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001025}
1026
1027/*
1028 * Service an IOCTL request
1029 *
1030 * Arguments
1031 *
1032 * tty pointer to tty instance data
1033 * file pointer to associated file object for device
1034 * cmd IOCTL command code
1035 * arg command argument/context
1036 *
1037 * Return 0 if success, otherwise error code
1038 */
1039static int ioctl(struct tty_struct *tty, struct file *file,
1040 unsigned int cmd, unsigned long arg)
1041{
1042 struct slgt_info *info = tty->driver_data;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001043 void __user *argp = (void __user *)arg;
Alan Cox1f8cabb2008-04-30 00:53:24 -07001044 int ret;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001045
1046 if (sanity_check(info, tty->name, "ioctl"))
1047 return -ENODEV;
1048 DBGINFO(("%s ioctl() cmd=%08X\n", info->device_name, cmd));
1049
1050 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
Alan Cox05871022010-09-16 18:21:52 +01001051 (cmd != TIOCMIWAIT)) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08001052 if (tty->flags & (1 << TTY_IO_ERROR))
1053 return -EIO;
1054 }
1055
Alan Coxf6025012010-06-01 22:52:46 +02001056 switch (cmd) {
1057 case MGSL_IOCWAITEVENT:
1058 return wait_mgsl_event(info, argp);
1059 case TIOCMIWAIT:
1060 return modem_input_wait(info,(int)arg);
Alan Coxf6025012010-06-01 22:52:46 +02001061 case MGSL_IOCSGPIO:
1062 return set_gpio(info, argp);
1063 case MGSL_IOCGGPIO:
1064 return get_gpio(info, argp);
1065 case MGSL_IOCWAITGPIO:
1066 return wait_gpio(info, argp);
Paul Fulghum98072242010-10-27 15:34:22 -07001067 case MGSL_IOCGXSYNC:
1068 return get_xsync(info, argp);
1069 case MGSL_IOCSXSYNC:
1070 return set_xsync(info, (int)arg);
1071 case MGSL_IOCGXCTRL:
1072 return get_xctrl(info, argp);
1073 case MGSL_IOCSXCTRL:
1074 return set_xctrl(info, (int)arg);
Alan Coxf6025012010-06-01 22:52:46 +02001075 }
1076 mutex_lock(&info->port.mutex);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001077 switch (cmd) {
1078 case MGSL_IOCGPARAMS:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001079 ret = get_params(info, argp);
1080 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001081 case MGSL_IOCSPARAMS:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001082 ret = set_params(info, argp);
1083 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001084 case MGSL_IOCGTXIDLE:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001085 ret = get_txidle(info, argp);
1086 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001087 case MGSL_IOCSTXIDLE:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001088 ret = set_txidle(info, (int)arg);
1089 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001090 case MGSL_IOCTXENABLE:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001091 ret = tx_enable(info, (int)arg);
1092 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001093 case MGSL_IOCRXENABLE:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001094 ret = rx_enable(info, (int)arg);
1095 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001096 case MGSL_IOCTXABORT:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001097 ret = tx_abort(info);
1098 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001099 case MGSL_IOCGSTATS:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001100 ret = get_stats(info, argp);
1101 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001102 case MGSL_IOCGIF:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001103 ret = get_interface(info, argp);
1104 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001105 case MGSL_IOCSIF:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001106 ret = set_interface(info,(int)arg);
1107 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001108 default:
Alan Cox1f8cabb2008-04-30 00:53:24 -07001109 ret = -ENOIOCTLCMD;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001110 }
Alan Coxf6025012010-06-01 22:52:46 +02001111 mutex_unlock(&info->port.mutex);
Alan Cox1f8cabb2008-04-30 00:53:24 -07001112 return ret;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001113}
1114
Alan Cox05871022010-09-16 18:21:52 +01001115static int get_icount(struct tty_struct *tty,
1116 struct serial_icounter_struct *icount)
1117
1118{
1119 struct slgt_info *info = tty->driver_data;
1120 struct mgsl_icount cnow; /* kernel counter temps */
1121 unsigned long flags;
1122
1123 spin_lock_irqsave(&info->lock,flags);
1124 cnow = info->icount;
1125 spin_unlock_irqrestore(&info->lock,flags);
1126
1127 icount->cts = cnow.cts;
1128 icount->dsr = cnow.dsr;
1129 icount->rng = cnow.rng;
1130 icount->dcd = cnow.dcd;
1131 icount->rx = cnow.rx;
1132 icount->tx = cnow.tx;
1133 icount->frame = cnow.frame;
1134 icount->overrun = cnow.overrun;
1135 icount->parity = cnow.parity;
1136 icount->brk = cnow.brk;
1137 icount->buf_overrun = cnow.buf_overrun;
1138
1139 return 0;
1140}
1141
Paul Fulghum705b6c72006-01-08 01:02:06 -08001142/*
Paul Fulghum2acdb162007-05-10 22:22:43 -07001143 * support for 32 bit ioctl calls on 64 bit systems
1144 */
1145#ifdef CONFIG_COMPAT
1146static long get_params32(struct slgt_info *info, struct MGSL_PARAMS32 __user *user_params)
1147{
1148 struct MGSL_PARAMS32 tmp_params;
1149
1150 DBGINFO(("%s get_params32\n", info->device_name));
Vasiliy Kulikoved77ed62010-10-27 15:34:22 -07001151 memset(&tmp_params, 0, sizeof(tmp_params));
Paul Fulghum2acdb162007-05-10 22:22:43 -07001152 tmp_params.mode = (compat_ulong_t)info->params.mode;
1153 tmp_params.loopback = info->params.loopback;
1154 tmp_params.flags = info->params.flags;
1155 tmp_params.encoding = info->params.encoding;
1156 tmp_params.clock_speed = (compat_ulong_t)info->params.clock_speed;
1157 tmp_params.addr_filter = info->params.addr_filter;
1158 tmp_params.crc_type = info->params.crc_type;
1159 tmp_params.preamble_length = info->params.preamble_length;
1160 tmp_params.preamble = info->params.preamble;
1161 tmp_params.data_rate = (compat_ulong_t)info->params.data_rate;
1162 tmp_params.data_bits = info->params.data_bits;
1163 tmp_params.stop_bits = info->params.stop_bits;
1164 tmp_params.parity = info->params.parity;
1165 if (copy_to_user(user_params, &tmp_params, sizeof(struct MGSL_PARAMS32)))
1166 return -EFAULT;
1167 return 0;
1168}
1169
1170static long set_params32(struct slgt_info *info, struct MGSL_PARAMS32 __user *new_params)
1171{
1172 struct MGSL_PARAMS32 tmp_params;
1173
1174 DBGINFO(("%s set_params32\n", info->device_name));
1175 if (copy_from_user(&tmp_params, new_params, sizeof(struct MGSL_PARAMS32)))
1176 return -EFAULT;
1177
1178 spin_lock(&info->lock);
Paul Fulghum1f807692009-04-02 16:58:30 -07001179 if (tmp_params.mode == MGSL_MODE_BASE_CLOCK) {
1180 info->base_clock = tmp_params.clock_speed;
1181 } else {
1182 info->params.mode = tmp_params.mode;
1183 info->params.loopback = tmp_params.loopback;
1184 info->params.flags = tmp_params.flags;
1185 info->params.encoding = tmp_params.encoding;
1186 info->params.clock_speed = tmp_params.clock_speed;
1187 info->params.addr_filter = tmp_params.addr_filter;
1188 info->params.crc_type = tmp_params.crc_type;
1189 info->params.preamble_length = tmp_params.preamble_length;
1190 info->params.preamble = tmp_params.preamble;
1191 info->params.data_rate = tmp_params.data_rate;
1192 info->params.data_bits = tmp_params.data_bits;
1193 info->params.stop_bits = tmp_params.stop_bits;
1194 info->params.parity = tmp_params.parity;
1195 }
Paul Fulghum2acdb162007-05-10 22:22:43 -07001196 spin_unlock(&info->lock);
1197
Paul Fulghum1f807692009-04-02 16:58:30 -07001198 program_hw(info);
Paul Fulghum2acdb162007-05-10 22:22:43 -07001199
1200 return 0;
1201}
1202
1203static long slgt_compat_ioctl(struct tty_struct *tty, struct file *file,
1204 unsigned int cmd, unsigned long arg)
1205{
1206 struct slgt_info *info = tty->driver_data;
1207 int rc = -ENOIOCTLCMD;
1208
1209 if (sanity_check(info, tty->name, "compat_ioctl"))
1210 return -ENODEV;
1211 DBGINFO(("%s compat_ioctl() cmd=%08X\n", info->device_name, cmd));
1212
1213 switch (cmd) {
1214
1215 case MGSL_IOCSPARAMS32:
1216 rc = set_params32(info, compat_ptr(arg));
1217 break;
1218
1219 case MGSL_IOCGPARAMS32:
1220 rc = get_params32(info, compat_ptr(arg));
1221 break;
1222
1223 case MGSL_IOCGPARAMS:
1224 case MGSL_IOCSPARAMS:
1225 case MGSL_IOCGTXIDLE:
1226 case MGSL_IOCGSTATS:
1227 case MGSL_IOCWAITEVENT:
1228 case MGSL_IOCGIF:
1229 case MGSL_IOCSGPIO:
1230 case MGSL_IOCGGPIO:
1231 case MGSL_IOCWAITGPIO:
Paul Fulghum98072242010-10-27 15:34:22 -07001232 case MGSL_IOCGXSYNC:
1233 case MGSL_IOCGXCTRL:
Paul Fulghum2acdb162007-05-10 22:22:43 -07001234 case MGSL_IOCSTXIDLE:
1235 case MGSL_IOCTXENABLE:
1236 case MGSL_IOCRXENABLE:
1237 case MGSL_IOCTXABORT:
1238 case TIOCMIWAIT:
1239 case MGSL_IOCSIF:
Paul Fulghum98072242010-10-27 15:34:22 -07001240 case MGSL_IOCSXSYNC:
1241 case MGSL_IOCSXCTRL:
Paul Fulghum2acdb162007-05-10 22:22:43 -07001242 rc = ioctl(tty, file, cmd, arg);
1243 break;
1244 }
1245
1246 DBGINFO(("%s compat_ioctl() cmd=%08X rc=%d\n", info->device_name, cmd, rc));
1247 return rc;
1248}
1249#else
1250#define slgt_compat_ioctl NULL
1251#endif /* ifdef CONFIG_COMPAT */
1252
1253/*
Paul Fulghum705b6c72006-01-08 01:02:06 -08001254 * proc fs support
1255 */
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001256static inline void line_info(struct seq_file *m, struct slgt_info *info)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001257{
1258 char stat_buf[30];
Paul Fulghum705b6c72006-01-08 01:02:06 -08001259 unsigned long flags;
1260
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001261 seq_printf(m, "%s: IO=%08X IRQ=%d MaxFrameSize=%u\n",
Paul Fulghum705b6c72006-01-08 01:02:06 -08001262 info->device_name, info->phys_reg_addr,
1263 info->irq_level, info->max_frame_size);
1264
1265 /* output current serial signal states */
1266 spin_lock_irqsave(&info->lock,flags);
1267 get_signals(info);
1268 spin_unlock_irqrestore(&info->lock,flags);
1269
1270 stat_buf[0] = 0;
1271 stat_buf[1] = 0;
1272 if (info->signals & SerialSignal_RTS)
1273 strcat(stat_buf, "|RTS");
1274 if (info->signals & SerialSignal_CTS)
1275 strcat(stat_buf, "|CTS");
1276 if (info->signals & SerialSignal_DTR)
1277 strcat(stat_buf, "|DTR");
1278 if (info->signals & SerialSignal_DSR)
1279 strcat(stat_buf, "|DSR");
1280 if (info->signals & SerialSignal_DCD)
1281 strcat(stat_buf, "|CD");
1282 if (info->signals & SerialSignal_RI)
1283 strcat(stat_buf, "|RI");
1284
1285 if (info->params.mode != MGSL_MODE_ASYNC) {
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001286 seq_printf(m, "\tHDLC txok:%d rxok:%d",
Paul Fulghum705b6c72006-01-08 01:02:06 -08001287 info->icount.txok, info->icount.rxok);
1288 if (info->icount.txunder)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001289 seq_printf(m, " txunder:%d", info->icount.txunder);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001290 if (info->icount.txabort)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001291 seq_printf(m, " txabort:%d", info->icount.txabort);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001292 if (info->icount.rxshort)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001293 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001294 if (info->icount.rxlong)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001295 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001296 if (info->icount.rxover)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001297 seq_printf(m, " rxover:%d", info->icount.rxover);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001298 if (info->icount.rxcrc)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001299 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001300 } else {
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001301 seq_printf(m, "\tASYNC tx:%d rx:%d",
Paul Fulghum705b6c72006-01-08 01:02:06 -08001302 info->icount.tx, info->icount.rx);
1303 if (info->icount.frame)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001304 seq_printf(m, " fe:%d", info->icount.frame);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001305 if (info->icount.parity)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001306 seq_printf(m, " pe:%d", info->icount.parity);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001307 if (info->icount.brk)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001308 seq_printf(m, " brk:%d", info->icount.brk);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001309 if (info->icount.overrun)
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001310 seq_printf(m, " oe:%d", info->icount.overrun);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001311 }
1312
1313 /* Append serial signal status to end */
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001314 seq_printf(m, " %s\n", stat_buf+1);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001315
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001316 seq_printf(m, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Paul Fulghum705b6c72006-01-08 01:02:06 -08001317 info->tx_active,info->bh_requested,info->bh_running,
1318 info->pending_bh);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001319}
1320
1321/* Called to print information about devices
1322 */
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001323static int synclink_gt_proc_show(struct seq_file *m, void *v)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001324{
Paul Fulghum705b6c72006-01-08 01:02:06 -08001325 struct slgt_info *info;
1326
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001327 seq_puts(m, "synclink_gt driver\n");
Paul Fulghum705b6c72006-01-08 01:02:06 -08001328
1329 info = slgt_device_list;
1330 while( info ) {
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001331 line_info(m, info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001332 info = info->next_device;
1333 }
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001334 return 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001335}
1336
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07001337static int synclink_gt_proc_open(struct inode *inode, struct file *file)
1338{
1339 return single_open(file, synclink_gt_proc_show, NULL);
1340}
1341
1342static const struct file_operations synclink_gt_proc_fops = {
1343 .owner = THIS_MODULE,
1344 .open = synclink_gt_proc_open,
1345 .read = seq_read,
1346 .llseek = seq_lseek,
1347 .release = single_release,
1348};
1349
Paul Fulghum705b6c72006-01-08 01:02:06 -08001350/*
1351 * return count of bytes in transmit buffer
1352 */
1353static int chars_in_buffer(struct tty_struct *tty)
1354{
1355 struct slgt_info *info = tty->driver_data;
Paul Fulghum403214d2008-07-22 11:21:55 +01001356 int count;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001357 if (sanity_check(info, tty->name, "chars_in_buffer"))
1358 return 0;
Paul Fulghum403214d2008-07-22 11:21:55 +01001359 count = tbuf_bytes(info);
1360 DBGINFO(("%s chars_in_buffer()=%d\n", info->device_name, count));
1361 return count;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001362}
1363
1364/*
1365 * signal remote device to throttle send data (our receive data)
1366 */
1367static void throttle(struct tty_struct * tty)
1368{
1369 struct slgt_info *info = tty->driver_data;
1370 unsigned long flags;
1371
1372 if (sanity_check(info, tty->name, "throttle"))
1373 return;
1374 DBGINFO(("%s throttle\n", info->device_name));
1375 if (I_IXOFF(tty))
1376 send_xchar(tty, STOP_CHAR(tty));
1377 if (tty->termios->c_cflag & CRTSCTS) {
1378 spin_lock_irqsave(&info->lock,flags);
1379 info->signals &= ~SerialSignal_RTS;
1380 set_signals(info);
1381 spin_unlock_irqrestore(&info->lock,flags);
1382 }
1383}
1384
1385/*
1386 * signal remote device to stop throttling send data (our receive data)
1387 */
1388static void unthrottle(struct tty_struct * tty)
1389{
1390 struct slgt_info *info = tty->driver_data;
1391 unsigned long flags;
1392
1393 if (sanity_check(info, tty->name, "unthrottle"))
1394 return;
1395 DBGINFO(("%s unthrottle\n", info->device_name));
1396 if (I_IXOFF(tty)) {
1397 if (info->x_char)
1398 info->x_char = 0;
1399 else
1400 send_xchar(tty, START_CHAR(tty));
1401 }
1402 if (tty->termios->c_cflag & CRTSCTS) {
1403 spin_lock_irqsave(&info->lock,flags);
1404 info->signals |= SerialSignal_RTS;
1405 set_signals(info);
1406 spin_unlock_irqrestore(&info->lock,flags);
1407 }
1408}
1409
1410/*
1411 * set or clear transmit break condition
1412 * break_state -1=set break condition, 0=clear
1413 */
Alan Cox9e989662008-07-22 11:18:03 +01001414static int set_break(struct tty_struct *tty, int break_state)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001415{
1416 struct slgt_info *info = tty->driver_data;
1417 unsigned short value;
1418 unsigned long flags;
1419
1420 if (sanity_check(info, tty->name, "set_break"))
Alan Cox9e989662008-07-22 11:18:03 +01001421 return -EINVAL;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001422 DBGINFO(("%s set_break(%d)\n", info->device_name, break_state));
1423
1424 spin_lock_irqsave(&info->lock,flags);
1425 value = rd_reg16(info, TCR);
1426 if (break_state == -1)
1427 value |= BIT6;
1428 else
1429 value &= ~BIT6;
1430 wr_reg16(info, TCR, value);
1431 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox9e989662008-07-22 11:18:03 +01001432 return 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001433}
1434
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001435#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08001436
1437/**
1438 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1439 * set encoding and frame check sequence (FCS) options
1440 *
1441 * dev pointer to network device structure
1442 * encoding serial encoding setting
1443 * parity FCS setting
1444 *
1445 * returns 0 if success, otherwise error code
1446 */
1447static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
1448 unsigned short parity)
1449{
1450 struct slgt_info *info = dev_to_port(dev);
1451 unsigned char new_encoding;
1452 unsigned short new_crctype;
1453
1454 /* return error if TTY interface open */
Alan Cox8fb06c72008-07-16 21:56:46 +01001455 if (info->port.count)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001456 return -EBUSY;
1457
1458 DBGINFO(("%s hdlcdev_attach\n", info->device_name));
1459
1460 switch (encoding)
1461 {
1462 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
1463 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
1464 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
1465 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
1466 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
1467 default: return -EINVAL;
1468 }
1469
1470 switch (parity)
1471 {
1472 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
1473 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
1474 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
1475 default: return -EINVAL;
1476 }
1477
1478 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08001479 info->params.crc_type = new_crctype;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001480
1481 /* if network interface up, reprogram hardware */
1482 if (info->netcount)
1483 program_hw(info);
1484
1485 return 0;
1486}
1487
1488/**
1489 * called by generic HDLC layer to send frame
1490 *
1491 * skb socket buffer containing HDLC frame
1492 * dev pointer to network device structure
Paul Fulghum705b6c72006-01-08 01:02:06 -08001493 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00001494static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
1495 struct net_device *dev)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001496{
1497 struct slgt_info *info = dev_to_port(dev);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001498 unsigned long flags;
1499
1500 DBGINFO(("%s hdlc_xmit\n", dev->name));
1501
Paul Fulghumde538eb2009-12-09 12:31:39 -08001502 if (!skb->len)
1503 return NETDEV_TX_OK;
1504
Paul Fulghum705b6c72006-01-08 01:02:06 -08001505 /* stop sending until this frame completes */
1506 netif_stop_queue(dev);
1507
Paul Fulghum705b6c72006-01-08 01:02:06 -08001508 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001509 dev->stats.tx_packets++;
1510 dev->stats.tx_bytes += skb->len;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001511
Paul Fulghum705b6c72006-01-08 01:02:06 -08001512 /* save start time for transmit timeout detection */
1513 dev->trans_start = jiffies;
1514
Paul Fulghumde538eb2009-12-09 12:31:39 -08001515 spin_lock_irqsave(&info->lock, flags);
1516 tx_load(info, skb->data, skb->len);
1517 spin_unlock_irqrestore(&info->lock, flags);
1518
1519 /* done with socket buffer, so free it */
1520 dev_kfree_skb(skb);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001521
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00001522 return NETDEV_TX_OK;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001523}
1524
1525/**
1526 * called by network layer when interface enabled
1527 * claim resources and initialize hardware
1528 *
1529 * dev pointer to network device structure
1530 *
1531 * returns 0 if success, otherwise error code
1532 */
1533static int hdlcdev_open(struct net_device *dev)
1534{
1535 struct slgt_info *info = dev_to_port(dev);
1536 int rc;
1537 unsigned long flags;
1538
Paul Fulghumd4c63b72007-08-22 14:01:50 -07001539 if (!try_module_get(THIS_MODULE))
1540 return -EBUSY;
1541
Paul Fulghum705b6c72006-01-08 01:02:06 -08001542 DBGINFO(("%s hdlcdev_open\n", dev->name));
1543
1544 /* generic HDLC layer open processing */
1545 if ((rc = hdlc_open(dev)))
1546 return rc;
1547
1548 /* arbitrate between network and tty opens */
1549 spin_lock_irqsave(&info->netlock, flags);
Alan Cox8fb06c72008-07-16 21:56:46 +01001550 if (info->port.count != 0 || info->netcount != 0) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08001551 DBGINFO(("%s hdlc_open busy\n", dev->name));
1552 spin_unlock_irqrestore(&info->netlock, flags);
1553 return -EBUSY;
1554 }
1555 info->netcount=1;
1556 spin_unlock_irqrestore(&info->netlock, flags);
1557
1558 /* claim resources and init adapter */
1559 if ((rc = startup(info)) != 0) {
1560 spin_lock_irqsave(&info->netlock, flags);
1561 info->netcount=0;
1562 spin_unlock_irqrestore(&info->netlock, flags);
1563 return rc;
1564 }
1565
1566 /* assert DTR and RTS, apply hardware settings */
1567 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
1568 program_hw(info);
1569
1570 /* enable network layer transmit */
1571 dev->trans_start = jiffies;
1572 netif_start_queue(dev);
1573
1574 /* inform generic HDLC layer of current DCD status */
1575 spin_lock_irqsave(&info->lock, flags);
1576 get_signals(info);
1577 spin_unlock_irqrestore(&info->lock, flags);
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001578 if (info->signals & SerialSignal_DCD)
1579 netif_carrier_on(dev);
1580 else
1581 netif_carrier_off(dev);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001582 return 0;
1583}
1584
1585/**
1586 * called by network layer when interface is disabled
1587 * shutdown hardware and release resources
1588 *
1589 * dev pointer to network device structure
1590 *
1591 * returns 0 if success, otherwise error code
1592 */
1593static int hdlcdev_close(struct net_device *dev)
1594{
1595 struct slgt_info *info = dev_to_port(dev);
1596 unsigned long flags;
1597
1598 DBGINFO(("%s hdlcdev_close\n", dev->name));
1599
1600 netif_stop_queue(dev);
1601
1602 /* shutdown adapter and release resources */
1603 shutdown(info);
1604
1605 hdlc_close(dev);
1606
1607 spin_lock_irqsave(&info->netlock, flags);
1608 info->netcount=0;
1609 spin_unlock_irqrestore(&info->netlock, flags);
1610
Paul Fulghumd4c63b72007-08-22 14:01:50 -07001611 module_put(THIS_MODULE);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001612 return 0;
1613}
1614
1615/**
1616 * called by network layer to process IOCTL call to network device
1617 *
1618 * dev pointer to network device structure
1619 * ifr pointer to network interface request structure
1620 * cmd IOCTL command code
1621 *
1622 * returns 0 if success, otherwise error code
1623 */
1624static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1625{
1626 const size_t size = sizeof(sync_serial_settings);
1627 sync_serial_settings new_line;
1628 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
1629 struct slgt_info *info = dev_to_port(dev);
1630 unsigned int flags;
1631
1632 DBGINFO(("%s hdlcdev_ioctl\n", dev->name));
1633
1634 /* return error if TTY interface open */
Alan Cox8fb06c72008-07-16 21:56:46 +01001635 if (info->port.count)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001636 return -EBUSY;
1637
1638 if (cmd != SIOCWANDEV)
1639 return hdlc_ioctl(dev, ifr, cmd);
1640
Vasiliy Kulikoved77ed62010-10-27 15:34:22 -07001641 memset(&new_line, 0, sizeof(new_line));
1642
Paul Fulghum705b6c72006-01-08 01:02:06 -08001643 switch(ifr->ifr_settings.type) {
1644 case IF_GET_IFACE: /* return current sync_serial_settings */
1645
1646 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
1647 if (ifr->ifr_settings.size < size) {
1648 ifr->ifr_settings.size = size; /* data size wanted */
1649 return -ENOBUFS;
1650 }
1651
1652 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1653 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1654 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1655 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
1656
1657 switch (flags){
1658 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
1659 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
1660 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
1661 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
1662 default: new_line.clock_type = CLOCK_DEFAULT;
1663 }
1664
1665 new_line.clock_rate = info->params.clock_speed;
1666 new_line.loopback = info->params.loopback ? 1:0;
1667
1668 if (copy_to_user(line, &new_line, size))
1669 return -EFAULT;
1670 return 0;
1671
1672 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
1673
1674 if(!capable(CAP_NET_ADMIN))
1675 return -EPERM;
1676 if (copy_from_user(&new_line, line, size))
1677 return -EFAULT;
1678
1679 switch (new_line.clock_type)
1680 {
1681 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
1682 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
1683 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
1684 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
1685 case CLOCK_DEFAULT: flags = info->params.flags &
1686 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1687 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1688 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1689 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
1690 default: return -EINVAL;
1691 }
1692
1693 if (new_line.loopback != 0 && new_line.loopback != 1)
1694 return -EINVAL;
1695
1696 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
1697 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
1698 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
1699 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
1700 info->params.flags |= flags;
1701
1702 info->params.loopback = new_line.loopback;
1703
1704 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
1705 info->params.clock_speed = new_line.clock_rate;
1706 else
1707 info->params.clock_speed = 0;
1708
1709 /* if network interface up, reprogram hardware */
1710 if (info->netcount)
1711 program_hw(info);
1712 return 0;
1713
1714 default:
1715 return hdlc_ioctl(dev, ifr, cmd);
1716 }
1717}
1718
1719/**
1720 * called by network layer when transmit timeout is detected
1721 *
1722 * dev pointer to network device structure
1723 */
1724static void hdlcdev_tx_timeout(struct net_device *dev)
1725{
1726 struct slgt_info *info = dev_to_port(dev);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001727 unsigned long flags;
1728
1729 DBGINFO(("%s hdlcdev_tx_timeout\n", dev->name));
1730
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001731 dev->stats.tx_errors++;
1732 dev->stats.tx_aborted_errors++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001733
1734 spin_lock_irqsave(&info->lock,flags);
1735 tx_stop(info);
1736 spin_unlock_irqrestore(&info->lock,flags);
1737
1738 netif_wake_queue(dev);
1739}
1740
1741/**
1742 * called by device driver when transmit completes
1743 * reenable network layer transmit if stopped
1744 *
1745 * info pointer to device instance information
1746 */
1747static void hdlcdev_tx_done(struct slgt_info *info)
1748{
1749 if (netif_queue_stopped(info->netdev))
1750 netif_wake_queue(info->netdev);
1751}
1752
1753/**
1754 * called by device driver when frame received
1755 * pass frame to network layer
1756 *
1757 * info pointer to device instance information
1758 * buf pointer to buffer contianing frame data
1759 * size count of data bytes in buf
1760 */
1761static void hdlcdev_rx(struct slgt_info *info, char *buf, int size)
1762{
1763 struct sk_buff *skb = dev_alloc_skb(size);
1764 struct net_device *dev = info->netdev;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001765
1766 DBGINFO(("%s hdlcdev_rx\n", dev->name));
1767
1768 if (skb == NULL) {
1769 DBGERR(("%s: can't alloc skb, drop packet\n", dev->name));
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001770 dev->stats.rx_dropped++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001771 return;
1772 }
1773
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001774 memcpy(skb_put(skb, size), buf, size);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001775
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001776 skb->protocol = hdlc_type_trans(skb, dev);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001777
Krzysztof Halasa198191c2008-06-30 23:26:53 +02001778 dev->stats.rx_packets++;
1779 dev->stats.rx_bytes += size;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001780
1781 netif_rx(skb);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001782}
1783
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01001784static const struct net_device_ops hdlcdev_ops = {
1785 .ndo_open = hdlcdev_open,
1786 .ndo_stop = hdlcdev_close,
1787 .ndo_change_mtu = hdlc_change_mtu,
1788 .ndo_start_xmit = hdlc_start_xmit,
1789 .ndo_do_ioctl = hdlcdev_ioctl,
1790 .ndo_tx_timeout = hdlcdev_tx_timeout,
1791};
1792
Paul Fulghum705b6c72006-01-08 01:02:06 -08001793/**
1794 * called by device driver when adding device instance
1795 * do generic HDLC initialization
1796 *
1797 * info pointer to device instance information
1798 *
1799 * returns 0 if success, otherwise error code
1800 */
1801static int hdlcdev_init(struct slgt_info *info)
1802{
1803 int rc;
1804 struct net_device *dev;
1805 hdlc_device *hdlc;
1806
1807 /* allocate and initialize network and HDLC layer objects */
1808
1809 if (!(dev = alloc_hdlcdev(info))) {
1810 printk(KERN_ERR "%s hdlc device alloc failure\n", info->device_name);
1811 return -ENOMEM;
1812 }
1813
1814 /* for network layer reporting purposes only */
1815 dev->mem_start = info->phys_reg_addr;
1816 dev->mem_end = info->phys_reg_addr + SLGT_REG_SIZE - 1;
1817 dev->irq = info->irq_level;
1818
1819 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01001820 dev->netdev_ops = &hdlcdev_ops;
1821 dev->watchdog_timeo = 10 * HZ;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001822 dev->tx_queue_len = 50;
1823
1824 /* generic HDLC layer callbacks and settings */
1825 hdlc = dev_to_hdlc(dev);
1826 hdlc->attach = hdlcdev_attach;
1827 hdlc->xmit = hdlcdev_xmit;
1828
1829 /* register objects with HDLC layer */
1830 if ((rc = register_hdlc_device(dev))) {
1831 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
1832 free_netdev(dev);
1833 return rc;
1834 }
1835
1836 info->netdev = dev;
1837 return 0;
1838}
1839
1840/**
1841 * called by device driver when removing device instance
1842 * do generic HDLC cleanup
1843 *
1844 * info pointer to device instance information
1845 */
1846static void hdlcdev_exit(struct slgt_info *info)
1847{
1848 unregister_hdlc_device(info->netdev);
1849 free_netdev(info->netdev);
1850 info->netdev = NULL;
1851}
1852
1853#endif /* ifdef CONFIG_HDLC */
1854
1855/*
1856 * get async data from rx DMA buffers
1857 */
1858static void rx_async(struct slgt_info *info)
1859{
Alan Cox8fb06c72008-07-16 21:56:46 +01001860 struct tty_struct *tty = info->port.tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001861 struct mgsl_icount *icount = &info->icount;
1862 unsigned int start, end;
1863 unsigned char *p;
1864 unsigned char status;
1865 struct slgt_desc *bufs = info->rbufs;
1866 int i, count;
Alan Cox33f0f882006-01-09 20:54:13 -08001867 int chars = 0;
1868 int stat;
1869 unsigned char ch;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001870
1871 start = end = info->rbuf_current;
1872
1873 while(desc_complete(bufs[end])) {
1874 count = desc_count(bufs[end]) - info->rbuf_index;
1875 p = bufs[end].buf + info->rbuf_index;
1876
1877 DBGISR(("%s rx_async count=%d\n", info->device_name, count));
1878 DBGDATA(info, p, count, "rx");
1879
1880 for(i=0 ; i < count; i+=2, p+=2) {
Alan Cox33f0f882006-01-09 20:54:13 -08001881 ch = *p;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001882 icount->rx++;
1883
Alan Cox33f0f882006-01-09 20:54:13 -08001884 stat = 0;
1885
Paul Fulghum202af6d2006-08-31 21:27:36 -07001886 if ((status = *(p+1) & (BIT1 + BIT0))) {
1887 if (status & BIT1)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001888 icount->parity++;
Paul Fulghum202af6d2006-08-31 21:27:36 -07001889 else if (status & BIT0)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001890 icount->frame++;
1891 /* discard char if tty control flags say so */
1892 if (status & info->ignore_status_mask)
1893 continue;
Paul Fulghum202af6d2006-08-31 21:27:36 -07001894 if (status & BIT1)
Alan Cox33f0f882006-01-09 20:54:13 -08001895 stat = TTY_PARITY;
Paul Fulghum202af6d2006-08-31 21:27:36 -07001896 else if (status & BIT0)
Alan Cox33f0f882006-01-09 20:54:13 -08001897 stat = TTY_FRAME;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001898 }
1899 if (tty) {
Alan Cox33f0f882006-01-09 20:54:13 -08001900 tty_insert_flip_char(tty, ch, stat);
1901 chars++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001902 }
1903 }
1904
1905 if (i < count) {
1906 /* receive buffer not completed */
1907 info->rbuf_index += i;
Jiri Slaby40565f12007-02-12 00:52:31 -08001908 mod_timer(&info->rx_timer, jiffies + 1);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001909 break;
1910 }
1911
1912 info->rbuf_index = 0;
1913 free_rbufs(info, end, end);
1914
1915 if (++end == info->rbuf_count)
1916 end = 0;
1917
1918 /* if entire list searched then no frame available */
1919 if (end == start)
1920 break;
1921 }
1922
Alan Cox33f0f882006-01-09 20:54:13 -08001923 if (tty && chars)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001924 tty_flip_buffer_push(tty);
1925}
1926
1927/*
1928 * return next bottom half action to perform
1929 */
1930static int bh_action(struct slgt_info *info)
1931{
1932 unsigned long flags;
1933 int rc;
1934
1935 spin_lock_irqsave(&info->lock,flags);
1936
1937 if (info->pending_bh & BH_RECEIVE) {
1938 info->pending_bh &= ~BH_RECEIVE;
1939 rc = BH_RECEIVE;
1940 } else if (info->pending_bh & BH_TRANSMIT) {
1941 info->pending_bh &= ~BH_TRANSMIT;
1942 rc = BH_TRANSMIT;
1943 } else if (info->pending_bh & BH_STATUS) {
1944 info->pending_bh &= ~BH_STATUS;
1945 rc = BH_STATUS;
1946 } else {
1947 /* Mark BH routine as complete */
Joe Perches0fab6de2008-04-28 02:14:02 -07001948 info->bh_running = false;
1949 info->bh_requested = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001950 rc = 0;
1951 }
1952
1953 spin_unlock_irqrestore(&info->lock,flags);
1954
1955 return rc;
1956}
1957
1958/*
1959 * perform bottom half processing
1960 */
David Howellsc4028952006-11-22 14:57:56 +00001961static void bh_handler(struct work_struct *work)
Paul Fulghum705b6c72006-01-08 01:02:06 -08001962{
David Howellsc4028952006-11-22 14:57:56 +00001963 struct slgt_info *info = container_of(work, struct slgt_info, task);
Paul Fulghum705b6c72006-01-08 01:02:06 -08001964 int action;
1965
1966 if (!info)
1967 return;
Joe Perches0fab6de2008-04-28 02:14:02 -07001968 info->bh_running = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08001969
1970 while((action = bh_action(info))) {
1971 switch (action) {
1972 case BH_RECEIVE:
1973 DBGBH(("%s bh receive\n", info->device_name));
1974 switch(info->params.mode) {
1975 case MGSL_MODE_ASYNC:
1976 rx_async(info);
1977 break;
1978 case MGSL_MODE_HDLC:
1979 while(rx_get_frame(info));
1980 break;
1981 case MGSL_MODE_RAW:
Paul Fulghumcb10dc92006-09-30 23:27:45 -07001982 case MGSL_MODE_MONOSYNC:
1983 case MGSL_MODE_BISYNC:
Paul Fulghum98072242010-10-27 15:34:22 -07001984 case MGSL_MODE_XSYNC:
Paul Fulghum705b6c72006-01-08 01:02:06 -08001985 while(rx_get_buf(info));
1986 break;
1987 }
1988 /* restart receiver if rx DMA buffers exhausted */
1989 if (info->rx_restart)
1990 rx_start(info);
1991 break;
1992 case BH_TRANSMIT:
1993 bh_transmit(info);
1994 break;
1995 case BH_STATUS:
1996 DBGBH(("%s bh status\n", info->device_name));
1997 info->ri_chkcount = 0;
1998 info->dsr_chkcount = 0;
1999 info->dcd_chkcount = 0;
2000 info->cts_chkcount = 0;
2001 break;
2002 default:
2003 DBGBH(("%s unknown action\n", info->device_name));
2004 break;
2005 }
2006 }
2007 DBGBH(("%s bh_handler exit\n", info->device_name));
2008}
2009
2010static void bh_transmit(struct slgt_info *info)
2011{
Alan Cox8fb06c72008-07-16 21:56:46 +01002012 struct tty_struct *tty = info->port.tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002013
2014 DBGBH(("%s bh_transmit\n", info->device_name));
Jiri Slabyb963a842007-02-10 01:44:55 -08002015 if (tty)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002016 tty_wakeup(tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002017}
2018
Paul Fulghumed8485f2008-02-06 01:37:18 -08002019static void dsr_change(struct slgt_info *info, unsigned short status)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002020{
Paul Fulghumed8485f2008-02-06 01:37:18 -08002021 if (status & BIT3) {
2022 info->signals |= SerialSignal_DSR;
2023 info->input_signal_events.dsr_up++;
2024 } else {
2025 info->signals &= ~SerialSignal_DSR;
2026 info->input_signal_events.dsr_down++;
2027 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002028 DBGISR(("dsr_change %s signals=%04X\n", info->device_name, info->signals));
2029 if ((info->dsr_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2030 slgt_irq_off(info, IRQ_DSR);
2031 return;
2032 }
2033 info->icount.dsr++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002034 wake_up_interruptible(&info->status_event_wait_q);
2035 wake_up_interruptible(&info->event_wait_q);
2036 info->pending_bh |= BH_STATUS;
2037}
2038
Paul Fulghumed8485f2008-02-06 01:37:18 -08002039static void cts_change(struct slgt_info *info, unsigned short status)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002040{
Paul Fulghumed8485f2008-02-06 01:37:18 -08002041 if (status & BIT2) {
2042 info->signals |= SerialSignal_CTS;
2043 info->input_signal_events.cts_up++;
2044 } else {
2045 info->signals &= ~SerialSignal_CTS;
2046 info->input_signal_events.cts_down++;
2047 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002048 DBGISR(("cts_change %s signals=%04X\n", info->device_name, info->signals));
2049 if ((info->cts_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2050 slgt_irq_off(info, IRQ_CTS);
2051 return;
2052 }
2053 info->icount.cts++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002054 wake_up_interruptible(&info->status_event_wait_q);
2055 wake_up_interruptible(&info->event_wait_q);
2056 info->pending_bh |= BH_STATUS;
2057
Alan Cox8fb06c72008-07-16 21:56:46 +01002058 if (info->port.flags & ASYNC_CTS_FLOW) {
2059 if (info->port.tty) {
2060 if (info->port.tty->hw_stopped) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002061 if (info->signals & SerialSignal_CTS) {
Alan Cox8fb06c72008-07-16 21:56:46 +01002062 info->port.tty->hw_stopped = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002063 info->pending_bh |= BH_TRANSMIT;
2064 return;
2065 }
2066 } else {
2067 if (!(info->signals & SerialSignal_CTS))
Alan Cox8fb06c72008-07-16 21:56:46 +01002068 info->port.tty->hw_stopped = 1;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002069 }
2070 }
2071 }
2072}
2073
Paul Fulghumed8485f2008-02-06 01:37:18 -08002074static void dcd_change(struct slgt_info *info, unsigned short status)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002075{
Paul Fulghumed8485f2008-02-06 01:37:18 -08002076 if (status & BIT1) {
2077 info->signals |= SerialSignal_DCD;
2078 info->input_signal_events.dcd_up++;
2079 } else {
2080 info->signals &= ~SerialSignal_DCD;
2081 info->input_signal_events.dcd_down++;
2082 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002083 DBGISR(("dcd_change %s signals=%04X\n", info->device_name, info->signals));
2084 if ((info->dcd_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2085 slgt_irq_off(info, IRQ_DCD);
2086 return;
2087 }
2088 info->icount.dcd++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002089#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07002090 if (info->netcount) {
2091 if (info->signals & SerialSignal_DCD)
2092 netif_carrier_on(info->netdev);
2093 else
2094 netif_carrier_off(info->netdev);
2095 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002096#endif
2097 wake_up_interruptible(&info->status_event_wait_q);
2098 wake_up_interruptible(&info->event_wait_q);
2099 info->pending_bh |= BH_STATUS;
2100
Alan Cox8fb06c72008-07-16 21:56:46 +01002101 if (info->port.flags & ASYNC_CHECK_CD) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002102 if (info->signals & SerialSignal_DCD)
Alan Cox8fb06c72008-07-16 21:56:46 +01002103 wake_up_interruptible(&info->port.open_wait);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002104 else {
Alan Cox8fb06c72008-07-16 21:56:46 +01002105 if (info->port.tty)
2106 tty_hangup(info->port.tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002107 }
2108 }
2109}
2110
Paul Fulghumed8485f2008-02-06 01:37:18 -08002111static void ri_change(struct slgt_info *info, unsigned short status)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002112{
Paul Fulghumed8485f2008-02-06 01:37:18 -08002113 if (status & BIT0) {
2114 info->signals |= SerialSignal_RI;
2115 info->input_signal_events.ri_up++;
2116 } else {
2117 info->signals &= ~SerialSignal_RI;
2118 info->input_signal_events.ri_down++;
2119 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002120 DBGISR(("ri_change %s signals=%04X\n", info->device_name, info->signals));
2121 if ((info->ri_chkcount)++ == IO_PIN_SHUTDOWN_LIMIT) {
2122 slgt_irq_off(info, IRQ_RI);
2123 return;
2124 }
Paul Fulghumed8485f2008-02-06 01:37:18 -08002125 info->icount.rng++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002126 wake_up_interruptible(&info->status_event_wait_q);
2127 wake_up_interruptible(&info->event_wait_q);
2128 info->pending_bh |= BH_STATUS;
2129}
2130
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01002131static void isr_rxdata(struct slgt_info *info)
2132{
2133 unsigned int count = info->rbuf_fill_count;
2134 unsigned int i = info->rbuf_fill_index;
2135 unsigned short reg;
2136
2137 while (rd_reg16(info, SSR) & IRQ_RXDATA) {
2138 reg = rd_reg16(info, RDR);
2139 DBGISR(("isr_rxdata %s RDR=%04X\n", info->device_name, reg));
2140 if (desc_complete(info->rbufs[i])) {
2141 /* all buffers full */
2142 rx_stop(info);
2143 info->rx_restart = 1;
2144 continue;
2145 }
2146 info->rbufs[i].buf[count++] = (unsigned char)reg;
2147 /* async mode saves status byte to buffer for each data byte */
2148 if (info->params.mode == MGSL_MODE_ASYNC)
2149 info->rbufs[i].buf[count++] = (unsigned char)(reg >> 8);
2150 if (count == info->rbuf_fill_level || (reg & BIT10)) {
2151 /* buffer full or end of frame */
2152 set_desc_count(info->rbufs[i], count);
2153 set_desc_status(info->rbufs[i], BIT15 | (reg >> 8));
2154 info->rbuf_fill_count = count = 0;
2155 if (++i == info->rbuf_count)
2156 i = 0;
2157 info->pending_bh |= BH_RECEIVE;
2158 }
2159 }
2160
2161 info->rbuf_fill_index = i;
2162 info->rbuf_fill_count = count;
2163}
2164
Paul Fulghum705b6c72006-01-08 01:02:06 -08002165static void isr_serial(struct slgt_info *info)
2166{
2167 unsigned short status = rd_reg16(info, SSR);
2168
2169 DBGISR(("%s isr_serial status=%04X\n", info->device_name, status));
2170
2171 wr_reg16(info, SSR, status); /* clear pending */
2172
Joe Perches0fab6de2008-04-28 02:14:02 -07002173 info->irq_occurred = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002174
2175 if (info->params.mode == MGSL_MODE_ASYNC) {
2176 if (status & IRQ_TXIDLE) {
Paul Fulghumde538eb2009-12-09 12:31:39 -08002177 if (info->tx_active)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002178 isr_txeom(info, status);
2179 }
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01002180 if (info->rx_pio && (status & IRQ_RXDATA))
2181 isr_rxdata(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002182 if ((status & IRQ_RXBREAK) && (status & RXBREAK)) {
2183 info->icount.brk++;
2184 /* process break detection if tty control allows */
Alan Cox8fb06c72008-07-16 21:56:46 +01002185 if (info->port.tty) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002186 if (!(status & info->ignore_status_mask)) {
2187 if (info->read_status_mask & MASK_BREAK) {
Alan Cox8fb06c72008-07-16 21:56:46 +01002188 tty_insert_flip_char(info->port.tty, 0, TTY_BREAK);
2189 if (info->port.flags & ASYNC_SAK)
2190 do_SAK(info->port.tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002191 }
2192 }
2193 }
2194 }
2195 } else {
2196 if (status & (IRQ_TXIDLE + IRQ_TXUNDER))
2197 isr_txeom(info, status);
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01002198 if (info->rx_pio && (status & IRQ_RXDATA))
2199 isr_rxdata(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002200 if (status & IRQ_RXIDLE) {
2201 if (status & RXIDLE)
2202 info->icount.rxidle++;
2203 else
2204 info->icount.exithunt++;
2205 wake_up_interruptible(&info->event_wait_q);
2206 }
2207
2208 if (status & IRQ_RXOVER)
2209 rx_start(info);
2210 }
2211
2212 if (status & IRQ_DSR)
Paul Fulghumed8485f2008-02-06 01:37:18 -08002213 dsr_change(info, status);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002214 if (status & IRQ_CTS)
Paul Fulghumed8485f2008-02-06 01:37:18 -08002215 cts_change(info, status);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002216 if (status & IRQ_DCD)
Paul Fulghumed8485f2008-02-06 01:37:18 -08002217 dcd_change(info, status);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002218 if (status & IRQ_RI)
Paul Fulghumed8485f2008-02-06 01:37:18 -08002219 ri_change(info, status);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002220}
2221
2222static void isr_rdma(struct slgt_info *info)
2223{
2224 unsigned int status = rd_reg32(info, RDCSR);
2225
2226 DBGISR(("%s isr_rdma status=%08x\n", info->device_name, status));
2227
2228 /* RDCSR (rx DMA control/status)
2229 *
2230 * 31..07 reserved
2231 * 06 save status byte to DMA buffer
2232 * 05 error
2233 * 04 eol (end of list)
2234 * 03 eob (end of buffer)
2235 * 02 IRQ enable
2236 * 01 reset
2237 * 00 enable
2238 */
2239 wr_reg32(info, RDCSR, status); /* clear pending */
2240
2241 if (status & (BIT5 + BIT4)) {
2242 DBGISR(("%s isr_rdma rx_restart=1\n", info->device_name));
Joe Perches0fab6de2008-04-28 02:14:02 -07002243 info->rx_restart = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002244 }
2245 info->pending_bh |= BH_RECEIVE;
2246}
2247
2248static void isr_tdma(struct slgt_info *info)
2249{
2250 unsigned int status = rd_reg32(info, TDCSR);
2251
2252 DBGISR(("%s isr_tdma status=%08x\n", info->device_name, status));
2253
2254 /* TDCSR (tx DMA control/status)
2255 *
2256 * 31..06 reserved
2257 * 05 error
2258 * 04 eol (end of list)
2259 * 03 eob (end of buffer)
2260 * 02 IRQ enable
2261 * 01 reset
2262 * 00 enable
2263 */
2264 wr_reg32(info, TDCSR, status); /* clear pending */
2265
2266 if (status & (BIT5 + BIT4 + BIT3)) {
2267 // another transmit buffer has completed
2268 // run bottom half to get more send data from user
2269 info->pending_bh |= BH_TRANSMIT;
2270 }
2271}
2272
Paul Fulghumde538eb2009-12-09 12:31:39 -08002273/*
2274 * return true if there are unsent tx DMA buffers, otherwise false
2275 *
2276 * if there are unsent buffers then info->tbuf_start
2277 * is set to index of first unsent buffer
2278 */
2279static bool unsent_tbufs(struct slgt_info *info)
2280{
2281 unsigned int i = info->tbuf_current;
2282 bool rc = false;
2283
2284 /*
2285 * search backwards from last loaded buffer (precedes tbuf_current)
2286 * for first unsent buffer (desc_count > 0)
2287 */
2288
2289 do {
2290 if (i)
2291 i--;
2292 else
2293 i = info->tbuf_count - 1;
2294 if (!desc_count(info->tbufs[i]))
2295 break;
2296 info->tbuf_start = i;
2297 rc = true;
2298 } while (i != info->tbuf_current);
2299
2300 return rc;
2301}
2302
Paul Fulghum705b6c72006-01-08 01:02:06 -08002303static void isr_txeom(struct slgt_info *info, unsigned short status)
2304{
2305 DBGISR(("%s txeom status=%04x\n", info->device_name, status));
2306
2307 slgt_irq_off(info, IRQ_TXDATA + IRQ_TXIDLE + IRQ_TXUNDER);
2308 tdma_reset(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002309 if (status & IRQ_TXUNDER) {
2310 unsigned short val = rd_reg16(info, TCR);
2311 wr_reg16(info, TCR, (unsigned short)(val | BIT2)); /* set reset bit */
2312 wr_reg16(info, TCR, val); /* clear reset bit */
2313 }
2314
2315 if (info->tx_active) {
2316 if (info->params.mode != MGSL_MODE_ASYNC) {
2317 if (status & IRQ_TXUNDER)
2318 info->icount.txunder++;
2319 else if (status & IRQ_TXIDLE)
2320 info->icount.txok++;
2321 }
2322
Paul Fulghumde538eb2009-12-09 12:31:39 -08002323 if (unsent_tbufs(info)) {
2324 tx_start(info);
2325 update_tx_timer(info);
2326 return;
2327 }
Joe Perches0fab6de2008-04-28 02:14:02 -07002328 info->tx_active = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002329
2330 del_timer(&info->tx_timer);
2331
2332 if (info->params.mode != MGSL_MODE_ASYNC && info->drop_rts_on_tx_done) {
2333 info->signals &= ~SerialSignal_RTS;
Joe Perches0fab6de2008-04-28 02:14:02 -07002334 info->drop_rts_on_tx_done = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002335 set_signals(info);
2336 }
2337
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002338#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08002339 if (info->netcount)
2340 hdlcdev_tx_done(info);
2341 else
2342#endif
2343 {
Alan Cox8fb06c72008-07-16 21:56:46 +01002344 if (info->port.tty && (info->port.tty->stopped || info->port.tty->hw_stopped)) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002345 tx_stop(info);
2346 return;
2347 }
2348 info->pending_bh |= BH_TRANSMIT;
2349 }
2350 }
2351}
2352
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002353static void isr_gpio(struct slgt_info *info, unsigned int changed, unsigned int state)
2354{
2355 struct cond_wait *w, *prev;
2356
2357 /* wake processes waiting for specific transitions */
2358 for (w = info->gpio_wait_q, prev = NULL ; w != NULL ; w = w->next) {
2359 if (w->data & changed) {
2360 w->data = state;
2361 wake_up_interruptible(&w->q);
2362 if (prev != NULL)
2363 prev->next = w->next;
2364 else
2365 info->gpio_wait_q = w->next;
2366 } else
2367 prev = w;
2368 }
2369}
2370
Paul Fulghum705b6c72006-01-08 01:02:06 -08002371/* interrupt service routine
2372 *
2373 * irq interrupt number
2374 * dev_id device ID supplied during interrupt registration
Paul Fulghum705b6c72006-01-08 01:02:06 -08002375 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04002376static irqreturn_t slgt_interrupt(int dummy, void *dev_id)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002377{
Jeff Garzika6f97b22007-10-31 05:20:49 -04002378 struct slgt_info *info = dev_id;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002379 unsigned int gsr;
2380 unsigned int i;
2381
Jeff Garzika6f97b22007-10-31 05:20:49 -04002382 DBGISR(("slgt_interrupt irq=%d entry\n", info->irq_level));
Paul Fulghum705b6c72006-01-08 01:02:06 -08002383
Paul Fulghum705b6c72006-01-08 01:02:06 -08002384 while((gsr = rd_reg32(info, GSR) & 0xffffff00)) {
2385 DBGISR(("%s gsr=%08x\n", info->device_name, gsr));
Joe Perches0fab6de2008-04-28 02:14:02 -07002386 info->irq_occurred = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002387 for(i=0; i < info->port_count ; i++) {
2388 if (info->port_array[i] == NULL)
2389 continue;
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002390 spin_lock(&info->port_array[i]->lock);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002391 if (gsr & (BIT8 << i))
2392 isr_serial(info->port_array[i]);
2393 if (gsr & (BIT16 << (i*2)))
2394 isr_rdma(info->port_array[i]);
2395 if (gsr & (BIT17 << (i*2)))
2396 isr_tdma(info->port_array[i]);
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002397 spin_unlock(&info->port_array[i]->lock);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002398 }
2399 }
2400
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002401 if (info->gpio_present) {
2402 unsigned int state;
2403 unsigned int changed;
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002404 spin_lock(&info->lock);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002405 while ((changed = rd_reg32(info, IOSR)) != 0) {
2406 DBGISR(("%s iosr=%08x\n", info->device_name, changed));
2407 /* read latched state of GPIO signals */
2408 state = rd_reg32(info, IOVR);
2409 /* clear pending GPIO interrupt bits */
2410 wr_reg32(info, IOSR, changed);
2411 for (i=0 ; i < info->port_count ; i++) {
2412 if (info->port_array[i] != NULL)
2413 isr_gpio(info->port_array[i], changed, state);
2414 }
2415 }
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002416 spin_unlock(&info->lock);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002417 }
2418
Paul Fulghum705b6c72006-01-08 01:02:06 -08002419 for(i=0; i < info->port_count ; i++) {
2420 struct slgt_info *port = info->port_array[i];
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002421 if (port == NULL)
2422 continue;
2423 spin_lock(&port->lock);
2424 if ((port->port.count || port->netcount) &&
Paul Fulghum705b6c72006-01-08 01:02:06 -08002425 port->pending_bh && !port->bh_running &&
2426 !port->bh_requested) {
2427 DBGISR(("%s bh queued\n", port->device_name));
2428 schedule_work(&port->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07002429 port->bh_requested = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002430 }
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002431 spin_unlock(&port->lock);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002432 }
2433
Jeff Garzika6f97b22007-10-31 05:20:49 -04002434 DBGISR(("slgt_interrupt irq=%d exit\n", info->irq_level));
Paul Fulghum705b6c72006-01-08 01:02:06 -08002435 return IRQ_HANDLED;
2436}
2437
2438static int startup(struct slgt_info *info)
2439{
2440 DBGINFO(("%s startup\n", info->device_name));
2441
Alan Cox8fb06c72008-07-16 21:56:46 +01002442 if (info->port.flags & ASYNC_INITIALIZED)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002443 return 0;
2444
2445 if (!info->tx_buf) {
2446 info->tx_buf = kmalloc(info->max_frame_size, GFP_KERNEL);
2447 if (!info->tx_buf) {
2448 DBGERR(("%s can't allocate tx buffer\n", info->device_name));
2449 return -ENOMEM;
2450 }
2451 }
2452
2453 info->pending_bh = 0;
2454
2455 memset(&info->icount, 0, sizeof(info->icount));
2456
2457 /* program hardware for current parameters */
2458 change_params(info);
2459
Alan Cox8fb06c72008-07-16 21:56:46 +01002460 if (info->port.tty)
2461 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002462
Alan Cox8fb06c72008-07-16 21:56:46 +01002463 info->port.flags |= ASYNC_INITIALIZED;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002464
2465 return 0;
2466}
2467
2468/*
2469 * called by close() and hangup() to shutdown hardware
2470 */
2471static void shutdown(struct slgt_info *info)
2472{
2473 unsigned long flags;
2474
Alan Cox8fb06c72008-07-16 21:56:46 +01002475 if (!(info->port.flags & ASYNC_INITIALIZED))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002476 return;
2477
2478 DBGINFO(("%s shutdown\n", info->device_name));
2479
2480 /* clear status wait queue because status changes */
2481 /* can't happen after shutting down the hardware */
2482 wake_up_interruptible(&info->status_event_wait_q);
2483 wake_up_interruptible(&info->event_wait_q);
2484
2485 del_timer_sync(&info->tx_timer);
2486 del_timer_sync(&info->rx_timer);
2487
2488 kfree(info->tx_buf);
2489 info->tx_buf = NULL;
2490
2491 spin_lock_irqsave(&info->lock,flags);
2492
2493 tx_stop(info);
2494 rx_stop(info);
2495
2496 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
2497
Alan Cox8fb06c72008-07-16 21:56:46 +01002498 if (!info->port.tty || info->port.tty->termios->c_cflag & HUPCL) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002499 info->signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
2500 set_signals(info);
2501 }
2502
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002503 flush_cond_wait(&info->gpio_wait_q);
2504
Paul Fulghum705b6c72006-01-08 01:02:06 -08002505 spin_unlock_irqrestore(&info->lock,flags);
2506
Alan Cox8fb06c72008-07-16 21:56:46 +01002507 if (info->port.tty)
2508 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002509
Alan Cox8fb06c72008-07-16 21:56:46 +01002510 info->port.flags &= ~ASYNC_INITIALIZED;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002511}
2512
2513static void program_hw(struct slgt_info *info)
2514{
2515 unsigned long flags;
2516
2517 spin_lock_irqsave(&info->lock,flags);
2518
2519 rx_stop(info);
2520 tx_stop(info);
2521
Paul Fulghumcb10dc92006-09-30 23:27:45 -07002522 if (info->params.mode != MGSL_MODE_ASYNC ||
Paul Fulghum705b6c72006-01-08 01:02:06 -08002523 info->netcount)
Paul Fulghumcb10dc92006-09-30 23:27:45 -07002524 sync_mode(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002525 else
2526 async_mode(info);
2527
2528 set_signals(info);
2529
2530 info->dcd_chkcount = 0;
2531 info->cts_chkcount = 0;
2532 info->ri_chkcount = 0;
2533 info->dsr_chkcount = 0;
2534
Paul Fulghuma6b2f872009-01-15 13:50:57 -08002535 slgt_irq_on(info, IRQ_DCD | IRQ_CTS | IRQ_DSR | IRQ_RI);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002536 get_signals(info);
2537
2538 if (info->netcount ||
Alan Cox8fb06c72008-07-16 21:56:46 +01002539 (info->port.tty && info->port.tty->termios->c_cflag & CREAD))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002540 rx_start(info);
2541
2542 spin_unlock_irqrestore(&info->lock,flags);
2543}
2544
2545/*
2546 * reconfigure adapter based on new parameters
2547 */
2548static void change_params(struct slgt_info *info)
2549{
2550 unsigned cflag;
2551 int bits_per_char;
2552
Alan Cox8fb06c72008-07-16 21:56:46 +01002553 if (!info->port.tty || !info->port.tty->termios)
Paul Fulghum705b6c72006-01-08 01:02:06 -08002554 return;
2555 DBGINFO(("%s change_params\n", info->device_name));
2556
Alan Cox8fb06c72008-07-16 21:56:46 +01002557 cflag = info->port.tty->termios->c_cflag;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002558
2559 /* if B0 rate (hangup) specified then negate DTR and RTS */
2560 /* otherwise assert DTR and RTS */
2561 if (cflag & CBAUD)
2562 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
2563 else
2564 info->signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2565
2566 /* byte size and parity */
2567
2568 switch (cflag & CSIZE) {
2569 case CS5: info->params.data_bits = 5; break;
2570 case CS6: info->params.data_bits = 6; break;
2571 case CS7: info->params.data_bits = 7; break;
2572 case CS8: info->params.data_bits = 8; break;
2573 default: info->params.data_bits = 7; break;
2574 }
2575
2576 info->params.stop_bits = (cflag & CSTOPB) ? 2 : 1;
2577
2578 if (cflag & PARENB)
2579 info->params.parity = (cflag & PARODD) ? ASYNC_PARITY_ODD : ASYNC_PARITY_EVEN;
2580 else
2581 info->params.parity = ASYNC_PARITY_NONE;
2582
2583 /* calculate number of jiffies to transmit a full
2584 * FIFO (32 bytes) at specified data rate
2585 */
2586 bits_per_char = info->params.data_bits +
2587 info->params.stop_bits + 1;
2588
Alan Cox8fb06c72008-07-16 21:56:46 +01002589 info->params.data_rate = tty_get_baud_rate(info->port.tty);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002590
2591 if (info->params.data_rate) {
2592 info->timeout = (32*HZ*bits_per_char) /
2593 info->params.data_rate;
2594 }
2595 info->timeout += HZ/50; /* Add .02 seconds of slop */
2596
2597 if (cflag & CRTSCTS)
Alan Cox8fb06c72008-07-16 21:56:46 +01002598 info->port.flags |= ASYNC_CTS_FLOW;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002599 else
Alan Cox8fb06c72008-07-16 21:56:46 +01002600 info->port.flags &= ~ASYNC_CTS_FLOW;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002601
2602 if (cflag & CLOCAL)
Alan Cox8fb06c72008-07-16 21:56:46 +01002603 info->port.flags &= ~ASYNC_CHECK_CD;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002604 else
Alan Cox8fb06c72008-07-16 21:56:46 +01002605 info->port.flags |= ASYNC_CHECK_CD;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002606
2607 /* process tty input control flags */
2608
2609 info->read_status_mask = IRQ_RXOVER;
Alan Cox8fb06c72008-07-16 21:56:46 +01002610 if (I_INPCK(info->port.tty))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002611 info->read_status_mask |= MASK_PARITY | MASK_FRAMING;
Alan Cox8fb06c72008-07-16 21:56:46 +01002612 if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002613 info->read_status_mask |= MASK_BREAK;
Alan Cox8fb06c72008-07-16 21:56:46 +01002614 if (I_IGNPAR(info->port.tty))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002615 info->ignore_status_mask |= MASK_PARITY | MASK_FRAMING;
Alan Cox8fb06c72008-07-16 21:56:46 +01002616 if (I_IGNBRK(info->port.tty)) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08002617 info->ignore_status_mask |= MASK_BREAK;
2618 /* If ignoring parity and break indicators, ignore
2619 * overruns too. (For real raw support).
2620 */
Alan Cox8fb06c72008-07-16 21:56:46 +01002621 if (I_IGNPAR(info->port.tty))
Paul Fulghum705b6c72006-01-08 01:02:06 -08002622 info->ignore_status_mask |= MASK_OVERRUN;
2623 }
2624
2625 program_hw(info);
2626}
2627
2628static int get_stats(struct slgt_info *info, struct mgsl_icount __user *user_icount)
2629{
2630 DBGINFO(("%s get_stats\n", info->device_name));
2631 if (!user_icount) {
2632 memset(&info->icount, 0, sizeof(info->icount));
2633 } else {
2634 if (copy_to_user(user_icount, &info->icount, sizeof(struct mgsl_icount)))
2635 return -EFAULT;
2636 }
2637 return 0;
2638}
2639
2640static int get_params(struct slgt_info *info, MGSL_PARAMS __user *user_params)
2641{
2642 DBGINFO(("%s get_params\n", info->device_name));
2643 if (copy_to_user(user_params, &info->params, sizeof(MGSL_PARAMS)))
2644 return -EFAULT;
2645 return 0;
2646}
2647
2648static int set_params(struct slgt_info *info, MGSL_PARAMS __user *new_params)
2649{
2650 unsigned long flags;
2651 MGSL_PARAMS tmp_params;
2652
2653 DBGINFO(("%s set_params\n", info->device_name));
2654 if (copy_from_user(&tmp_params, new_params, sizeof(MGSL_PARAMS)))
2655 return -EFAULT;
2656
2657 spin_lock_irqsave(&info->lock, flags);
Paul Fulghum1f807692009-04-02 16:58:30 -07002658 if (tmp_params.mode == MGSL_MODE_BASE_CLOCK)
2659 info->base_clock = tmp_params.clock_speed;
2660 else
2661 memcpy(&info->params, &tmp_params, sizeof(MGSL_PARAMS));
Paul Fulghum705b6c72006-01-08 01:02:06 -08002662 spin_unlock_irqrestore(&info->lock, flags);
2663
Paul Fulghum1f807692009-04-02 16:58:30 -07002664 program_hw(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002665
2666 return 0;
2667}
2668
2669static int get_txidle(struct slgt_info *info, int __user *idle_mode)
2670{
2671 DBGINFO(("%s get_txidle=%d\n", info->device_name, info->idle_mode));
2672 if (put_user(info->idle_mode, idle_mode))
2673 return -EFAULT;
2674 return 0;
2675}
2676
2677static int set_txidle(struct slgt_info *info, int idle_mode)
2678{
2679 unsigned long flags;
2680 DBGINFO(("%s set_txidle(%d)\n", info->device_name, idle_mode));
2681 spin_lock_irqsave(&info->lock,flags);
2682 info->idle_mode = idle_mode;
Paul Fulghum643f3312006-06-25 05:49:20 -07002683 if (info->params.mode != MGSL_MODE_ASYNC)
2684 tx_set_idle(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08002685 spin_unlock_irqrestore(&info->lock,flags);
2686 return 0;
2687}
2688
2689static int tx_enable(struct slgt_info *info, int enable)
2690{
2691 unsigned long flags;
2692 DBGINFO(("%s tx_enable(%d)\n", info->device_name, enable));
2693 spin_lock_irqsave(&info->lock,flags);
2694 if (enable) {
2695 if (!info->tx_enabled)
2696 tx_start(info);
2697 } else {
2698 if (info->tx_enabled)
2699 tx_stop(info);
2700 }
2701 spin_unlock_irqrestore(&info->lock,flags);
2702 return 0;
2703}
2704
2705/*
2706 * abort transmit HDLC frame
2707 */
2708static int tx_abort(struct slgt_info *info)
2709{
2710 unsigned long flags;
2711 DBGINFO(("%s tx_abort\n", info->device_name));
2712 spin_lock_irqsave(&info->lock,flags);
2713 tdma_reset(info);
2714 spin_unlock_irqrestore(&info->lock,flags);
2715 return 0;
2716}
2717
2718static int rx_enable(struct slgt_info *info, int enable)
2719{
2720 unsigned long flags;
Paul Fulghum814dae02008-07-22 11:22:14 +01002721 unsigned int rbuf_fill_level;
2722 DBGINFO(("%s rx_enable(%08x)\n", info->device_name, enable));
Paul Fulghum705b6c72006-01-08 01:02:06 -08002723 spin_lock_irqsave(&info->lock,flags);
Paul Fulghum814dae02008-07-22 11:22:14 +01002724 /*
2725 * enable[31..16] = receive DMA buffer fill level
2726 * 0 = noop (leave fill level unchanged)
2727 * fill level must be multiple of 4 and <= buffer size
2728 */
2729 rbuf_fill_level = ((unsigned int)enable) >> 16;
2730 if (rbuf_fill_level) {
Paul Fulghumc68a99c2008-07-22 11:23:24 +01002731 if ((rbuf_fill_level > DMABUFSIZE) || (rbuf_fill_level % 4)) {
2732 spin_unlock_irqrestore(&info->lock, flags);
Paul Fulghum814dae02008-07-22 11:22:14 +01002733 return -EINVAL;
Paul Fulghumc68a99c2008-07-22 11:23:24 +01002734 }
Paul Fulghum814dae02008-07-22 11:22:14 +01002735 info->rbuf_fill_level = rbuf_fill_level;
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01002736 if (rbuf_fill_level < 128)
2737 info->rx_pio = 1; /* PIO mode */
2738 else
2739 info->rx_pio = 0; /* DMA mode */
Paul Fulghum814dae02008-07-22 11:22:14 +01002740 rx_stop(info); /* restart receiver to use new fill level */
2741 }
2742
2743 /*
2744 * enable[1..0] = receiver enable command
2745 * 0 = disable
2746 * 1 = enable
2747 * 2 = enable or force hunt mode if already enabled
2748 */
2749 enable &= 3;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002750 if (enable) {
2751 if (!info->rx_enabled)
2752 rx_start(info);
Paul Fulghumcb10dc92006-09-30 23:27:45 -07002753 else if (enable == 2) {
2754 /* force hunt mode (write 1 to RCR[3]) */
2755 wr_reg16(info, RCR, rd_reg16(info, RCR) | BIT3);
2756 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08002757 } else {
2758 if (info->rx_enabled)
2759 rx_stop(info);
2760 }
2761 spin_unlock_irqrestore(&info->lock,flags);
2762 return 0;
2763}
2764
2765/*
2766 * wait for specified event to occur
2767 */
2768static int wait_mgsl_event(struct slgt_info *info, int __user *mask_ptr)
2769{
2770 unsigned long flags;
2771 int s;
2772 int rc=0;
2773 struct mgsl_icount cprev, cnow;
2774 int events;
2775 int mask;
2776 struct _input_signal_events oldsigs, newsigs;
2777 DECLARE_WAITQUEUE(wait, current);
2778
2779 if (get_user(mask, mask_ptr))
2780 return -EFAULT;
2781
2782 DBGINFO(("%s wait_mgsl_event(%d)\n", info->device_name, mask));
2783
2784 spin_lock_irqsave(&info->lock,flags);
2785
2786 /* return immediately if state matches requested events */
2787 get_signals(info);
2788 s = info->signals;
2789
2790 events = mask &
2791 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
2792 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
2793 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
2794 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
2795 if (events) {
2796 spin_unlock_irqrestore(&info->lock,flags);
2797 goto exit;
2798 }
2799
2800 /* save current irq counts */
2801 cprev = info->icount;
2802 oldsigs = info->input_signal_events;
2803
2804 /* enable hunt and idle irqs if needed */
2805 if (mask & (MgslEvent_ExitHuntMode+MgslEvent_IdleReceived)) {
2806 unsigned short val = rd_reg16(info, SCR);
2807 if (!(val & IRQ_RXIDLE))
2808 wr_reg16(info, SCR, (unsigned short)(val | IRQ_RXIDLE));
2809 }
2810
2811 set_current_state(TASK_INTERRUPTIBLE);
2812 add_wait_queue(&info->event_wait_q, &wait);
2813
2814 spin_unlock_irqrestore(&info->lock,flags);
2815
2816 for(;;) {
2817 schedule();
2818 if (signal_pending(current)) {
2819 rc = -ERESTARTSYS;
2820 break;
2821 }
2822
2823 /* get current irq counts */
2824 spin_lock_irqsave(&info->lock,flags);
2825 cnow = info->icount;
2826 newsigs = info->input_signal_events;
2827 set_current_state(TASK_INTERRUPTIBLE);
2828 spin_unlock_irqrestore(&info->lock,flags);
2829
2830 /* if no change, wait aborted for some reason */
2831 if (newsigs.dsr_up == oldsigs.dsr_up &&
2832 newsigs.dsr_down == oldsigs.dsr_down &&
2833 newsigs.dcd_up == oldsigs.dcd_up &&
2834 newsigs.dcd_down == oldsigs.dcd_down &&
2835 newsigs.cts_up == oldsigs.cts_up &&
2836 newsigs.cts_down == oldsigs.cts_down &&
2837 newsigs.ri_up == oldsigs.ri_up &&
2838 newsigs.ri_down == oldsigs.ri_down &&
2839 cnow.exithunt == cprev.exithunt &&
2840 cnow.rxidle == cprev.rxidle) {
2841 rc = -EIO;
2842 break;
2843 }
2844
2845 events = mask &
2846 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2847 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2848 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2849 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2850 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2851 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2852 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2853 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2854 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2855 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2856 if (events)
2857 break;
2858
2859 cprev = cnow;
2860 oldsigs = newsigs;
2861 }
2862
2863 remove_wait_queue(&info->event_wait_q, &wait);
2864 set_current_state(TASK_RUNNING);
2865
2866
2867 if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
2868 spin_lock_irqsave(&info->lock,flags);
2869 if (!waitqueue_active(&info->event_wait_q)) {
2870 /* disable enable exit hunt mode/idle rcvd IRQs */
2871 wr_reg16(info, SCR,
2872 (unsigned short)(rd_reg16(info, SCR) & ~IRQ_RXIDLE));
2873 }
2874 spin_unlock_irqrestore(&info->lock,flags);
2875 }
2876exit:
2877 if (rc == 0)
2878 rc = put_user(events, mask_ptr);
2879 return rc;
2880}
2881
2882static int get_interface(struct slgt_info *info, int __user *if_mode)
2883{
2884 DBGINFO(("%s get_interface=%x\n", info->device_name, info->if_mode));
2885 if (put_user(info->if_mode, if_mode))
2886 return -EFAULT;
2887 return 0;
2888}
2889
2890static int set_interface(struct slgt_info *info, int if_mode)
2891{
2892 unsigned long flags;
Paul Fulghum35fbd392006-01-18 17:42:24 -08002893 unsigned short val;
Paul Fulghum705b6c72006-01-08 01:02:06 -08002894
2895 DBGINFO(("%s set_interface=%x)\n", info->device_name, if_mode));
2896 spin_lock_irqsave(&info->lock,flags);
2897 info->if_mode = if_mode;
2898
2899 msc_set_vcr(info);
2900
2901 /* TCR (tx control) 07 1=RTS driver control */
2902 val = rd_reg16(info, TCR);
2903 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
2904 val |= BIT7;
2905 else
2906 val &= ~BIT7;
2907 wr_reg16(info, TCR, val);
2908
2909 spin_unlock_irqrestore(&info->lock,flags);
2910 return 0;
2911}
2912
Paul Fulghum98072242010-10-27 15:34:22 -07002913static int get_xsync(struct slgt_info *info, int __user *xsync)
2914{
2915 DBGINFO(("%s get_xsync=%x\n", info->device_name, info->xsync));
2916 if (put_user(info->xsync, xsync))
2917 return -EFAULT;
2918 return 0;
2919}
2920
2921/*
2922 * set extended sync pattern (1 to 4 bytes) for extended sync mode
2923 *
2924 * sync pattern is contained in least significant bytes of value
2925 * most significant byte of sync pattern is oldest (1st sent/detected)
2926 */
2927static int set_xsync(struct slgt_info *info, int xsync)
2928{
2929 unsigned long flags;
2930
2931 DBGINFO(("%s set_xsync=%x)\n", info->device_name, xsync));
2932 spin_lock_irqsave(&info->lock, flags);
2933 info->xsync = xsync;
2934 wr_reg32(info, XSR, xsync);
2935 spin_unlock_irqrestore(&info->lock, flags);
2936 return 0;
2937}
2938
2939static int get_xctrl(struct slgt_info *info, int __user *xctrl)
2940{
2941 DBGINFO(("%s get_xctrl=%x\n", info->device_name, info->xctrl));
2942 if (put_user(info->xctrl, xctrl))
2943 return -EFAULT;
2944 return 0;
2945}
2946
2947/*
2948 * set extended control options
2949 *
2950 * xctrl[31:19] reserved, must be zero
2951 * xctrl[18:17] extended sync pattern length in bytes
2952 * 00 = 1 byte in xsr[7:0]
2953 * 01 = 2 bytes in xsr[15:0]
2954 * 10 = 3 bytes in xsr[23:0]
2955 * 11 = 4 bytes in xsr[31:0]
2956 * xctrl[16] 1 = enable terminal count, 0=disabled
2957 * xctrl[15:0] receive terminal count for fixed length packets
2958 * value is count minus one (0 = 1 byte packet)
2959 * when terminal count is reached, receiver
2960 * automatically returns to hunt mode and receive
2961 * FIFO contents are flushed to DMA buffers with
2962 * end of frame (EOF) status
2963 */
2964static int set_xctrl(struct slgt_info *info, int xctrl)
2965{
2966 unsigned long flags;
2967
2968 DBGINFO(("%s set_xctrl=%x)\n", info->device_name, xctrl));
2969 spin_lock_irqsave(&info->lock, flags);
2970 info->xctrl = xctrl;
2971 wr_reg32(info, XCR, xctrl);
2972 spin_unlock_irqrestore(&info->lock, flags);
2973 return 0;
2974}
2975
Paul Fulghum0080b7a2006-03-28 01:56:15 -08002976/*
2977 * set general purpose IO pin state and direction
2978 *
2979 * user_gpio fields:
2980 * state each bit indicates a pin state
2981 * smask set bit indicates pin state to set
2982 * dir each bit indicates a pin direction (0=input, 1=output)
2983 * dmask set bit indicates pin direction to set
2984 */
2985static int set_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
2986{
2987 unsigned long flags;
2988 struct gpio_desc gpio;
2989 __u32 data;
2990
2991 if (!info->gpio_present)
2992 return -EINVAL;
2993 if (copy_from_user(&gpio, user_gpio, sizeof(gpio)))
2994 return -EFAULT;
2995 DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n",
2996 info->device_name, gpio.state, gpio.smask,
2997 gpio.dir, gpio.dmask));
2998
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07002999 spin_lock_irqsave(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003000 if (gpio.dmask) {
3001 data = rd_reg32(info, IODR);
3002 data |= gpio.dmask & gpio.dir;
3003 data &= ~(gpio.dmask & ~gpio.dir);
3004 wr_reg32(info, IODR, data);
3005 }
3006 if (gpio.smask) {
3007 data = rd_reg32(info, IOVR);
3008 data |= gpio.smask & gpio.state;
3009 data &= ~(gpio.smask & ~gpio.state);
3010 wr_reg32(info, IOVR, data);
3011 }
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07003012 spin_unlock_irqrestore(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003013
3014 return 0;
3015}
3016
3017/*
3018 * get general purpose IO pin state and direction
3019 */
3020static int get_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
3021{
3022 struct gpio_desc gpio;
3023 if (!info->gpio_present)
3024 return -EINVAL;
3025 gpio.state = rd_reg32(info, IOVR);
3026 gpio.smask = 0xffffffff;
3027 gpio.dir = rd_reg32(info, IODR);
3028 gpio.dmask = 0xffffffff;
3029 if (copy_to_user(user_gpio, &gpio, sizeof(gpio)))
3030 return -EFAULT;
3031 DBGINFO(("%s get_gpio state=%08x dir=%08x\n",
3032 info->device_name, gpio.state, gpio.dir));
3033 return 0;
3034}
3035
3036/*
3037 * conditional wait facility
3038 */
3039static void init_cond_wait(struct cond_wait *w, unsigned int data)
3040{
3041 init_waitqueue_head(&w->q);
3042 init_waitqueue_entry(&w->wait, current);
3043 w->data = data;
3044}
3045
3046static void add_cond_wait(struct cond_wait **head, struct cond_wait *w)
3047{
3048 set_current_state(TASK_INTERRUPTIBLE);
3049 add_wait_queue(&w->q, &w->wait);
3050 w->next = *head;
3051 *head = w;
3052}
3053
3054static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw)
3055{
3056 struct cond_wait *w, *prev;
3057 remove_wait_queue(&cw->q, &cw->wait);
3058 set_current_state(TASK_RUNNING);
3059 for (w = *head, prev = NULL ; w != NULL ; prev = w, w = w->next) {
3060 if (w == cw) {
3061 if (prev != NULL)
3062 prev->next = w->next;
3063 else
3064 *head = w->next;
3065 break;
3066 }
3067 }
3068}
3069
3070static void flush_cond_wait(struct cond_wait **head)
3071{
3072 while (*head != NULL) {
3073 wake_up_interruptible(&(*head)->q);
3074 *head = (*head)->next;
3075 }
3076}
3077
3078/*
3079 * wait for general purpose I/O pin(s) to enter specified state
3080 *
3081 * user_gpio fields:
3082 * state - bit indicates target pin state
3083 * smask - set bit indicates watched pin
3084 *
3085 * The wait ends when at least one watched pin enters the specified
3086 * state. When 0 (no error) is returned, user_gpio->state is set to the
3087 * state of all GPIO pins when the wait ends.
3088 *
3089 * Note: Each pin may be a dedicated input, dedicated output, or
3090 * configurable input/output. The number and configuration of pins
3091 * varies with the specific adapter model. Only input pins (dedicated
3092 * or configured) can be monitored with this function.
3093 */
3094static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio)
3095{
3096 unsigned long flags;
3097 int rc = 0;
3098 struct gpio_desc gpio;
3099 struct cond_wait wait;
3100 u32 state;
3101
3102 if (!info->gpio_present)
3103 return -EINVAL;
3104 if (copy_from_user(&gpio, user_gpio, sizeof(gpio)))
3105 return -EFAULT;
3106 DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n",
3107 info->device_name, gpio.state, gpio.smask));
3108 /* ignore output pins identified by set IODR bit */
3109 if ((gpio.smask &= ~rd_reg32(info, IODR)) == 0)
3110 return -EINVAL;
3111 init_cond_wait(&wait, gpio.smask);
3112
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07003113 spin_lock_irqsave(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003114 /* enable interrupts for watched pins */
3115 wr_reg32(info, IOER, rd_reg32(info, IOER) | gpio.smask);
3116 /* get current pin states */
3117 state = rd_reg32(info, IOVR);
3118
3119 if (gpio.smask & ~(state ^ gpio.state)) {
3120 /* already in target state */
3121 gpio.state = state;
3122 } else {
3123 /* wait for target state */
3124 add_cond_wait(&info->gpio_wait_q, &wait);
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07003125 spin_unlock_irqrestore(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003126 schedule();
3127 if (signal_pending(current))
3128 rc = -ERESTARTSYS;
3129 else
3130 gpio.state = wait.data;
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07003131 spin_lock_irqsave(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003132 remove_cond_wait(&info->gpio_wait_q, &wait);
3133 }
3134
3135 /* disable all GPIO interrupts if no waiting processes */
3136 if (info->gpio_wait_q == NULL)
3137 wr_reg32(info, IOER, 0);
Paul Fulghumffd7d6b2010-10-27 15:34:20 -07003138 spin_unlock_irqrestore(&info->port_array[0]->lock, flags);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003139
3140 if ((rc == 0) && copy_to_user(user_gpio, &gpio, sizeof(gpio)))
3141 rc = -EFAULT;
3142 return rc;
3143}
3144
Paul Fulghum705b6c72006-01-08 01:02:06 -08003145static int modem_input_wait(struct slgt_info *info,int arg)
3146{
3147 unsigned long flags;
3148 int rc;
3149 struct mgsl_icount cprev, cnow;
3150 DECLARE_WAITQUEUE(wait, current);
3151
3152 /* save current irq counts */
3153 spin_lock_irqsave(&info->lock,flags);
3154 cprev = info->icount;
3155 add_wait_queue(&info->status_event_wait_q, &wait);
3156 set_current_state(TASK_INTERRUPTIBLE);
3157 spin_unlock_irqrestore(&info->lock,flags);
3158
3159 for(;;) {
3160 schedule();
3161 if (signal_pending(current)) {
3162 rc = -ERESTARTSYS;
3163 break;
3164 }
3165
3166 /* get new irq counts */
3167 spin_lock_irqsave(&info->lock,flags);
3168 cnow = info->icount;
3169 set_current_state(TASK_INTERRUPTIBLE);
3170 spin_unlock_irqrestore(&info->lock,flags);
3171
3172 /* if no change, wait aborted for some reason */
3173 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
3174 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
3175 rc = -EIO;
3176 break;
3177 }
3178
3179 /* check for change in caller specified modem input */
3180 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
3181 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
3182 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
3183 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
3184 rc = 0;
3185 break;
3186 }
3187
3188 cprev = cnow;
3189 }
3190 remove_wait_queue(&info->status_event_wait_q, &wait);
3191 set_current_state(TASK_RUNNING);
3192 return rc;
3193}
3194
3195/*
3196 * return state of serial control and status signals
3197 */
Alan Cox60b33c12011-02-14 16:26:14 +00003198static int tiocmget(struct tty_struct *tty)
Paul Fulghum705b6c72006-01-08 01:02:06 -08003199{
3200 struct slgt_info *info = tty->driver_data;
3201 unsigned int result;
3202 unsigned long flags;
3203
3204 spin_lock_irqsave(&info->lock,flags);
3205 get_signals(info);
3206 spin_unlock_irqrestore(&info->lock,flags);
3207
3208 result = ((info->signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
3209 ((info->signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
3210 ((info->signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
3211 ((info->signals & SerialSignal_RI) ? TIOCM_RNG:0) +
3212 ((info->signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
3213 ((info->signals & SerialSignal_CTS) ? TIOCM_CTS:0);
3214
3215 DBGINFO(("%s tiocmget value=%08X\n", info->device_name, result));
3216 return result;
3217}
3218
3219/*
3220 * set modem control signals (DTR/RTS)
3221 *
3222 * cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
3223 * TIOCMSET = set/clear signal values
3224 * value bit mask for command
3225 */
3226static int tiocmset(struct tty_struct *tty, struct file *file,
3227 unsigned int set, unsigned int clear)
3228{
3229 struct slgt_info *info = tty->driver_data;
3230 unsigned long flags;
3231
3232 DBGINFO(("%s tiocmset(%x,%x)\n", info->device_name, set, clear));
3233
3234 if (set & TIOCM_RTS)
3235 info->signals |= SerialSignal_RTS;
3236 if (set & TIOCM_DTR)
3237 info->signals |= SerialSignal_DTR;
3238 if (clear & TIOCM_RTS)
3239 info->signals &= ~SerialSignal_RTS;
3240 if (clear & TIOCM_DTR)
3241 info->signals &= ~SerialSignal_DTR;
3242
3243 spin_lock_irqsave(&info->lock,flags);
3244 set_signals(info);
3245 spin_unlock_irqrestore(&info->lock,flags);
3246 return 0;
3247}
3248
Alan Cox31f35932009-01-02 13:45:05 +00003249static int carrier_raised(struct tty_port *port)
3250{
3251 unsigned long flags;
3252 struct slgt_info *info = container_of(port, struct slgt_info, port);
3253
3254 spin_lock_irqsave(&info->lock,flags);
3255 get_signals(info);
3256 spin_unlock_irqrestore(&info->lock,flags);
3257 return (info->signals & SerialSignal_DCD) ? 1 : 0;
3258}
3259
Alan Coxfcc8ac12009-06-11 12:24:17 +01003260static void dtr_rts(struct tty_port *port, int on)
Alan Cox5d951fb2009-01-02 13:45:19 +00003261{
3262 unsigned long flags;
3263 struct slgt_info *info = container_of(port, struct slgt_info, port);
3264
3265 spin_lock_irqsave(&info->lock,flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01003266 if (on)
3267 info->signals |= SerialSignal_RTS + SerialSignal_DTR;
3268 else
3269 info->signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
Alan Cox5d951fb2009-01-02 13:45:19 +00003270 set_signals(info);
3271 spin_unlock_irqrestore(&info->lock,flags);
3272}
3273
3274
Paul Fulghum705b6c72006-01-08 01:02:06 -08003275/*
3276 * block current process until the device is ready to open
3277 */
3278static int block_til_ready(struct tty_struct *tty, struct file *filp,
3279 struct slgt_info *info)
3280{
3281 DECLARE_WAITQUEUE(wait, current);
3282 int retval;
Joe Perches0fab6de2008-04-28 02:14:02 -07003283 bool do_clocal = false;
3284 bool extra_count = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003285 unsigned long flags;
Alan Cox31f35932009-01-02 13:45:05 +00003286 int cd;
3287 struct tty_port *port = &info->port;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003288
3289 DBGINFO(("%s block_til_ready\n", tty->driver->name));
3290
3291 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
3292 /* nonblock mode is set or port is not enabled */
Alan Cox31f35932009-01-02 13:45:05 +00003293 port->flags |= ASYNC_NORMAL_ACTIVE;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003294 return 0;
3295 }
3296
3297 if (tty->termios->c_cflag & CLOCAL)
Joe Perches0fab6de2008-04-28 02:14:02 -07003298 do_clocal = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003299
3300 /* Wait for carrier detect and the line to become
3301 * free (i.e., not in use by the callout). While we are in
Alan Cox31f35932009-01-02 13:45:05 +00003302 * this loop, port->count is dropped by one, so that
Paul Fulghum705b6c72006-01-08 01:02:06 -08003303 * close() knows when to free things. We restore it upon
3304 * exit, either normal or abnormal.
3305 */
3306
3307 retval = 0;
Alan Cox31f35932009-01-02 13:45:05 +00003308 add_wait_queue(&port->open_wait, &wait);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003309
3310 spin_lock_irqsave(&info->lock, flags);
3311 if (!tty_hung_up_p(filp)) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003312 extra_count = true;
Alan Cox31f35932009-01-02 13:45:05 +00003313 port->count--;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003314 }
3315 spin_unlock_irqrestore(&info->lock, flags);
Alan Cox31f35932009-01-02 13:45:05 +00003316 port->blocked_open++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003317
3318 while (1) {
Alan Cox5d951fb2009-01-02 13:45:19 +00003319 if ((tty->termios->c_cflag & CBAUD))
3320 tty_port_raise_dtr_rts(port);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003321
3322 set_current_state(TASK_INTERRUPTIBLE);
3323
Alan Cox31f35932009-01-02 13:45:05 +00003324 if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)){
3325 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
Paul Fulghum705b6c72006-01-08 01:02:06 -08003326 -EAGAIN : -ERESTARTSYS;
3327 break;
3328 }
3329
Alan Cox31f35932009-01-02 13:45:05 +00003330 cd = tty_port_carrier_raised(port);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003331
Alan Cox31f35932009-01-02 13:45:05 +00003332 if (!(port->flags & ASYNC_CLOSING) && (do_clocal || cd ))
Paul Fulghum705b6c72006-01-08 01:02:06 -08003333 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003334
3335 if (signal_pending(current)) {
3336 retval = -ERESTARTSYS;
3337 break;
3338 }
3339
3340 DBGINFO(("%s block_til_ready wait\n", tty->driver->name));
Arnd Bergmanne142a312010-06-01 22:53:10 +02003341 tty_unlock();
Paul Fulghum705b6c72006-01-08 01:02:06 -08003342 schedule();
Arnd Bergmanne142a312010-06-01 22:53:10 +02003343 tty_lock();
Paul Fulghum705b6c72006-01-08 01:02:06 -08003344 }
3345
3346 set_current_state(TASK_RUNNING);
Alan Cox31f35932009-01-02 13:45:05 +00003347 remove_wait_queue(&port->open_wait, &wait);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003348
3349 if (extra_count)
Alan Cox31f35932009-01-02 13:45:05 +00003350 port->count++;
3351 port->blocked_open--;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003352
3353 if (!retval)
Alan Cox31f35932009-01-02 13:45:05 +00003354 port->flags |= ASYNC_NORMAL_ACTIVE;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003355
3356 DBGINFO(("%s block_til_ready ready, rc=%d\n", tty->driver->name, retval));
3357 return retval;
3358}
3359
3360static int alloc_tmp_rbuf(struct slgt_info *info)
3361{
Paul Fulghum04b374d2006-06-25 05:49:21 -07003362 info->tmp_rbuf = kmalloc(info->max_frame_size + 5, GFP_KERNEL);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003363 if (info->tmp_rbuf == NULL)
3364 return -ENOMEM;
3365 return 0;
3366}
3367
3368static void free_tmp_rbuf(struct slgt_info *info)
3369{
3370 kfree(info->tmp_rbuf);
3371 info->tmp_rbuf = NULL;
3372}
3373
3374/*
3375 * allocate DMA descriptor lists.
3376 */
3377static int alloc_desc(struct slgt_info *info)
3378{
3379 unsigned int i;
3380 unsigned int pbufs;
3381
3382 /* allocate memory to hold descriptor lists */
3383 info->bufs = pci_alloc_consistent(info->pdev, DESC_LIST_SIZE, &info->bufs_dma_addr);
3384 if (info->bufs == NULL)
3385 return -ENOMEM;
3386
3387 memset(info->bufs, 0, DESC_LIST_SIZE);
3388
3389 info->rbufs = (struct slgt_desc*)info->bufs;
3390 info->tbufs = ((struct slgt_desc*)info->bufs) + info->rbuf_count;
3391
3392 pbufs = (unsigned int)info->bufs_dma_addr;
3393
3394 /*
3395 * Build circular lists of descriptors
3396 */
3397
3398 for (i=0; i < info->rbuf_count; i++) {
3399 /* physical address of this descriptor */
3400 info->rbufs[i].pdesc = pbufs + (i * sizeof(struct slgt_desc));
3401
3402 /* physical address of next descriptor */
3403 if (i == info->rbuf_count - 1)
3404 info->rbufs[i].next = cpu_to_le32(pbufs);
3405 else
3406 info->rbufs[i].next = cpu_to_le32(pbufs + ((i+1) * sizeof(struct slgt_desc)));
3407 set_desc_count(info->rbufs[i], DMABUFSIZE);
3408 }
3409
3410 for (i=0; i < info->tbuf_count; i++) {
3411 /* physical address of this descriptor */
3412 info->tbufs[i].pdesc = pbufs + ((info->rbuf_count + i) * sizeof(struct slgt_desc));
3413
3414 /* physical address of next descriptor */
3415 if (i == info->tbuf_count - 1)
3416 info->tbufs[i].next = cpu_to_le32(pbufs + info->rbuf_count * sizeof(struct slgt_desc));
3417 else
3418 info->tbufs[i].next = cpu_to_le32(pbufs + ((info->rbuf_count + i + 1) * sizeof(struct slgt_desc)));
3419 }
3420
3421 return 0;
3422}
3423
3424static void free_desc(struct slgt_info *info)
3425{
3426 if (info->bufs != NULL) {
3427 pci_free_consistent(info->pdev, DESC_LIST_SIZE, info->bufs, info->bufs_dma_addr);
3428 info->bufs = NULL;
3429 info->rbufs = NULL;
3430 info->tbufs = NULL;
3431 }
3432}
3433
3434static int alloc_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count)
3435{
3436 int i;
3437 for (i=0; i < count; i++) {
3438 if ((bufs[i].buf = pci_alloc_consistent(info->pdev, DMABUFSIZE, &bufs[i].buf_dma_addr)) == NULL)
3439 return -ENOMEM;
3440 bufs[i].pbuf = cpu_to_le32((unsigned int)bufs[i].buf_dma_addr);
3441 }
3442 return 0;
3443}
3444
3445static void free_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count)
3446{
3447 int i;
3448 for (i=0; i < count; i++) {
3449 if (bufs[i].buf == NULL)
3450 continue;
3451 pci_free_consistent(info->pdev, DMABUFSIZE, bufs[i].buf, bufs[i].buf_dma_addr);
3452 bufs[i].buf = NULL;
3453 }
3454}
3455
3456static int alloc_dma_bufs(struct slgt_info *info)
3457{
3458 info->rbuf_count = 32;
3459 info->tbuf_count = 32;
3460
3461 if (alloc_desc(info) < 0 ||
3462 alloc_bufs(info, info->rbufs, info->rbuf_count) < 0 ||
3463 alloc_bufs(info, info->tbufs, info->tbuf_count) < 0 ||
3464 alloc_tmp_rbuf(info) < 0) {
3465 DBGERR(("%s DMA buffer alloc fail\n", info->device_name));
3466 return -ENOMEM;
3467 }
3468 reset_rbufs(info);
3469 return 0;
3470}
3471
3472static void free_dma_bufs(struct slgt_info *info)
3473{
3474 if (info->bufs) {
3475 free_bufs(info, info->rbufs, info->rbuf_count);
3476 free_bufs(info, info->tbufs, info->tbuf_count);
3477 free_desc(info);
3478 }
3479 free_tmp_rbuf(info);
3480}
3481
3482static int claim_resources(struct slgt_info *info)
3483{
3484 if (request_mem_region(info->phys_reg_addr, SLGT_REG_SIZE, "synclink_gt") == NULL) {
3485 DBGERR(("%s reg addr conflict, addr=%08X\n",
3486 info->device_name, info->phys_reg_addr));
3487 info->init_error = DiagStatus_AddressConflict;
3488 goto errout;
3489 }
3490 else
Joe Perches0fab6de2008-04-28 02:14:02 -07003491 info->reg_addr_requested = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003492
Alan Cox24cb2332008-04-30 00:54:19 -07003493 info->reg_addr = ioremap_nocache(info->phys_reg_addr, SLGT_REG_SIZE);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003494 if (!info->reg_addr) {
3495 DBGERR(("%s cant map device registers, addr=%08X\n",
3496 info->device_name, info->phys_reg_addr));
3497 info->init_error = DiagStatus_CantAssignPciResources;
3498 goto errout;
3499 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08003500 return 0;
3501
3502errout:
3503 release_resources(info);
3504 return -ENODEV;
3505}
3506
3507static void release_resources(struct slgt_info *info)
3508{
3509 if (info->irq_requested) {
3510 free_irq(info->irq_level, info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003511 info->irq_requested = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003512 }
3513
3514 if (info->reg_addr_requested) {
3515 release_mem_region(info->phys_reg_addr, SLGT_REG_SIZE);
Joe Perches0fab6de2008-04-28 02:14:02 -07003516 info->reg_addr_requested = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003517 }
3518
3519 if (info->reg_addr) {
Paul Fulghum0c8365e2006-01-11 12:17:39 -08003520 iounmap(info->reg_addr);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003521 info->reg_addr = NULL;
3522 }
3523}
3524
3525/* Add the specified device instance data structure to the
3526 * global linked list of devices and increment the device count.
3527 */
3528static void add_device(struct slgt_info *info)
3529{
3530 char *devstr;
3531
3532 info->next_device = NULL;
3533 info->line = slgt_device_count;
3534 sprintf(info->device_name, "%s%d", tty_dev_prefix, info->line);
3535
3536 if (info->line < MAX_DEVICES) {
3537 if (maxframe[info->line])
3538 info->max_frame_size = maxframe[info->line];
Paul Fulghum705b6c72006-01-08 01:02:06 -08003539 }
3540
3541 slgt_device_count++;
3542
3543 if (!slgt_device_list)
3544 slgt_device_list = info;
3545 else {
3546 struct slgt_info *current_dev = slgt_device_list;
3547 while(current_dev->next_device)
3548 current_dev = current_dev->next_device;
3549 current_dev->next_device = info;
3550 }
3551
3552 if (info->max_frame_size < 4096)
3553 info->max_frame_size = 4096;
3554 else if (info->max_frame_size > 65535)
3555 info->max_frame_size = 65535;
3556
3557 switch(info->pdev->device) {
3558 case SYNCLINK_GT_DEVICE_ID:
3559 devstr = "GT";
3560 break;
Paul Fulghum6f84be82006-06-25 05:49:22 -07003561 case SYNCLINK_GT2_DEVICE_ID:
3562 devstr = "GT2";
3563 break;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003564 case SYNCLINK_GT4_DEVICE_ID:
3565 devstr = "GT4";
3566 break;
3567 case SYNCLINK_AC_DEVICE_ID:
3568 devstr = "AC";
3569 info->params.mode = MGSL_MODE_ASYNC;
3570 break;
3571 default:
3572 devstr = "(unknown model)";
3573 }
3574 printk("SyncLink %s %s IO=%08x IRQ=%d MaxFrameSize=%u\n",
3575 devstr, info->device_name, info->phys_reg_addr,
3576 info->irq_level, info->max_frame_size);
3577
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003578#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08003579 hdlcdev_init(info);
3580#endif
3581}
3582
Alan Cox31f35932009-01-02 13:45:05 +00003583static const struct tty_port_operations slgt_port_ops = {
3584 .carrier_raised = carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +01003585 .dtr_rts = dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00003586};
3587
Paul Fulghum705b6c72006-01-08 01:02:06 -08003588/*
3589 * allocate device instance structure, return NULL on failure
3590 */
3591static struct slgt_info *alloc_dev(int adapter_num, int port_num, struct pci_dev *pdev)
3592{
3593 struct slgt_info *info;
3594
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07003595 info = kzalloc(sizeof(struct slgt_info), GFP_KERNEL);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003596
3597 if (!info) {
3598 DBGERR(("%s device alloc failed adapter=%d port=%d\n",
3599 driver_name, adapter_num, port_num));
3600 } else {
Alan Cox44b7d1b2008-07-16 21:57:18 +01003601 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00003602 info->port.ops = &slgt_port_ops;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003603 info->magic = MGSL_MAGIC;
David Howellsc4028952006-11-22 14:57:56 +00003604 INIT_WORK(&info->task, bh_handler);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003605 info->max_frame_size = 4096;
Paul Fulghum1f807692009-04-02 16:58:30 -07003606 info->base_clock = 14745600;
Paul Fulghum814dae02008-07-22 11:22:14 +01003607 info->rbuf_fill_level = DMABUFSIZE;
Alan Cox44b7d1b2008-07-16 21:57:18 +01003608 info->port.close_delay = 5*HZ/10;
3609 info->port.closing_wait = 30*HZ;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003610 init_waitqueue_head(&info->status_event_wait_q);
3611 init_waitqueue_head(&info->event_wait_q);
3612 spin_lock_init(&info->netlock);
3613 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
3614 info->idle_mode = HDLC_TXIDLE_FLAGS;
3615 info->adapter_num = adapter_num;
3616 info->port_num = port_num;
3617
Jiri Slaby40565f12007-02-12 00:52:31 -08003618 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
3619 setup_timer(&info->rx_timer, rx_timeout, (unsigned long)info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003620
3621 /* Copy configuration info to device instance data */
3622 info->pdev = pdev;
3623 info->irq_level = pdev->irq;
3624 info->phys_reg_addr = pci_resource_start(pdev,0);
3625
Paul Fulghum705b6c72006-01-08 01:02:06 -08003626 info->bus_type = MGSL_BUS_TYPE_PCI;
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -07003627 info->irq_flags = IRQF_SHARED;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003628
3629 info->init_error = -1; /* assume error, set to 0 on successful init */
3630 }
3631
3632 return info;
3633}
3634
3635static void device_init(int adapter_num, struct pci_dev *pdev)
3636{
3637 struct slgt_info *port_array[SLGT_MAX_PORTS];
3638 int i;
3639 int port_count = 1;
3640
Paul Fulghum6f84be82006-06-25 05:49:22 -07003641 if (pdev->device == SYNCLINK_GT2_DEVICE_ID)
3642 port_count = 2;
3643 else if (pdev->device == SYNCLINK_GT4_DEVICE_ID)
Paul Fulghum705b6c72006-01-08 01:02:06 -08003644 port_count = 4;
3645
3646 /* allocate device instances for all ports */
3647 for (i=0; i < port_count; ++i) {
3648 port_array[i] = alloc_dev(adapter_num, i, pdev);
3649 if (port_array[i] == NULL) {
3650 for (--i; i >= 0; --i)
3651 kfree(port_array[i]);
3652 return;
3653 }
3654 }
3655
3656 /* give copy of port_array to all ports and add to device list */
3657 for (i=0; i < port_count; ++i) {
3658 memcpy(port_array[i]->port_array, port_array, sizeof(port_array));
3659 add_device(port_array[i]);
3660 port_array[i]->port_count = port_count;
3661 spin_lock_init(&port_array[i]->lock);
3662 }
3663
3664 /* Allocate and claim adapter resources */
3665 if (!claim_resources(port_array[0])) {
3666
3667 alloc_dma_bufs(port_array[0]);
3668
3669 /* copy resource information from first port to others */
3670 for (i = 1; i < port_count; ++i) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08003671 port_array[i]->irq_level = port_array[0]->irq_level;
3672 port_array[i]->reg_addr = port_array[0]->reg_addr;
3673 alloc_dma_bufs(port_array[i]);
3674 }
3675
3676 if (request_irq(port_array[0]->irq_level,
3677 slgt_interrupt,
3678 port_array[0]->irq_flags,
3679 port_array[0]->device_name,
3680 port_array[0]) < 0) {
3681 DBGERR(("%s request_irq failed IRQ=%d\n",
3682 port_array[0]->device_name,
3683 port_array[0]->irq_level));
3684 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003685 port_array[0]->irq_requested = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003686 adapter_test(port_array[0]);
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003687 for (i=1 ; i < port_count ; i++) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08003688 port_array[i]->init_error = port_array[0]->init_error;
Paul Fulghum0080b7a2006-03-28 01:56:15 -08003689 port_array[i]->gpio_present = port_array[0]->gpio_present;
3690 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08003691 }
3692 }
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003693
3694 for (i=0; i < port_count; ++i)
3695 tty_register_device(serial_driver, port_array[i]->line, &(port_array[i]->pdev->dev));
Paul Fulghum705b6c72006-01-08 01:02:06 -08003696}
3697
3698static int __devinit init_one(struct pci_dev *dev,
3699 const struct pci_device_id *ent)
3700{
3701 if (pci_enable_device(dev)) {
3702 printk("error enabling pci device %p\n", dev);
3703 return -EIO;
3704 }
3705 pci_set_master(dev);
3706 device_init(slgt_device_count, dev);
3707 return 0;
3708}
3709
3710static void __devexit remove_one(struct pci_dev *dev)
3711{
3712}
3713
Jeff Dikeb68e31d2006-10-02 02:17:18 -07003714static const struct tty_operations ops = {
Paul Fulghum705b6c72006-01-08 01:02:06 -08003715 .open = open,
3716 .close = close,
3717 .write = write,
3718 .put_char = put_char,
3719 .flush_chars = flush_chars,
3720 .write_room = write_room,
3721 .chars_in_buffer = chars_in_buffer,
3722 .flush_buffer = flush_buffer,
3723 .ioctl = ioctl,
Paul Fulghum2acdb162007-05-10 22:22:43 -07003724 .compat_ioctl = slgt_compat_ioctl,
Paul Fulghum705b6c72006-01-08 01:02:06 -08003725 .throttle = throttle,
3726 .unthrottle = unthrottle,
3727 .send_xchar = send_xchar,
3728 .break_ctl = set_break,
3729 .wait_until_sent = wait_until_sent,
Paul Fulghum705b6c72006-01-08 01:02:06 -08003730 .set_termios = set_termios,
3731 .stop = tx_hold,
3732 .start = tx_release,
3733 .hangup = hangup,
3734 .tiocmget = tiocmget,
3735 .tiocmset = tiocmset,
Alan Cox05871022010-09-16 18:21:52 +01003736 .get_icount = get_icount,
Alexey Dobriyana18c56e2009-03-31 15:19:19 -07003737 .proc_fops = &synclink_gt_proc_fops,
Paul Fulghum705b6c72006-01-08 01:02:06 -08003738};
3739
3740static void slgt_cleanup(void)
3741{
3742 int rc;
3743 struct slgt_info *info;
3744 struct slgt_info *tmp;
3745
Paul Fulghuma6b2f872009-01-15 13:50:57 -08003746 printk(KERN_INFO "unload %s\n", driver_name);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003747
3748 if (serial_driver) {
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003749 for (info=slgt_device_list ; info != NULL ; info=info->next_device)
3750 tty_unregister_device(serial_driver, info->line);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003751 if ((rc = tty_unregister_driver(serial_driver)))
3752 DBGERR(("tty_unregister_driver error=%d\n", rc));
3753 put_tty_driver(serial_driver);
3754 }
3755
3756 /* reset devices */
3757 info = slgt_device_list;
3758 while(info) {
3759 reset_port(info);
3760 info = info->next_device;
3761 }
3762
3763 /* release devices */
3764 info = slgt_device_list;
3765 while(info) {
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003766#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08003767 hdlcdev_exit(info);
3768#endif
3769 free_dma_bufs(info);
3770 free_tmp_rbuf(info);
3771 if (info->port_num == 0)
3772 release_resources(info);
3773 tmp = info;
3774 info = info->next_device;
3775 kfree(tmp);
3776 }
3777
3778 if (pci_registered)
3779 pci_unregister_driver(&pci_driver);
3780}
3781
3782/*
3783 * Driver initialization entry point.
3784 */
3785static int __init slgt_init(void)
3786{
3787 int rc;
3788
Paul Fulghuma6b2f872009-01-15 13:50:57 -08003789 printk(KERN_INFO "%s\n", driver_name);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003790
Paul Fulghum705b6c72006-01-08 01:02:06 -08003791 serial_driver = alloc_tty_driver(MAX_DEVICES);
3792 if (!serial_driver) {
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003793 printk("%s can't allocate tty driver\n", driver_name);
3794 return -ENOMEM;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003795 }
3796
3797 /* Initialize the tty_driver structure */
3798
3799 serial_driver->owner = THIS_MODULE;
3800 serial_driver->driver_name = tty_driver_name;
3801 serial_driver->name = tty_dev_prefix;
3802 serial_driver->major = ttymajor;
3803 serial_driver->minor_start = 64;
3804 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
3805 serial_driver->subtype = SERIAL_TYPE_NORMAL;
3806 serial_driver->init_termios = tty_std_termios;
3807 serial_driver->init_termios.c_cflag =
3808 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08003809 serial_driver->init_termios.c_ispeed = 9600;
3810 serial_driver->init_termios.c_ospeed = 9600;
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003811 serial_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003812 tty_set_operations(serial_driver, &ops);
3813 if ((rc = tty_register_driver(serial_driver)) < 0) {
3814 DBGERR(("%s can't register serial driver\n", driver_name));
3815 put_tty_driver(serial_driver);
3816 serial_driver = NULL;
3817 goto error;
3818 }
3819
Paul Fulghuma6b2f872009-01-15 13:50:57 -08003820 printk(KERN_INFO "%s, tty major#%d\n",
3821 driver_name, serial_driver->major);
Paul Fulghum705b6c72006-01-08 01:02:06 -08003822
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003823 slgt_device_count = 0;
3824 if ((rc = pci_register_driver(&pci_driver)) < 0) {
3825 printk("%s pci_register_driver error=%d\n", driver_name, rc);
3826 goto error;
3827 }
Joe Perches0fab6de2008-04-28 02:14:02 -07003828 pci_registered = true;
Paul Fulghum62eb5b12007-05-08 00:31:48 -07003829
3830 if (!slgt_device_list)
3831 printk("%s no devices found\n",driver_name);
3832
Paul Fulghum705b6c72006-01-08 01:02:06 -08003833 return 0;
3834
3835error:
3836 slgt_cleanup();
3837 return rc;
3838}
3839
3840static void __exit slgt_exit(void)
3841{
3842 slgt_cleanup();
3843}
3844
3845module_init(slgt_init);
3846module_exit(slgt_exit);
3847
3848/*
3849 * register access routines
3850 */
3851
3852#define CALC_REGADDR() \
3853 unsigned long reg_addr = ((unsigned long)info->reg_addr) + addr; \
3854 if (addr >= 0x80) \
Paul Fulghum98072242010-10-27 15:34:22 -07003855 reg_addr += (info->port_num) * 32; \
3856 else if (addr >= 0x40) \
3857 reg_addr += (info->port_num) * 16;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003858
3859static __u8 rd_reg8(struct slgt_info *info, unsigned int addr)
3860{
3861 CALC_REGADDR();
3862 return readb((void __iomem *)reg_addr);
3863}
3864
3865static void wr_reg8(struct slgt_info *info, unsigned int addr, __u8 value)
3866{
3867 CALC_REGADDR();
3868 writeb(value, (void __iomem *)reg_addr);
3869}
3870
3871static __u16 rd_reg16(struct slgt_info *info, unsigned int addr)
3872{
3873 CALC_REGADDR();
3874 return readw((void __iomem *)reg_addr);
3875}
3876
3877static void wr_reg16(struct slgt_info *info, unsigned int addr, __u16 value)
3878{
3879 CALC_REGADDR();
3880 writew(value, (void __iomem *)reg_addr);
3881}
3882
3883static __u32 rd_reg32(struct slgt_info *info, unsigned int addr)
3884{
3885 CALC_REGADDR();
3886 return readl((void __iomem *)reg_addr);
3887}
3888
3889static void wr_reg32(struct slgt_info *info, unsigned int addr, __u32 value)
3890{
3891 CALC_REGADDR();
3892 writel(value, (void __iomem *)reg_addr);
3893}
3894
3895static void rdma_reset(struct slgt_info *info)
3896{
3897 unsigned int i;
3898
3899 /* set reset bit */
3900 wr_reg32(info, RDCSR, BIT1);
3901
3902 /* wait for enable bit cleared */
3903 for(i=0 ; i < 1000 ; i++)
3904 if (!(rd_reg32(info, RDCSR) & BIT0))
3905 break;
3906}
3907
3908static void tdma_reset(struct slgt_info *info)
3909{
3910 unsigned int i;
3911
3912 /* set reset bit */
3913 wr_reg32(info, TDCSR, BIT1);
3914
3915 /* wait for enable bit cleared */
3916 for(i=0 ; i < 1000 ; i++)
3917 if (!(rd_reg32(info, TDCSR) & BIT0))
3918 break;
3919}
3920
3921/*
3922 * enable internal loopback
3923 * TxCLK and RxCLK are generated from BRG
3924 * and TxD is looped back to RxD internally.
3925 */
3926static void enable_loopback(struct slgt_info *info)
3927{
3928 /* SCR (serial control) BIT2=looopback enable */
3929 wr_reg16(info, SCR, (unsigned short)(rd_reg16(info, SCR) | BIT2));
3930
3931 if (info->params.mode != MGSL_MODE_ASYNC) {
3932 /* CCR (clock control)
3933 * 07..05 tx clock source (010 = BRG)
3934 * 04..02 rx clock source (010 = BRG)
3935 * 01 auxclk enable (0 = disable)
3936 * 00 BRG enable (1 = enable)
3937 *
3938 * 0100 1001
3939 */
3940 wr_reg8(info, CCR, 0x49);
3941
3942 /* set speed if available, otherwise use default */
3943 if (info->params.clock_speed)
3944 set_rate(info, info->params.clock_speed);
3945 else
3946 set_rate(info, 3686400);
3947 }
3948}
3949
3950/*
3951 * set baud rate generator to specified rate
3952 */
3953static void set_rate(struct slgt_info *info, u32 rate)
3954{
3955 unsigned int div;
Paul Fulghum1f807692009-04-02 16:58:30 -07003956 unsigned int osc = info->base_clock;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003957
3958 /* div = osc/rate - 1
3959 *
3960 * Round div up if osc/rate is not integer to
3961 * force to next slowest rate.
3962 */
3963
3964 if (rate) {
3965 div = osc/rate;
3966 if (!(osc % rate) && div)
3967 div--;
3968 wr_reg16(info, BDR, (unsigned short)div);
3969 }
3970}
3971
3972static void rx_stop(struct slgt_info *info)
3973{
3974 unsigned short val;
3975
3976 /* disable and reset receiver */
3977 val = rd_reg16(info, RCR) & ~BIT1; /* clear enable bit */
3978 wr_reg16(info, RCR, (unsigned short)(val | BIT2)); /* set reset bit */
3979 wr_reg16(info, RCR, val); /* clear reset bit */
3980
3981 slgt_irq_off(info, IRQ_RXOVER + IRQ_RXDATA + IRQ_RXIDLE);
3982
3983 /* clear pending rx interrupts */
3984 wr_reg16(info, SSR, IRQ_RXIDLE + IRQ_RXOVER);
3985
3986 rdma_reset(info);
3987
Joe Perches0fab6de2008-04-28 02:14:02 -07003988 info->rx_enabled = false;
3989 info->rx_restart = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08003990}
3991
3992static void rx_start(struct slgt_info *info)
3993{
3994 unsigned short val;
3995
3996 slgt_irq_off(info, IRQ_RXOVER + IRQ_RXDATA);
3997
3998 /* clear pending rx overrun IRQ */
3999 wr_reg16(info, SSR, IRQ_RXOVER);
4000
4001 /* reset and disable receiver */
4002 val = rd_reg16(info, RCR) & ~BIT1; /* clear enable bit */
4003 wr_reg16(info, RCR, (unsigned short)(val | BIT2)); /* set reset bit */
4004 wr_reg16(info, RCR, val); /* clear reset bit */
4005
4006 rdma_reset(info);
4007 reset_rbufs(info);
4008
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01004009 if (info->rx_pio) {
4010 /* rx request when rx FIFO not empty */
4011 wr_reg16(info, SCR, (unsigned short)(rd_reg16(info, SCR) & ~BIT14));
4012 slgt_irq_on(info, IRQ_RXDATA);
4013 if (info->params.mode == MGSL_MODE_ASYNC) {
4014 /* enable saving of rx status */
4015 wr_reg32(info, RDCSR, BIT6);
4016 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004017 } else {
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01004018 /* rx request when rx FIFO half full */
4019 wr_reg16(info, SCR, (unsigned short)(rd_reg16(info, SCR) | BIT14));
4020 /* set 1st descriptor address */
4021 wr_reg32(info, RDDAR, info->rbufs[0].pdesc);
4022
4023 if (info->params.mode != MGSL_MODE_ASYNC) {
4024 /* enable rx DMA and DMA interrupt */
4025 wr_reg32(info, RDCSR, (BIT2 + BIT0));
4026 } else {
4027 /* enable saving of rx status, rx DMA and DMA interrupt */
4028 wr_reg32(info, RDCSR, (BIT6 + BIT2 + BIT0));
4029 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004030 }
4031
4032 slgt_irq_on(info, IRQ_RXOVER);
4033
4034 /* enable receiver */
4035 wr_reg16(info, RCR, (unsigned short)(rd_reg16(info, RCR) | BIT1));
4036
Joe Perches0fab6de2008-04-28 02:14:02 -07004037 info->rx_restart = false;
4038 info->rx_enabled = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004039}
4040
4041static void tx_start(struct slgt_info *info)
4042{
4043 if (!info->tx_enabled) {
4044 wr_reg16(info, TCR,
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004045 (unsigned short)((rd_reg16(info, TCR) | BIT1) & ~BIT2));
Joe Perches0fab6de2008-04-28 02:14:02 -07004046 info->tx_enabled = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004047 }
4048
Paul Fulghumde538eb2009-12-09 12:31:39 -08004049 if (desc_count(info->tbufs[info->tbuf_start])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07004050 info->drop_rts_on_tx_done = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004051
4052 if (info->params.mode != MGSL_MODE_ASYNC) {
4053 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
4054 get_signals(info);
4055 if (!(info->signals & SerialSignal_RTS)) {
4056 info->signals |= SerialSignal_RTS;
4057 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07004058 info->drop_rts_on_tx_done = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004059 }
4060 }
4061
4062 slgt_irq_off(info, IRQ_TXDATA);
4063 slgt_irq_on(info, IRQ_TXUNDER + IRQ_TXIDLE);
4064 /* clear tx idle and underrun status bits */
4065 wr_reg16(info, SSR, (unsigned short)(IRQ_TXIDLE + IRQ_TXUNDER));
Paul Fulghum705b6c72006-01-08 01:02:06 -08004066 } else {
Paul Fulghum705b6c72006-01-08 01:02:06 -08004067 slgt_irq_off(info, IRQ_TXDATA);
4068 slgt_irq_on(info, IRQ_TXIDLE);
4069 /* clear tx idle status bit */
4070 wr_reg16(info, SSR, IRQ_TXIDLE);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004071 }
Paul Fulghumce892942009-06-24 18:34:51 +01004072 /* set 1st descriptor address and start DMA */
4073 wr_reg32(info, TDDAR, info->tbufs[info->tbuf_start].pdesc);
4074 wr_reg32(info, TDCSR, BIT2 + BIT0);
Joe Perches0fab6de2008-04-28 02:14:02 -07004075 info->tx_active = true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004076 }
4077}
4078
4079static void tx_stop(struct slgt_info *info)
4080{
4081 unsigned short val;
4082
4083 del_timer(&info->tx_timer);
4084
4085 tdma_reset(info);
4086
4087 /* reset and disable transmitter */
4088 val = rd_reg16(info, TCR) & ~BIT1; /* clear enable bit */
4089 wr_reg16(info, TCR, (unsigned short)(val | BIT2)); /* set reset bit */
Paul Fulghum705b6c72006-01-08 01:02:06 -08004090
4091 slgt_irq_off(info, IRQ_TXDATA + IRQ_TXIDLE + IRQ_TXUNDER);
4092
4093 /* clear tx idle and underrun status bit */
4094 wr_reg16(info, SSR, (unsigned short)(IRQ_TXIDLE + IRQ_TXUNDER));
4095
4096 reset_tbufs(info);
4097
Joe Perches0fab6de2008-04-28 02:14:02 -07004098 info->tx_enabled = false;
4099 info->tx_active = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004100}
4101
4102static void reset_port(struct slgt_info *info)
4103{
4104 if (!info->reg_addr)
4105 return;
4106
4107 tx_stop(info);
4108 rx_stop(info);
4109
4110 info->signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
4111 set_signals(info);
4112
4113 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
4114}
4115
4116static void reset_adapter(struct slgt_info *info)
4117{
4118 int i;
4119 for (i=0; i < info->port_count; ++i) {
4120 if (info->port_array[i])
4121 reset_port(info->port_array[i]);
4122 }
4123}
4124
4125static void async_mode(struct slgt_info *info)
4126{
4127 unsigned short val;
4128
4129 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
4130 tx_stop(info);
4131 rx_stop(info);
4132
4133 /* TCR (tx control)
4134 *
4135 * 15..13 mode, 010=async
4136 * 12..10 encoding, 000=NRZ
4137 * 09 parity enable
4138 * 08 1=odd parity, 0=even parity
4139 * 07 1=RTS driver control
4140 * 06 1=break enable
4141 * 05..04 character length
4142 * 00=5 bits
4143 * 01=6 bits
4144 * 10=7 bits
4145 * 11=8 bits
4146 * 03 0=1 stop bit, 1=2 stop bits
4147 * 02 reset
4148 * 01 enable
4149 * 00 auto-CTS enable
4150 */
4151 val = 0x4000;
4152
4153 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
4154 val |= BIT7;
4155
4156 if (info->params.parity != ASYNC_PARITY_NONE) {
4157 val |= BIT9;
4158 if (info->params.parity == ASYNC_PARITY_ODD)
4159 val |= BIT8;
4160 }
4161
4162 switch (info->params.data_bits)
4163 {
4164 case 6: val |= BIT4; break;
4165 case 7: val |= BIT5; break;
4166 case 8: val |= BIT5 + BIT4; break;
4167 }
4168
4169 if (info->params.stop_bits != 1)
4170 val |= BIT3;
4171
4172 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
4173 val |= BIT0;
4174
4175 wr_reg16(info, TCR, val);
4176
4177 /* RCR (rx control)
4178 *
4179 * 15..13 mode, 010=async
4180 * 12..10 encoding, 000=NRZ
4181 * 09 parity enable
4182 * 08 1=odd parity, 0=even parity
4183 * 07..06 reserved, must be 0
4184 * 05..04 character length
4185 * 00=5 bits
4186 * 01=6 bits
4187 * 10=7 bits
4188 * 11=8 bits
4189 * 03 reserved, must be zero
4190 * 02 reset
4191 * 01 enable
4192 * 00 auto-DCD enable
4193 */
4194 val = 0x4000;
4195
4196 if (info->params.parity != ASYNC_PARITY_NONE) {
4197 val |= BIT9;
4198 if (info->params.parity == ASYNC_PARITY_ODD)
4199 val |= BIT8;
4200 }
4201
4202 switch (info->params.data_bits)
4203 {
4204 case 6: val |= BIT4; break;
4205 case 7: val |= BIT5; break;
4206 case 8: val |= BIT5 + BIT4; break;
4207 }
4208
4209 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
4210 val |= BIT0;
4211
4212 wr_reg16(info, RCR, val);
4213
4214 /* CCR (clock control)
4215 *
4216 * 07..05 011 = tx clock source is BRG/16
4217 * 04..02 010 = rx clock source is BRG
4218 * 01 0 = auxclk disabled
4219 * 00 1 = BRG enabled
4220 *
4221 * 0110 1001
4222 */
4223 wr_reg8(info, CCR, 0x69);
4224
4225 msc_set_vcr(info);
4226
Paul Fulghum705b6c72006-01-08 01:02:06 -08004227 /* SCR (serial control)
4228 *
4229 * 15 1=tx req on FIFO half empty
4230 * 14 1=rx req on FIFO half full
4231 * 13 tx data IRQ enable
4232 * 12 tx idle IRQ enable
4233 * 11 rx break on IRQ enable
4234 * 10 rx data IRQ enable
4235 * 09 rx break off IRQ enable
4236 * 08 overrun IRQ enable
4237 * 07 DSR IRQ enable
4238 * 06 CTS IRQ enable
4239 * 05 DCD IRQ enable
4240 * 04 RI IRQ enable
Paul Fulghum1f807692009-04-02 16:58:30 -07004241 * 03 0=16x sampling, 1=8x sampling
Paul Fulghum705b6c72006-01-08 01:02:06 -08004242 * 02 1=txd->rxd internal loopback enable
4243 * 01 reserved, must be zero
4244 * 00 1=master IRQ enable
4245 */
4246 val = BIT15 + BIT14 + BIT0;
Paul Fulghum1f807692009-04-02 16:58:30 -07004247 /* JCR[8] : 1 = x8 async mode feature available */
4248 if ((rd_reg32(info, JCR) & BIT8) && info->params.data_rate &&
4249 ((info->base_clock < (info->params.data_rate * 16)) ||
4250 (info->base_clock % (info->params.data_rate * 16)))) {
4251 /* use 8x sampling */
4252 val |= BIT3;
4253 set_rate(info, info->params.data_rate * 8);
4254 } else {
4255 /* use 16x sampling */
4256 set_rate(info, info->params.data_rate * 16);
4257 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004258 wr_reg16(info, SCR, val);
4259
4260 slgt_irq_on(info, IRQ_RXBREAK | IRQ_RXOVER);
4261
Paul Fulghum705b6c72006-01-08 01:02:06 -08004262 if (info->params.loopback)
4263 enable_loopback(info);
4264}
4265
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004266static void sync_mode(struct slgt_info *info)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004267{
4268 unsigned short val;
4269
4270 slgt_irq_off(info, IRQ_ALL | IRQ_MASTER);
4271 tx_stop(info);
4272 rx_stop(info);
4273
4274 /* TCR (tx control)
4275 *
Paul Fulghum98072242010-10-27 15:34:22 -07004276 * 15..13 mode
4277 * 000=HDLC/SDLC
4278 * 001=raw bit synchronous
4279 * 010=asynchronous/isochronous
4280 * 011=monosync byte synchronous
4281 * 100=bisync byte synchronous
4282 * 101=xsync byte synchronous
Paul Fulghum705b6c72006-01-08 01:02:06 -08004283 * 12..10 encoding
4284 * 09 CRC enable
4285 * 08 CRC32
4286 * 07 1=RTS driver control
4287 * 06 preamble enable
4288 * 05..04 preamble length
4289 * 03 share open/close flag
4290 * 02 reset
4291 * 01 enable
4292 * 00 auto-CTS enable
4293 */
Paul Fulghum993456c2008-07-22 11:22:04 +01004294 val = BIT2;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004295
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004296 switch(info->params.mode) {
Paul Fulghum98072242010-10-27 15:34:22 -07004297 case MGSL_MODE_XSYNC:
4298 val |= BIT15 + BIT13;
4299 break;
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004300 case MGSL_MODE_MONOSYNC: val |= BIT14 + BIT13; break;
4301 case MGSL_MODE_BISYNC: val |= BIT15; break;
4302 case MGSL_MODE_RAW: val |= BIT13; break;
4303 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004304 if (info->if_mode & MGSL_INTERFACE_RTS_EN)
4305 val |= BIT7;
4306
4307 switch(info->params.encoding)
4308 {
4309 case HDLC_ENCODING_NRZB: val |= BIT10; break;
4310 case HDLC_ENCODING_NRZI_MARK: val |= BIT11; break;
4311 case HDLC_ENCODING_NRZI: val |= BIT11 + BIT10; break;
4312 case HDLC_ENCODING_BIPHASE_MARK: val |= BIT12; break;
4313 case HDLC_ENCODING_BIPHASE_SPACE: val |= BIT12 + BIT10; break;
4314 case HDLC_ENCODING_BIPHASE_LEVEL: val |= BIT12 + BIT11; break;
4315 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: val |= BIT12 + BIT11 + BIT10; break;
4316 }
4317
Paul Fulghum04b374d2006-06-25 05:49:21 -07004318 switch (info->params.crc_type & HDLC_CRC_MASK)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004319 {
4320 case HDLC_CRC_16_CCITT: val |= BIT9; break;
4321 case HDLC_CRC_32_CCITT: val |= BIT9 + BIT8; break;
4322 }
4323
4324 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
4325 val |= BIT6;
4326
4327 switch (info->params.preamble_length)
4328 {
4329 case HDLC_PREAMBLE_LENGTH_16BITS: val |= BIT5; break;
4330 case HDLC_PREAMBLE_LENGTH_32BITS: val |= BIT4; break;
4331 case HDLC_PREAMBLE_LENGTH_64BITS: val |= BIT5 + BIT4; break;
4332 }
4333
4334 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
4335 val |= BIT0;
4336
4337 wr_reg16(info, TCR, val);
4338
4339 /* TPR (transmit preamble) */
4340
4341 switch (info->params.preamble)
4342 {
4343 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
4344 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
4345 case HDLC_PREAMBLE_PATTERN_ZEROS: val = 0x00; break;
4346 case HDLC_PREAMBLE_PATTERN_10: val = 0x55; break;
4347 case HDLC_PREAMBLE_PATTERN_01: val = 0xaa; break;
4348 default: val = 0x7e; break;
4349 }
4350 wr_reg8(info, TPR, (unsigned char)val);
4351
4352 /* RCR (rx control)
4353 *
Paul Fulghum98072242010-10-27 15:34:22 -07004354 * 15..13 mode
4355 * 000=HDLC/SDLC
4356 * 001=raw bit synchronous
4357 * 010=asynchronous/isochronous
4358 * 011=monosync byte synchronous
4359 * 100=bisync byte synchronous
4360 * 101=xsync byte synchronous
Paul Fulghum705b6c72006-01-08 01:02:06 -08004361 * 12..10 encoding
4362 * 09 CRC enable
4363 * 08 CRC32
4364 * 07..03 reserved, must be 0
4365 * 02 reset
4366 * 01 enable
4367 * 00 auto-DCD enable
4368 */
4369 val = 0;
4370
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004371 switch(info->params.mode) {
Paul Fulghum98072242010-10-27 15:34:22 -07004372 case MGSL_MODE_XSYNC:
4373 val |= BIT15 + BIT13;
4374 break;
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004375 case MGSL_MODE_MONOSYNC: val |= BIT14 + BIT13; break;
4376 case MGSL_MODE_BISYNC: val |= BIT15; break;
4377 case MGSL_MODE_RAW: val |= BIT13; break;
4378 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004379
4380 switch(info->params.encoding)
4381 {
4382 case HDLC_ENCODING_NRZB: val |= BIT10; break;
4383 case HDLC_ENCODING_NRZI_MARK: val |= BIT11; break;
4384 case HDLC_ENCODING_NRZI: val |= BIT11 + BIT10; break;
4385 case HDLC_ENCODING_BIPHASE_MARK: val |= BIT12; break;
4386 case HDLC_ENCODING_BIPHASE_SPACE: val |= BIT12 + BIT10; break;
4387 case HDLC_ENCODING_BIPHASE_LEVEL: val |= BIT12 + BIT11; break;
4388 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: val |= BIT12 + BIT11 + BIT10; break;
4389 }
4390
Paul Fulghum04b374d2006-06-25 05:49:21 -07004391 switch (info->params.crc_type & HDLC_CRC_MASK)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004392 {
4393 case HDLC_CRC_16_CCITT: val |= BIT9; break;
4394 case HDLC_CRC_32_CCITT: val |= BIT9 + BIT8; break;
4395 }
4396
4397 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
4398 val |= BIT0;
4399
4400 wr_reg16(info, RCR, val);
4401
4402 /* CCR (clock control)
4403 *
4404 * 07..05 tx clock source
4405 * 04..02 rx clock source
4406 * 01 auxclk enable
4407 * 00 BRG enable
4408 */
4409 val = 0;
4410
4411 if (info->params.flags & HDLC_FLAG_TXC_BRG)
4412 {
4413 // when RxC source is DPLL, BRG generates 16X DPLL
4414 // reference clock, so take TxC from BRG/16 to get
4415 // transmit clock at actual data rate
4416 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
4417 val |= BIT6 + BIT5; /* 011, txclk = BRG/16 */
4418 else
4419 val |= BIT6; /* 010, txclk = BRG */
4420 }
4421 else if (info->params.flags & HDLC_FLAG_TXC_DPLL)
4422 val |= BIT7; /* 100, txclk = DPLL Input */
4423 else if (info->params.flags & HDLC_FLAG_TXC_RXCPIN)
4424 val |= BIT5; /* 001, txclk = RXC Input */
4425
4426 if (info->params.flags & HDLC_FLAG_RXC_BRG)
4427 val |= BIT3; /* 010, rxclk = BRG */
4428 else if (info->params.flags & HDLC_FLAG_RXC_DPLL)
4429 val |= BIT4; /* 100, rxclk = DPLL */
4430 else if (info->params.flags & HDLC_FLAG_RXC_TXCPIN)
4431 val |= BIT2; /* 001, rxclk = TXC Input */
4432
4433 if (info->params.clock_speed)
4434 val |= BIT1 + BIT0;
4435
4436 wr_reg8(info, CCR, (unsigned char)val);
4437
4438 if (info->params.flags & (HDLC_FLAG_TXC_DPLL + HDLC_FLAG_RXC_DPLL))
4439 {
4440 // program DPLL mode
4441 switch(info->params.encoding)
4442 {
4443 case HDLC_ENCODING_BIPHASE_MARK:
4444 case HDLC_ENCODING_BIPHASE_SPACE:
4445 val = BIT7; break;
4446 case HDLC_ENCODING_BIPHASE_LEVEL:
4447 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL:
4448 val = BIT7 + BIT6; break;
4449 default: val = BIT6; // NRZ encodings
4450 }
4451 wr_reg16(info, RCR, (unsigned short)(rd_reg16(info, RCR) | val));
4452
4453 // DPLL requires a 16X reference clock from BRG
4454 set_rate(info, info->params.clock_speed * 16);
4455 }
4456 else
4457 set_rate(info, info->params.clock_speed);
4458
4459 tx_set_idle(info);
4460
4461 msc_set_vcr(info);
4462
4463 /* SCR (serial control)
4464 *
4465 * 15 1=tx req on FIFO half empty
4466 * 14 1=rx req on FIFO half full
4467 * 13 tx data IRQ enable
4468 * 12 tx idle IRQ enable
4469 * 11 underrun IRQ enable
4470 * 10 rx data IRQ enable
4471 * 09 rx idle IRQ enable
4472 * 08 overrun IRQ enable
4473 * 07 DSR IRQ enable
4474 * 06 CTS IRQ enable
4475 * 05 DCD IRQ enable
4476 * 04 RI IRQ enable
4477 * 03 reserved, must be zero
4478 * 02 1=txd->rxd internal loopback enable
4479 * 01 reserved, must be zero
4480 * 00 1=master IRQ enable
4481 */
4482 wr_reg16(info, SCR, BIT15 + BIT14 + BIT0);
4483
4484 if (info->params.loopback)
4485 enable_loopback(info);
4486}
4487
4488/*
4489 * set transmit idle mode
4490 */
4491static void tx_set_idle(struct slgt_info *info)
4492{
Paul Fulghum643f3312006-06-25 05:49:20 -07004493 unsigned char val;
4494 unsigned short tcr;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004495
Paul Fulghum643f3312006-06-25 05:49:20 -07004496 /* if preamble enabled (tcr[6] == 1) then tx idle size = 8 bits
4497 * else tcr[5:4] = tx idle size: 00 = 8 bits, 01 = 16 bits
4498 */
4499 tcr = rd_reg16(info, TCR);
4500 if (info->idle_mode & HDLC_TXIDLE_CUSTOM_16) {
4501 /* disable preamble, set idle size to 16 bits */
4502 tcr = (tcr & ~(BIT6 + BIT5)) | BIT4;
4503 /* MSB of 16 bit idle specified in tx preamble register (TPR) */
4504 wr_reg8(info, TPR, (unsigned char)((info->idle_mode >> 8) & 0xff));
4505 } else if (!(tcr & BIT6)) {
4506 /* preamble is disabled, set idle size to 8 bits */
4507 tcr &= ~(BIT5 + BIT4);
4508 }
4509 wr_reg16(info, TCR, tcr);
4510
4511 if (info->idle_mode & (HDLC_TXIDLE_CUSTOM_8 | HDLC_TXIDLE_CUSTOM_16)) {
4512 /* LSB of custom tx idle specified in tx idle register */
4513 val = (unsigned char)(info->idle_mode & 0xff);
4514 } else {
4515 /* standard 8 bit idle patterns */
4516 switch(info->idle_mode)
4517 {
4518 case HDLC_TXIDLE_FLAGS: val = 0x7e; break;
4519 case HDLC_TXIDLE_ALT_ZEROS_ONES:
4520 case HDLC_TXIDLE_ALT_MARK_SPACE: val = 0xaa; break;
4521 case HDLC_TXIDLE_ZEROS:
4522 case HDLC_TXIDLE_SPACE: val = 0x00; break;
4523 default: val = 0xff;
4524 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004525 }
4526
4527 wr_reg8(info, TIR, val);
4528}
4529
4530/*
4531 * get state of V24 status (input) signals
4532 */
4533static void get_signals(struct slgt_info *info)
4534{
4535 unsigned short status = rd_reg16(info, SSR);
4536
4537 /* clear all serial signals except DTR and RTS */
4538 info->signals &= SerialSignal_DTR + SerialSignal_RTS;
4539
4540 if (status & BIT3)
4541 info->signals |= SerialSignal_DSR;
4542 if (status & BIT2)
4543 info->signals |= SerialSignal_CTS;
4544 if (status & BIT1)
4545 info->signals |= SerialSignal_DCD;
4546 if (status & BIT0)
4547 info->signals |= SerialSignal_RI;
4548}
4549
4550/*
4551 * set V.24 Control Register based on current configuration
4552 */
4553static void msc_set_vcr(struct slgt_info *info)
4554{
4555 unsigned char val = 0;
4556
4557 /* VCR (V.24 control)
4558 *
4559 * 07..04 serial IF select
4560 * 03 DTR
4561 * 02 RTS
4562 * 01 LL
4563 * 00 RL
4564 */
4565
4566 switch(info->if_mode & MGSL_INTERFACE_MASK)
4567 {
4568 case MGSL_INTERFACE_RS232:
4569 val |= BIT5; /* 0010 */
4570 break;
4571 case MGSL_INTERFACE_V35:
4572 val |= BIT7 + BIT6 + BIT5; /* 1110 */
4573 break;
4574 case MGSL_INTERFACE_RS422:
4575 val |= BIT6; /* 0100 */
4576 break;
4577 }
4578
Paul Fulghume5590712008-07-22 11:21:39 +01004579 if (info->if_mode & MGSL_INTERFACE_MSB_FIRST)
4580 val |= BIT4;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004581 if (info->signals & SerialSignal_DTR)
4582 val |= BIT3;
4583 if (info->signals & SerialSignal_RTS)
4584 val |= BIT2;
4585 if (info->if_mode & MGSL_INTERFACE_LL)
4586 val |= BIT1;
4587 if (info->if_mode & MGSL_INTERFACE_RL)
4588 val |= BIT0;
4589 wr_reg8(info, VCR, val);
4590}
4591
4592/*
4593 * set state of V24 control (output) signals
4594 */
4595static void set_signals(struct slgt_info *info)
4596{
4597 unsigned char val = rd_reg8(info, VCR);
4598 if (info->signals & SerialSignal_DTR)
4599 val |= BIT3;
4600 else
4601 val &= ~BIT3;
4602 if (info->signals & SerialSignal_RTS)
4603 val |= BIT2;
4604 else
4605 val &= ~BIT2;
4606 wr_reg8(info, VCR, val);
4607}
4608
4609/*
4610 * free range of receive DMA buffers (i to last)
4611 */
4612static void free_rbufs(struct slgt_info *info, unsigned int i, unsigned int last)
4613{
4614 int done = 0;
4615
4616 while(!done) {
4617 /* reset current buffer for reuse */
4618 info->rbufs[i].status = 0;
Paul Fulghum814dae02008-07-22 11:22:14 +01004619 set_desc_count(info->rbufs[i], info->rbuf_fill_level);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004620 if (i == last)
4621 done = 1;
4622 if (++i == info->rbuf_count)
4623 i = 0;
4624 }
4625 info->rbuf_current = i;
4626}
4627
4628/*
4629 * mark all receive DMA buffers as free
4630 */
4631static void reset_rbufs(struct slgt_info *info)
4632{
4633 free_rbufs(info, 0, info->rbuf_count - 1);
Paul Fulghum5ba5a5d2009-06-11 12:28:37 +01004634 info->rbuf_fill_index = 0;
4635 info->rbuf_fill_count = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004636}
4637
4638/*
4639 * pass receive HDLC frame to upper layer
4640 *
Joe Perches0fab6de2008-04-28 02:14:02 -07004641 * return true if frame available, otherwise false
Paul Fulghum705b6c72006-01-08 01:02:06 -08004642 */
Joe Perches0fab6de2008-04-28 02:14:02 -07004643static bool rx_get_frame(struct slgt_info *info)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004644{
4645 unsigned int start, end;
4646 unsigned short status;
4647 unsigned int framesize = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004648 unsigned long flags;
Alan Cox8fb06c72008-07-16 21:56:46 +01004649 struct tty_struct *tty = info->port.tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004650 unsigned char addr_field = 0xff;
Paul Fulghum04b374d2006-06-25 05:49:21 -07004651 unsigned int crc_size = 0;
4652
4653 switch (info->params.crc_type & HDLC_CRC_MASK) {
4654 case HDLC_CRC_16_CCITT: crc_size = 2; break;
4655 case HDLC_CRC_32_CCITT: crc_size = 4; break;
4656 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004657
4658check_again:
4659
4660 framesize = 0;
4661 addr_field = 0xff;
4662 start = end = info->rbuf_current;
4663
4664 for (;;) {
4665 if (!desc_complete(info->rbufs[end]))
4666 goto cleanup;
4667
4668 if (framesize == 0 && info->params.addr_filter != 0xff)
4669 addr_field = info->rbufs[end].buf[0];
4670
4671 framesize += desc_count(info->rbufs[end]);
4672
4673 if (desc_eof(info->rbufs[end]))
4674 break;
4675
4676 if (++end == info->rbuf_count)
4677 end = 0;
4678
4679 if (end == info->rbuf_current) {
4680 if (info->rx_enabled){
4681 spin_lock_irqsave(&info->lock,flags);
4682 rx_start(info);
4683 spin_unlock_irqrestore(&info->lock,flags);
4684 }
4685 goto cleanup;
4686 }
4687 }
4688
4689 /* status
4690 *
4691 * 15 buffer complete
4692 * 14..06 reserved
4693 * 05..04 residue
4694 * 02 eof (end of frame)
4695 * 01 CRC error
4696 * 00 abort
4697 */
4698 status = desc_status(info->rbufs[end]);
4699
4700 /* ignore CRC bit if not using CRC (bit is undefined) */
Paul Fulghum04b374d2006-06-25 05:49:21 -07004701 if ((info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_NONE)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004702 status &= ~BIT1;
4703
4704 if (framesize == 0 ||
4705 (addr_field != 0xff && addr_field != info->params.addr_filter)) {
4706 free_rbufs(info, start, end);
4707 goto check_again;
4708 }
4709
Paul Fulghum04b374d2006-06-25 05:49:21 -07004710 if (framesize < (2 + crc_size) || status & BIT0) {
4711 info->icount.rxshort++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004712 framesize = 0;
Paul Fulghum04b374d2006-06-25 05:49:21 -07004713 } else if (status & BIT1) {
4714 info->icount.rxcrc++;
4715 if (!(info->params.crc_type & HDLC_CRC_RETURN_EX))
4716 framesize = 0;
4717 }
Paul Fulghum705b6c72006-01-08 01:02:06 -08004718
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08004719#if SYNCLINK_GENERIC_HDLC
Paul Fulghum04b374d2006-06-25 05:49:21 -07004720 if (framesize == 0) {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004721 info->netdev->stats.rx_errors++;
4722 info->netdev->stats.rx_frame_errors++;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004723 }
Paul Fulghum04b374d2006-06-25 05:49:21 -07004724#endif
Paul Fulghum705b6c72006-01-08 01:02:06 -08004725
4726 DBGBH(("%s rx frame status=%04X size=%d\n",
4727 info->device_name, status, framesize));
Paul Fulghum814dae02008-07-22 11:22:14 +01004728 DBGDATA(info, info->rbufs[start].buf, min_t(int, framesize, info->rbuf_fill_level), "rx");
Paul Fulghum705b6c72006-01-08 01:02:06 -08004729
4730 if (framesize) {
Paul Fulghum04b374d2006-06-25 05:49:21 -07004731 if (!(info->params.crc_type & HDLC_CRC_RETURN_EX)) {
4732 framesize -= crc_size;
4733 crc_size = 0;
4734 }
4735
4736 if (framesize > info->max_frame_size + crc_size)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004737 info->icount.rxlong++;
4738 else {
4739 /* copy dma buffer(s) to contiguous temp buffer */
4740 int copy_count = framesize;
4741 int i = start;
4742 unsigned char *p = info->tmp_rbuf;
4743 info->tmp_rbuf_count = framesize;
4744
4745 info->icount.rxok++;
4746
4747 while(copy_count) {
Paul Fulghum814dae02008-07-22 11:22:14 +01004748 int partial_count = min_t(int, copy_count, info->rbuf_fill_level);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004749 memcpy(p, info->rbufs[i].buf, partial_count);
4750 p += partial_count;
4751 copy_count -= partial_count;
4752 if (++i == info->rbuf_count)
4753 i = 0;
4754 }
4755
Paul Fulghum04b374d2006-06-25 05:49:21 -07004756 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
4757 *p = (status & BIT1) ? RX_CRC_ERROR : RX_OK;
4758 framesize++;
4759 }
4760
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08004761#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08004762 if (info->netcount)
4763 hdlcdev_rx(info,info->tmp_rbuf, framesize);
4764 else
4765#endif
4766 ldisc_receive_buf(tty, info->tmp_rbuf, info->flag_buf, framesize);
4767 }
4768 }
4769 free_rbufs(info, start, end);
Joe Perches0fab6de2008-04-28 02:14:02 -07004770 return true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004771
4772cleanup:
Joe Perches0fab6de2008-04-28 02:14:02 -07004773 return false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004774}
4775
4776/*
4777 * pass receive buffer (RAW synchronous mode) to tty layer
Joe Perches0fab6de2008-04-28 02:14:02 -07004778 * return true if buffer available, otherwise false
Paul Fulghum705b6c72006-01-08 01:02:06 -08004779 */
Joe Perches0fab6de2008-04-28 02:14:02 -07004780static bool rx_get_buf(struct slgt_info *info)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004781{
4782 unsigned int i = info->rbuf_current;
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004783 unsigned int count;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004784
4785 if (!desc_complete(info->rbufs[i]))
Joe Perches0fab6de2008-04-28 02:14:02 -07004786 return false;
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004787 count = desc_count(info->rbufs[i]);
4788 switch(info->params.mode) {
4789 case MGSL_MODE_MONOSYNC:
4790 case MGSL_MODE_BISYNC:
Paul Fulghum98072242010-10-27 15:34:22 -07004791 case MGSL_MODE_XSYNC:
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004792 /* ignore residue in byte synchronous modes */
4793 if (desc_residue(info->rbufs[i]))
4794 count--;
4795 break;
4796 }
4797 DBGDATA(info, info->rbufs[i].buf, count, "rx");
4798 DBGINFO(("rx_get_buf size=%d\n", count));
4799 if (count)
Alan Cox8fb06c72008-07-16 21:56:46 +01004800 ldisc_receive_buf(info->port.tty, info->rbufs[i].buf,
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004801 info->flag_buf, count);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004802 free_rbufs(info, i, i);
Joe Perches0fab6de2008-04-28 02:14:02 -07004803 return true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004804}
4805
4806static void reset_tbufs(struct slgt_info *info)
4807{
4808 unsigned int i;
4809 info->tbuf_current = 0;
4810 for (i=0 ; i < info->tbuf_count ; i++) {
4811 info->tbufs[i].status = 0;
4812 info->tbufs[i].count = 0;
4813 }
4814}
4815
4816/*
4817 * return number of free transmit DMA buffers
4818 */
4819static unsigned int free_tbuf_count(struct slgt_info *info)
4820{
4821 unsigned int count = 0;
4822 unsigned int i = info->tbuf_current;
4823
4824 do
4825 {
4826 if (desc_count(info->tbufs[i]))
4827 break; /* buffer in use */
4828 ++count;
4829 if (++i == info->tbuf_count)
4830 i=0;
4831 } while (i != info->tbuf_current);
4832
Paul Fulghumbb029c62007-07-31 00:37:35 -07004833 /* if tx DMA active, last zero count buffer is in use */
4834 if (count && (rd_reg32(info, TDCSR) & BIT0))
Paul Fulghum705b6c72006-01-08 01:02:06 -08004835 --count;
4836
4837 return count;
4838}
4839
4840/*
Paul Fulghum403214d2008-07-22 11:21:55 +01004841 * return number of bytes in unsent transmit DMA buffers
4842 * and the serial controller tx FIFO
4843 */
4844static unsigned int tbuf_bytes(struct slgt_info *info)
4845{
4846 unsigned int total_count = 0;
4847 unsigned int i = info->tbuf_current;
4848 unsigned int reg_value;
4849 unsigned int count;
4850 unsigned int active_buf_count = 0;
4851
4852 /*
4853 * Add descriptor counts for all tx DMA buffers.
4854 * If count is zero (cleared by DMA controller after read),
4855 * the buffer is complete or is actively being read from.
4856 *
4857 * Record buf_count of last buffer with zero count starting
4858 * from current ring position. buf_count is mirror
4859 * copy of count and is not cleared by serial controller.
4860 * If DMA controller is active, that buffer is actively
4861 * being read so add to total.
4862 */
4863 do {
4864 count = desc_count(info->tbufs[i]);
4865 if (count)
4866 total_count += count;
4867 else if (!total_count)
4868 active_buf_count = info->tbufs[i].buf_count;
4869 if (++i == info->tbuf_count)
4870 i = 0;
4871 } while (i != info->tbuf_current);
4872
4873 /* read tx DMA status register */
4874 reg_value = rd_reg32(info, TDCSR);
4875
4876 /* if tx DMA active, last zero count buffer is in use */
4877 if (reg_value & BIT0)
4878 total_count += active_buf_count;
4879
4880 /* add tx FIFO count = reg_value[15..8] */
4881 total_count += (reg_value >> 8) & 0xff;
4882
4883 /* if transmitter active add one byte for shift register */
4884 if (info->tx_active)
4885 total_count++;
4886
4887 return total_count;
4888}
4889
4890/*
Paul Fulghumde538eb2009-12-09 12:31:39 -08004891 * load data into transmit DMA buffer ring and start transmitter if needed
4892 * return true if data accepted, otherwise false (buffers full)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004893 */
Paul Fulghumde538eb2009-12-09 12:31:39 -08004894static bool tx_load(struct slgt_info *info, const char *buf, unsigned int size)
Paul Fulghum705b6c72006-01-08 01:02:06 -08004895{
4896 unsigned short count;
4897 unsigned int i;
4898 struct slgt_desc *d;
4899
Paul Fulghumde538eb2009-12-09 12:31:39 -08004900 /* check required buffer space */
4901 if (DIV_ROUND_UP(size, DMABUFSIZE) > free_tbuf_count(info))
4902 return false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004903
4904 DBGDATA(info, buf, size, "tx");
4905
Paul Fulghumde538eb2009-12-09 12:31:39 -08004906 /*
4907 * copy data to one or more DMA buffers in circular ring
4908 * tbuf_start = first buffer for this data
4909 * tbuf_current = next free buffer
4910 *
4911 * Copy all data before making data visible to DMA controller by
4912 * setting descriptor count of the first buffer.
4913 * This prevents an active DMA controller from reading the first DMA
4914 * buffers of a frame and stopping before the final buffers are filled.
4915 */
4916
Paul Fulghum705b6c72006-01-08 01:02:06 -08004917 info->tbuf_start = i = info->tbuf_current;
4918
4919 while (size) {
4920 d = &info->tbufs[i];
Paul Fulghum705b6c72006-01-08 01:02:06 -08004921
4922 count = (unsigned short)((size > DMABUFSIZE) ? DMABUFSIZE : size);
4923 memcpy(d->buf, buf, count);
4924
4925 size -= count;
4926 buf += count;
4927
Paul Fulghumcb10dc92006-09-30 23:27:45 -07004928 /*
4929 * set EOF bit for last buffer of HDLC frame or
4930 * for every buffer in raw mode
4931 */
4932 if ((!size && info->params.mode == MGSL_MODE_HDLC) ||
4933 info->params.mode == MGSL_MODE_RAW)
4934 set_desc_eof(*d, 1);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004935 else
4936 set_desc_eof(*d, 0);
4937
Paul Fulghumde538eb2009-12-09 12:31:39 -08004938 /* set descriptor count for all but first buffer */
4939 if (i != info->tbuf_start)
4940 set_desc_count(*d, count);
Paul Fulghum403214d2008-07-22 11:21:55 +01004941 d->buf_count = count;
Paul Fulghumde538eb2009-12-09 12:31:39 -08004942
4943 if (++i == info->tbuf_count)
4944 i = 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004945 }
4946
4947 info->tbuf_current = i;
Paul Fulghumde538eb2009-12-09 12:31:39 -08004948
4949 /* set first buffer count to make new data visible to DMA controller */
4950 d = &info->tbufs[info->tbuf_start];
4951 set_desc_count(*d, d->buf_count);
4952
4953 /* start transmitter if needed and update transmit timeout */
4954 if (!info->tx_active)
4955 tx_start(info);
4956 update_tx_timer(info);
4957
4958 return true;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004959}
4960
4961static int register_test(struct slgt_info *info)
4962{
4963 static unsigned short patterns[] =
4964 {0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
Kulikov Vasiliy7ea7c6d2010-06-28 15:54:48 +04004965 static unsigned int count = ARRAY_SIZE(patterns);
Paul Fulghum705b6c72006-01-08 01:02:06 -08004966 unsigned int i;
4967 int rc = 0;
4968
4969 for (i=0 ; i < count ; i++) {
4970 wr_reg16(info, TIR, patterns[i]);
4971 wr_reg16(info, BDR, patterns[(i+1)%count]);
4972 if ((rd_reg16(info, TIR) != patterns[i]) ||
4973 (rd_reg16(info, BDR) != patterns[(i+1)%count])) {
4974 rc = -ENODEV;
4975 break;
4976 }
4977 }
Paul Fulghum0080b7a2006-03-28 01:56:15 -08004978 info->gpio_present = (rd_reg32(info, JCR) & BIT5) ? 1 : 0;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004979 info->init_error = rc ? 0 : DiagStatus_AddressFailure;
4980 return rc;
4981}
4982
4983static int irq_test(struct slgt_info *info)
4984{
4985 unsigned long timeout;
4986 unsigned long flags;
Alan Cox8fb06c72008-07-16 21:56:46 +01004987 struct tty_struct *oldtty = info->port.tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004988 u32 speed = info->params.data_rate;
4989
4990 info->params.data_rate = 921600;
Alan Cox8fb06c72008-07-16 21:56:46 +01004991 info->port.tty = NULL;
Paul Fulghum705b6c72006-01-08 01:02:06 -08004992
4993 spin_lock_irqsave(&info->lock, flags);
4994 async_mode(info);
4995 slgt_irq_on(info, IRQ_TXIDLE);
4996
4997 /* enable transmitter */
4998 wr_reg16(info, TCR,
4999 (unsigned short)(rd_reg16(info, TCR) | BIT1));
5000
5001 /* write one byte and wait for tx idle */
5002 wr_reg16(info, TDR, 0);
5003
5004 /* assume failure */
5005 info->init_error = DiagStatus_IrqFailure;
Joe Perches0fab6de2008-04-28 02:14:02 -07005006 info->irq_occurred = false;
Paul Fulghum705b6c72006-01-08 01:02:06 -08005007
5008 spin_unlock_irqrestore(&info->lock, flags);
5009
5010 timeout=100;
5011 while(timeout-- && !info->irq_occurred)
5012 msleep_interruptible(10);
5013
5014 spin_lock_irqsave(&info->lock,flags);
5015 reset_port(info);
5016 spin_unlock_irqrestore(&info->lock,flags);
5017
5018 info->params.data_rate = speed;
Alan Cox8fb06c72008-07-16 21:56:46 +01005019 info->port.tty = oldtty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08005020
5021 info->init_error = info->irq_occurred ? 0 : DiagStatus_IrqFailure;
5022 return info->irq_occurred ? 0 : -ENODEV;
5023}
5024
5025static int loopback_test_rx(struct slgt_info *info)
5026{
5027 unsigned char *src, *dest;
5028 int count;
5029
5030 if (desc_complete(info->rbufs[0])) {
5031 count = desc_count(info->rbufs[0]);
5032 src = info->rbufs[0].buf;
5033 dest = info->tmp_rbuf;
5034
5035 for( ; count ; count-=2, src+=2) {
5036 /* src=data byte (src+1)=status byte */
5037 if (!(*(src+1) & (BIT9 + BIT8))) {
5038 *dest = *src;
5039 dest++;
5040 info->tmp_rbuf_count++;
5041 }
5042 }
5043 DBGDATA(info, info->tmp_rbuf, info->tmp_rbuf_count, "rx");
5044 return 1;
5045 }
5046 return 0;
5047}
5048
5049static int loopback_test(struct slgt_info *info)
5050{
5051#define TESTFRAMESIZE 20
5052
5053 unsigned long timeout;
5054 u16 count = TESTFRAMESIZE;
5055 unsigned char buf[TESTFRAMESIZE];
5056 int rc = -ENODEV;
5057 unsigned long flags;
5058
Alan Cox8fb06c72008-07-16 21:56:46 +01005059 struct tty_struct *oldtty = info->port.tty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08005060 MGSL_PARAMS params;
5061
5062 memcpy(&params, &info->params, sizeof(params));
5063
5064 info->params.mode = MGSL_MODE_ASYNC;
5065 info->params.data_rate = 921600;
5066 info->params.loopback = 1;
Alan Cox8fb06c72008-07-16 21:56:46 +01005067 info->port.tty = NULL;
Paul Fulghum705b6c72006-01-08 01:02:06 -08005068
5069 /* build and send transmit frame */
5070 for (count = 0; count < TESTFRAMESIZE; ++count)
5071 buf[count] = (unsigned char)count;
5072
5073 info->tmp_rbuf_count = 0;
5074 memset(info->tmp_rbuf, 0, TESTFRAMESIZE);
5075
5076 /* program hardware for HDLC and enabled receiver */
5077 spin_lock_irqsave(&info->lock,flags);
5078 async_mode(info);
5079 rx_start(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08005080 tx_load(info, buf, count);
Paul Fulghum705b6c72006-01-08 01:02:06 -08005081 spin_unlock_irqrestore(&info->lock, flags);
5082
5083 /* wait for receive complete */
5084 for (timeout = 100; timeout; --timeout) {
5085 msleep_interruptible(10);
5086 if (loopback_test_rx(info)) {
5087 rc = 0;
5088 break;
5089 }
5090 }
5091
5092 /* verify received frame length and contents */
5093 if (!rc && (info->tmp_rbuf_count != count ||
5094 memcmp(buf, info->tmp_rbuf, count))) {
5095 rc = -ENODEV;
5096 }
5097
5098 spin_lock_irqsave(&info->lock,flags);
5099 reset_adapter(info);
5100 spin_unlock_irqrestore(&info->lock,flags);
5101
5102 memcpy(&info->params, &params, sizeof(info->params));
Alan Cox8fb06c72008-07-16 21:56:46 +01005103 info->port.tty = oldtty;
Paul Fulghum705b6c72006-01-08 01:02:06 -08005104
5105 info->init_error = rc ? DiagStatus_DmaFailure : 0;
5106 return rc;
5107}
5108
5109static int adapter_test(struct slgt_info *info)
5110{
5111 DBGINFO(("testing %s\n", info->device_name));
Paul Fulghum294dad02006-06-25 05:49:21 -07005112 if (register_test(info) < 0) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08005113 printk("register test failure %s addr=%08X\n",
5114 info->device_name, info->phys_reg_addr);
Paul Fulghum294dad02006-06-25 05:49:21 -07005115 } else if (irq_test(info) < 0) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08005116 printk("IRQ test failure %s IRQ=%d\n",
5117 info->device_name, info->irq_level);
Paul Fulghum294dad02006-06-25 05:49:21 -07005118 } else if (loopback_test(info) < 0) {
Paul Fulghum705b6c72006-01-08 01:02:06 -08005119 printk("loopback test failure %s\n", info->device_name);
5120 }
5121 return info->init_error;
5122}
5123
5124/*
5125 * transmit timeout handler
5126 */
5127static void tx_timeout(unsigned long context)
5128{
5129 struct slgt_info *info = (struct slgt_info*)context;
5130 unsigned long flags;
5131
5132 DBGINFO(("%s tx_timeout\n", info->device_name));
5133 if(info->tx_active && info->params.mode == MGSL_MODE_HDLC) {
5134 info->icount.txtimeout++;
5135 }
5136 spin_lock_irqsave(&info->lock,flags);
Paul Fulghumce892942009-06-24 18:34:51 +01005137 tx_stop(info);
Paul Fulghum705b6c72006-01-08 01:02:06 -08005138 spin_unlock_irqrestore(&info->lock,flags);
5139
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08005140#if SYNCLINK_GENERIC_HDLC
Paul Fulghum705b6c72006-01-08 01:02:06 -08005141 if (info->netcount)
5142 hdlcdev_tx_done(info);
5143 else
5144#endif
5145 bh_transmit(info);
5146}
5147
5148/*
5149 * receive buffer polling timer
5150 */
5151static void rx_timeout(unsigned long context)
5152{
5153 struct slgt_info *info = (struct slgt_info*)context;
5154 unsigned long flags;
5155
5156 DBGINFO(("%s rx_timeout\n", info->device_name));
5157 spin_lock_irqsave(&info->lock, flags);
5158 info->pending_bh |= BH_RECEIVE;
5159 spin_unlock_irqrestore(&info->lock, flags);
David Howellsc4028952006-11-22 14:57:56 +00005160 bh_handler(&info->task);
Paul Fulghum705b6c72006-01-08 01:02:06 -08005161}
5162