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