synclink.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:232k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/char/synclink.c
  3.  *
  4.  * $Id: synclink.c,v 3.12 2001/07/18 19:14:21 paulkf Exp $
  5.  *
  6.  * Device driver for Microgate SyncLink ISA and PCI
  7.  * high speed multiprotocol serial adapters.
  8.  *
  9.  * written by Paul Fulghum for Microgate Corporation
  10.  * paulkf@microgate.com
  11.  *
  12.  * Microgate and SyncLink are trademarks of Microgate Corporation
  13.  *
  14.  * Derived from serial.c written by Theodore Ts'o and Linus Torvalds
  15.  *
  16.  * Original release 01/11/99
  17.  *
  18.  * This code is released under the GNU General Public License (GPL)
  19.  *
  20.  * This driver is primarily intended for use in synchronous
  21.  * HDLC mode. Asynchronous mode is also provided.
  22.  *
  23.  * When operating in synchronous mode, each call to mgsl_write()
  24.  * contains exactly one complete HDLC frame. Calling mgsl_put_char
  25.  * will start assembling an HDLC frame that will not be sent until
  26.  * mgsl_flush_chars or mgsl_write is called.
  27.  * 
  28.  * Synchronous receive data is reported as complete frames. To accomplish
  29.  * this, the TTY flip buffer is bypassed (too small to hold largest
  30.  * frame and may fragment frames) and the line discipline
  31.  * receive entry point is called directly.
  32.  *
  33.  * This driver has been tested with a slightly modified ppp.c driver
  34.  * for synchronous PPP.
  35.  *
  36.  * 2000/02/16
  37.  * Added interface for syncppp.c driver (an alternate synchronous PPP
  38.  * implementation that also supports Cisco HDLC). Each device instance
  39.  * registers as a tty device AND a network device (if dosyncppp option
  40.  * is set for the device). The functionality is determined by which
  41.  * device interface is opened.
  42.  *
  43.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  44.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  45.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  46.  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  47.  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  48.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  49.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  50.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  51.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  52.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  53.  * OF THE POSSIBILITY OF SUCH DAMAGE.
  54.  */
  55. #define VERSION(ver,rel,seq) (((ver)<<16) | ((rel)<<8) | (seq))
  56. #if defined(__i386__)
  57. #  define BREAKPOINT() asm("   int $3");
  58. #else
  59. #  define BREAKPOINT() { }
  60. #endif
  61. #define MAX_ISA_DEVICES 10
  62. #define MAX_PCI_DEVICES 10
  63. #define MAX_TOTAL_DEVICES 20
  64. #include <linux/config.h>
  65. #include <linux/module.h>
  66. #include <linux/version.h>
  67. #include <linux/errno.h>
  68. #include <linux/signal.h>
  69. #include <linux/sched.h>
  70. #include <linux/timer.h>
  71. #include <linux/interrupt.h>
  72. #include <linux/pci.h>
  73. #include <linux/tty.h>
  74. #include <linux/tty_flip.h>
  75. #include <linux/serial.h>
  76. #include <linux/major.h>
  77. #include <linux/string.h>
  78. #include <linux/fcntl.h>
  79. #include <linux/ptrace.h>
  80. #include <linux/ioport.h>
  81. #include <linux/mm.h>
  82. #include <linux/slab.h>
  83. #include <linux/netdevice.h>
  84. #include <linux/vmalloc.h>
  85. #include <linux/init.h>
  86. #include <asm/serial.h>
  87. #include <linux/delay.h>
  88. #include <linux/ioctl.h>
  89. #include <asm/system.h>
  90. #include <asm/io.h>
  91. #include <asm/irq.h>
  92. #include <asm/dma.h>
  93. #include <asm/bitops.h>
  94. #include <asm/types.h>
  95. #include <linux/termios.h>
  96. #include <linux/tqueue.h>
  97. #ifdef CONFIG_SYNCLINK_SYNCPPP_MODULE
  98. #define CONFIG_SYNCLINK_SYNCPPP 1
  99. #endif
  100. #ifdef CONFIG_SYNCLINK_SYNCPPP
  101. #if LINUX_VERSION_CODE < VERSION(2,4,3) 
  102. #include "../net/wan/syncppp.h"
  103. #else
  104. #include <net/syncppp.h>
  105. #endif
  106. #endif
  107. #include <asm/segment.h>
  108. #define GET_USER(error,value,addr) error = get_user(value,addr)
  109. #define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
  110. #define PUT_USER(error,value,addr) error = put_user(value,addr)
  111. #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
  112. #include <asm/uaccess.h>
  113. #include "linux/synclink.h"
  114. #define RCLRVALUE 0xffff
  115. MGSL_PARAMS default_params = {
  116. MGSL_MODE_HDLC, /* unsigned long mode */
  117. 0, /* unsigned char loopback; */
  118. HDLC_FLAG_UNDERRUN_ABORT15, /* unsigned short flags; */
  119. HDLC_ENCODING_NRZI_SPACE, /* unsigned char encoding; */
  120. 0, /* unsigned long clock_speed; */
  121. 0xff, /* unsigned char addr_filter; */
  122. HDLC_CRC_16_CCITT, /* unsigned short crc_type; */
  123. HDLC_PREAMBLE_LENGTH_8BITS, /* unsigned char preamble_length; */
  124. HDLC_PREAMBLE_PATTERN_NONE, /* unsigned char preamble; */
  125. 9600, /* unsigned long data_rate; */
  126. 8, /* unsigned char data_bits; */
  127. 1, /* unsigned char stop_bits; */
  128. ASYNC_PARITY_NONE /* unsigned char parity; */
  129. };
  130. #define SHARED_MEM_ADDRESS_SIZE 0x40000
  131. #define BUFFERLISTSIZE (PAGE_SIZE)
  132. #define DMABUFFERSIZE (PAGE_SIZE)
  133. #define MAXRXFRAMES 7
  134. typedef struct _DMABUFFERENTRY
  135. {
  136. u32 phys_addr; /* 32-bit flat physical address of data buffer */
  137. u16 count; /* buffer size/data count */
  138. u16 status; /* Control/status field */
  139. u16 rcc; /* character count field */
  140. u16 reserved; /* padding required by 16C32 */
  141. u32 link; /* 32-bit flat link to next buffer entry */
  142. char *virt_addr; /* virtual address of data buffer */
  143. u32 phys_entry; /* physical address of this buffer entry */
  144. } DMABUFFERENTRY, *DMAPBUFFERENTRY;
  145. /* The queue of BH actions to be performed */
  146. #define BH_RECEIVE  1
  147. #define BH_TRANSMIT 2
  148. #define BH_STATUS   4
  149. #define IO_PIN_SHUTDOWN_LIMIT 100
  150. #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
  151. struct _input_signal_events {
  152. int ri_up;
  153. int ri_down;
  154. int dsr_up;
  155. int dsr_down;
  156. int dcd_up;
  157. int dcd_down;
  158. int cts_up;
  159. int cts_down;
  160. };
  161. /* transmit holding buffer definitions*/
  162. #define MAX_TX_HOLDING_BUFFERS 5
  163. struct tx_holding_buffer {
  164. int buffer_size;
  165. unsigned char * buffer;
  166. };
  167. /*
  168.  * Device instance data structure
  169.  */
  170.  
  171. struct mgsl_struct {
  172. void *if_ptr; /* General purpose pointer (used by SPPP) */
  173. int magic;
  174. int flags;
  175. int count; /* count of opens */
  176. int line;
  177. unsigned short close_delay;
  178. unsigned short closing_wait; /* time to wait before closing */
  179. struct mgsl_icount icount;
  180. struct termios normal_termios;
  181. struct termios callout_termios;
  182. struct tty_struct  *tty;
  183. int timeout;
  184. int x_char; /* xon/xoff character */
  185. int blocked_open; /* # of blocked opens */
  186. long session; /* Session of opening process */
  187. long pgrp; /* pgrp of opening process */
  188. u16 read_status_mask;
  189. u16 ignore_status_mask;
  190. unsigned char  *xmit_buf;
  191. int xmit_head;
  192. int xmit_tail;
  193. int xmit_cnt;
  194. wait_queue_head_t open_wait;
  195. wait_queue_head_t close_wait;
  196. wait_queue_head_t status_event_wait_q;
  197. wait_queue_head_t event_wait_q;
  198. struct timer_list tx_timer; /* HDLC transmit timeout timer */
  199. struct mgsl_struct *next_device; /* device list link */
  200. spinlock_t irq_spinlock; /* spinlock for synchronizing with ISR */
  201. struct tq_struct task; /* task structure for scheduling bh */
  202. u32 EventMask; /* event trigger mask */
  203. u32 RecordedEvents; /* pending events */
  204. u32 max_frame_size; /* as set by device config */
  205. u32 pending_bh;
  206. int bh_running; /* Protection from multiple */
  207. int isr_overflow;
  208. int bh_requested;
  209. int dcd_chkcount; /* check counts to prevent */
  210. int cts_chkcount; /* too many IRQs if a signal */
  211. int dsr_chkcount; /* is floating */
  212. int ri_chkcount;
  213. char *buffer_list; /* virtual address of Rx & Tx buffer lists */
  214. unsigned long buffer_list_phys;
  215. unsigned int rx_buffer_count; /* count of total allocated Rx buffers */
  216. DMABUFFERENTRY *rx_buffer_list; /* list of receive buffer entries */
  217. unsigned int current_rx_buffer;
  218. int num_tx_dma_buffers; /* number of tx dma frames required */
  219.   int tx_dma_buffers_used;
  220. unsigned int tx_buffer_count; /* count of total allocated Tx buffers */
  221. DMABUFFERENTRY *tx_buffer_list; /* list of transmit buffer entries */
  222. int start_tx_dma_buffer; /* tx dma buffer to start tx dma operation */
  223. int current_tx_buffer;          /* next tx dma buffer to be loaded */
  224. unsigned char *intermediate_rxbuffer;
  225. int num_tx_holding_buffers; /* number of tx holding buffer allocated */
  226. int get_tx_holding_index;   /* next tx holding buffer for adapter to load */
  227. int put_tx_holding_index;   /* next tx holding buffer to store user request */
  228. int tx_holding_count; /* number of tx holding buffers waiting */
  229. struct tx_holding_buffer tx_holding_buffers[MAX_TX_HOLDING_BUFFERS];
  230. int rx_enabled;
  231. int rx_overflow;
  232. int tx_enabled;
  233. int tx_active;
  234. u32 idle_mode;
  235. u16 cmr_value;
  236. u16 tcsr_value;
  237. char device_name[25]; /* device instance name */
  238. unsigned int bus_type; /* expansion bus type (ISA,EISA,PCI) */
  239. unsigned char bus; /* expansion bus number (zero based) */
  240. unsigned char function; /* PCI device number */
  241. unsigned int io_base; /* base I/O address of adapter */
  242. unsigned int io_addr_size; /* size of the I/O address range */
  243. int io_addr_requested; /* nonzero if I/O address requested */
  244. unsigned int irq_level; /* interrupt level */
  245. unsigned long irq_flags;
  246. int irq_requested; /* nonzero if IRQ requested */
  247. unsigned int dma_level; /* DMA channel */
  248. int dma_requested; /* nonzero if dma channel requested */
  249. u16 mbre_bit;
  250. u16 loopback_bits;
  251. u16 usc_idle_mode;
  252. MGSL_PARAMS params; /* communications parameters */
  253. unsigned char serial_signals; /* current serial signal states */
  254. int irq_occurred; /* for diagnostics use */
  255. unsigned int init_error; /* Initialization startup error  (DIAGS) */
  256. int fDiagnosticsmode; /* Driver in Diagnostic mode? (DIAGS) */
  257. u32 last_mem_alloc;
  258. unsigned char* memory_base; /* shared memory address (PCI only) */
  259. u32 phys_memory_base;
  260. int shared_mem_requested;
  261. unsigned char* lcr_base; /* local config registers (PCI only) */
  262. u32 phys_lcr_base;
  263. u32 lcr_offset;
  264. int lcr_mem_requested;
  265. u32 misc_ctrl_value;
  266. char flag_buf[MAX_ASYNC_BUFFER_SIZE];
  267. char char_buf[MAX_ASYNC_BUFFER_SIZE];
  268. BOOLEAN drop_rts_on_tx_done;
  269. BOOLEAN loopmode_insert_requested;
  270. BOOLEAN loopmode_send_done_requested;
  271. struct _input_signal_events input_signal_events;
  272. /* SPPP/Cisco HDLC device parts */
  273. int netcount;
  274. int dosyncppp;
  275. spinlock_t netlock;
  276. #ifdef CONFIG_SYNCLINK_SYNCPPP
  277. struct ppp_device pppdev;
  278. char netname[10];
  279. struct net_device *netdev;
  280. struct net_device_stats netstats;
  281. struct net_device netdevice;
  282. #endif
  283. };
  284. #define MGSL_MAGIC 0x5401
  285. /*
  286.  * The size of the serial xmit buffer is 1 page, or 4096 bytes
  287.  */
  288. #ifndef SERIAL_XMIT_SIZE
  289. #define SERIAL_XMIT_SIZE 4096
  290. #endif
  291. /*
  292.  * These macros define the offsets used in calculating the
  293.  * I/O address of the specified USC registers.
  294.  */
  295. #define DCPIN 2 /* Bit 1 of I/O address */
  296. #define SDPIN 4 /* Bit 2 of I/O address */
  297. #define DCAR 0 /* DMA command/address register */
  298. #define CCAR SDPIN /* channel command/address register */
  299. #define DATAREG DCPIN + SDPIN /* serial data register */
  300. #define MSBONLY 0x41
  301. #define LSBONLY 0x40
  302. /*
  303.  * These macros define the register address (ordinal number)
  304.  * used for writing address/value pairs to the USC.
  305.  */
  306. #define CMR 0x02 /* Channel mode Register */
  307. #define CCSR 0x04 /* Channel Command/status Register */
  308. #define CCR 0x06 /* Channel Control Register */
  309. #define PSR 0x08 /* Port status Register */
  310. #define PCR 0x0a /* Port Control Register */
  311. #define TMDR 0x0c /* Test mode Data Register */
  312. #define TMCR 0x0e /* Test mode Control Register */
  313. #define CMCR 0x10 /* Clock mode Control Register */
  314. #define HCR 0x12 /* Hardware Configuration Register */
  315. #define IVR 0x14 /* Interrupt Vector Register */
  316. #define IOCR 0x16 /* Input/Output Control Register */
  317. #define ICR 0x18 /* Interrupt Control Register */
  318. #define DCCR 0x1a /* Daisy Chain Control Register */
  319. #define MISR 0x1c /* Misc Interrupt status Register */
  320. #define SICR 0x1e /* status Interrupt Control Register */
  321. #define RDR 0x20 /* Receive Data Register */
  322. #define RMR 0x22 /* Receive mode Register */
  323. #define RCSR 0x24 /* Receive Command/status Register */
  324. #define RICR 0x26 /* Receive Interrupt Control Register */
  325. #define RSR 0x28 /* Receive Sync Register */
  326. #define RCLR 0x2a /* Receive count Limit Register */
  327. #define RCCR 0x2c /* Receive Character count Register */
  328. #define TC0R 0x2e /* Time Constant 0 Register */
  329. #define TDR 0x30 /* Transmit Data Register */
  330. #define TMR 0x32 /* Transmit mode Register */
  331. #define TCSR 0x34 /* Transmit Command/status Register */
  332. #define TICR 0x36 /* Transmit Interrupt Control Register */
  333. #define TSR 0x38 /* Transmit Sync Register */
  334. #define TCLR 0x3a /* Transmit count Limit Register */
  335. #define TCCR 0x3c /* Transmit Character count Register */
  336. #define TC1R 0x3e /* Time Constant 1 Register */
  337. /*
  338.  * MACRO DEFINITIONS FOR DMA REGISTERS
  339.  */
  340. #define DCR 0x06 /* DMA Control Register (shared) */
  341. #define DACR 0x08 /* DMA Array count Register (shared) */
  342. #define BDCR 0x12 /* Burst/Dwell Control Register (shared) */
  343. #define DIVR 0x14 /* DMA Interrupt Vector Register (shared) */
  344. #define DICR 0x18 /* DMA Interrupt Control Register (shared) */
  345. #define CDIR 0x1a /* Clear DMA Interrupt Register (shared) */
  346. #define SDIR 0x1c /* Set DMA Interrupt Register (shared) */
  347. #define TDMR 0x02 /* Transmit DMA mode Register */
  348. #define TDIAR 0x1e /* Transmit DMA Interrupt Arm Register */
  349. #define TBCR 0x2a /* Transmit Byte count Register */
  350. #define TARL 0x2c /* Transmit Address Register (low) */
  351. #define TARU 0x2e /* Transmit Address Register (high) */
  352. #define NTBCR 0x3a /* Next Transmit Byte count Register */
  353. #define NTARL 0x3c /* Next Transmit Address Register (low) */
  354. #define NTARU 0x3e /* Next Transmit Address Register (high) */
  355. #define RDMR 0x82 /* Receive DMA mode Register (non-shared) */
  356. #define RDIAR 0x9e /* Receive DMA Interrupt Arm Register */
  357. #define RBCR 0xaa /* Receive Byte count Register */
  358. #define RARL 0xac /* Receive Address Register (low) */
  359. #define RARU 0xae /* Receive Address Register (high) */
  360. #define NRBCR 0xba /* Next Receive Byte count Register */
  361. #define NRARL 0xbc /* Next Receive Address Register (low) */
  362. #define NRARU 0xbe /* Next Receive Address Register (high) */
  363. /*
  364.  * MACRO DEFINITIONS FOR MODEM STATUS BITS
  365.  */
  366. #define MODEMSTATUS_DTR 0x80
  367. #define MODEMSTATUS_DSR 0x40
  368. #define MODEMSTATUS_RTS 0x20
  369. #define MODEMSTATUS_CTS 0x10
  370. #define MODEMSTATUS_RI  0x04
  371. #define MODEMSTATUS_DCD 0x01
  372. /*
  373.  * Channel Command/Address Register (CCAR) Command Codes
  374.  */
  375. #define RTCmd_Null 0x0000
  376. #define RTCmd_ResetHighestIus 0x1000
  377. #define RTCmd_TriggerChannelLoadDma 0x2000
  378. #define RTCmd_TriggerRxDma 0x2800
  379. #define RTCmd_TriggerTxDma 0x3000
  380. #define RTCmd_TriggerRxAndTxDma 0x3800
  381. #define RTCmd_PurgeRxFifo 0x4800
  382. #define RTCmd_PurgeTxFifo 0x5000
  383. #define RTCmd_PurgeRxAndTxFifo 0x5800
  384. #define RTCmd_LoadRcc 0x6800
  385. #define RTCmd_LoadTcc 0x7000
  386. #define RTCmd_LoadRccAndTcc 0x7800
  387. #define RTCmd_LoadTC0 0x8800
  388. #define RTCmd_LoadTC1 0x9000
  389. #define RTCmd_LoadTC0AndTC1 0x9800
  390. #define RTCmd_SerialDataLSBFirst 0xa000
  391. #define RTCmd_SerialDataMSBFirst 0xa800
  392. #define RTCmd_SelectBigEndian 0xb000
  393. #define RTCmd_SelectLittleEndian 0xb800
  394. /*
  395.  * DMA Command/Address Register (DCAR) Command Codes
  396.  */
  397. #define DmaCmd_Null 0x0000
  398. #define DmaCmd_ResetTxChannel 0x1000
  399. #define DmaCmd_ResetRxChannel 0x1200
  400. #define DmaCmd_StartTxChannel 0x2000
  401. #define DmaCmd_StartRxChannel 0x2200
  402. #define DmaCmd_ContinueTxChannel 0x3000
  403. #define DmaCmd_ContinueRxChannel 0x3200
  404. #define DmaCmd_PauseTxChannel 0x4000
  405. #define DmaCmd_PauseRxChannel 0x4200
  406. #define DmaCmd_AbortTxChannel 0x5000
  407. #define DmaCmd_AbortRxChannel 0x5200
  408. #define DmaCmd_InitTxChannel 0x7000
  409. #define DmaCmd_InitRxChannel 0x7200
  410. #define DmaCmd_ResetHighestDmaIus 0x8000
  411. #define DmaCmd_ResetAllChannels 0x9000
  412. #define DmaCmd_StartAllChannels 0xa000
  413. #define DmaCmd_ContinueAllChannels 0xb000
  414. #define DmaCmd_PauseAllChannels 0xc000
  415. #define DmaCmd_AbortAllChannels 0xd000
  416. #define DmaCmd_InitAllChannels 0xf000
  417. #define TCmd_Null 0x0000
  418. #define TCmd_ClearTxCRC 0x2000
  419. #define TCmd_SelectTicrTtsaData 0x4000
  420. #define TCmd_SelectTicrTxFifostatus 0x5000
  421. #define TCmd_SelectTicrIntLevel 0x6000
  422. #define TCmd_SelectTicrdma_level 0x7000
  423. #define TCmd_SendFrame 0x8000
  424. #define TCmd_SendAbort 0x9000
  425. #define TCmd_EnableDleInsertion 0xc000
  426. #define TCmd_DisableDleInsertion 0xd000
  427. #define TCmd_ClearEofEom 0xe000
  428. #define TCmd_SetEofEom 0xf000
  429. #define RCmd_Null 0x0000
  430. #define RCmd_ClearRxCRC 0x2000
  431. #define RCmd_EnterHuntmode 0x3000
  432. #define RCmd_SelectRicrRtsaData 0x4000
  433. #define RCmd_SelectRicrRxFifostatus 0x5000
  434. #define RCmd_SelectRicrIntLevel 0x6000
  435. #define RCmd_SelectRicrdma_level 0x7000
  436. /*
  437.  * Bits for enabling and disabling IRQs in Interrupt Control Register (ICR)
  438.  */
  439.  
  440. #define RECEIVE_STATUS BIT5
  441. #define RECEIVE_DATA BIT4
  442. #define TRANSMIT_STATUS BIT3
  443. #define TRANSMIT_DATA BIT2
  444. #define IO_PIN BIT1
  445. #define MISC BIT0
  446. /*
  447.  * Receive status Bits in Receive Command/status Register RCSR
  448.  */
  449. #define RXSTATUS_SHORT_FRAME BIT8
  450. #define RXSTATUS_CODE_VIOLATION BIT8
  451. #define RXSTATUS_EXITED_HUNT BIT7
  452. #define RXSTATUS_IDLE_RECEIVED BIT6
  453. #define RXSTATUS_BREAK_RECEIVED BIT5
  454. #define RXSTATUS_ABORT_RECEIVED BIT5
  455. #define RXSTATUS_RXBOUND BIT4
  456. #define RXSTATUS_CRC_ERROR BIT3
  457. #define RXSTATUS_FRAMING_ERROR BIT3
  458. #define RXSTATUS_ABORT BIT2
  459. #define RXSTATUS_PARITY_ERROR BIT2
  460. #define RXSTATUS_OVERRUN BIT1
  461. #define RXSTATUS_DATA_AVAILABLE BIT0
  462. #define RXSTATUS_ALL 0x01f6
  463. #define usc_UnlatchRxstatusBits(a,b) usc_OutReg( (a), RCSR, (u16)((b) & RXSTATUS_ALL) )
  464. /*
  465.  * Values for setting transmit idle mode in 
  466.  * Transmit Control/status Register (TCSR)
  467.  */
  468. #define IDLEMODE_FLAGS 0x0000
  469. #define IDLEMODE_ALT_ONE_ZERO 0x0100
  470. #define IDLEMODE_ZERO 0x0200
  471. #define IDLEMODE_ONE 0x0300
  472. #define IDLEMODE_ALT_MARK_SPACE 0x0500
  473. #define IDLEMODE_SPACE 0x0600
  474. #define IDLEMODE_MARK 0x0700
  475. #define IDLEMODE_MASK 0x0700
  476. /*
  477.  * IUSC revision identifiers
  478.  */
  479. #define IUSC_SL1660 0x4d44
  480. #define IUSC_PRE_SL1660 0x4553
  481. /*
  482.  * Transmit status Bits in Transmit Command/status Register (TCSR)
  483.  */
  484. #define TCSR_PRESERVE 0x0F00
  485. #define TCSR_UNDERWAIT BIT11
  486. #define TXSTATUS_PREAMBLE_SENT BIT7
  487. #define TXSTATUS_IDLE_SENT BIT6
  488. #define TXSTATUS_ABORT_SENT BIT5
  489. #define TXSTATUS_EOF_SENT BIT4
  490. #define TXSTATUS_EOM_SENT BIT4
  491. #define TXSTATUS_CRC_SENT BIT3
  492. #define TXSTATUS_ALL_SENT BIT2
  493. #define TXSTATUS_UNDERRUN BIT1
  494. #define TXSTATUS_FIFO_EMPTY BIT0
  495. #define TXSTATUS_ALL 0x00fa
  496. #define usc_UnlatchTxstatusBits(a,b) usc_OutReg( (a), TCSR, (u16)((a)->tcsr_value + ((b) & 0x00FF)) )
  497. #define MISCSTATUS_RXC_LATCHED BIT15
  498. #define MISCSTATUS_RXC BIT14
  499. #define MISCSTATUS_TXC_LATCHED BIT13
  500. #define MISCSTATUS_TXC BIT12
  501. #define MISCSTATUS_RI_LATCHED BIT11
  502. #define MISCSTATUS_RI BIT10
  503. #define MISCSTATUS_DSR_LATCHED BIT9
  504. #define MISCSTATUS_DSR BIT8
  505. #define MISCSTATUS_DCD_LATCHED BIT7
  506. #define MISCSTATUS_DCD BIT6
  507. #define MISCSTATUS_CTS_LATCHED BIT5
  508. #define MISCSTATUS_CTS BIT4
  509. #define MISCSTATUS_RCC_UNDERRUN BIT3
  510. #define MISCSTATUS_DPLL_NO_SYNC BIT2
  511. #define MISCSTATUS_BRG1_ZERO BIT1
  512. #define MISCSTATUS_BRG0_ZERO BIT0
  513. #define usc_UnlatchIostatusBits(a,b) usc_OutReg((a),MISR,(u16)((b) & 0xaaa0))
  514. #define usc_UnlatchMiscstatusBits(a,b) usc_OutReg((a),MISR,(u16)((b) & 0x000f))
  515. #define SICR_RXC_ACTIVE BIT15
  516. #define SICR_RXC_INACTIVE BIT14
  517. #define SICR_RXC (BIT15+BIT14)
  518. #define SICR_TXC_ACTIVE BIT13
  519. #define SICR_TXC_INACTIVE BIT12
  520. #define SICR_TXC (BIT13+BIT12)
  521. #define SICR_RI_ACTIVE BIT11
  522. #define SICR_RI_INACTIVE BIT10
  523. #define SICR_RI (BIT11+BIT10)
  524. #define SICR_DSR_ACTIVE BIT9
  525. #define SICR_DSR_INACTIVE BIT8
  526. #define SICR_DSR (BIT9+BIT8)
  527. #define SICR_DCD_ACTIVE BIT7
  528. #define SICR_DCD_INACTIVE BIT6
  529. #define SICR_DCD (BIT7+BIT6)
  530. #define SICR_CTS_ACTIVE BIT5
  531. #define SICR_CTS_INACTIVE BIT4
  532. #define SICR_CTS (BIT5+BIT4)
  533. #define SICR_RCC_UNDERFLOW BIT3
  534. #define SICR_DPLL_NO_SYNC BIT2
  535. #define SICR_BRG1_ZERO BIT1
  536. #define SICR_BRG0_ZERO BIT0
  537. void usc_DisableMasterIrqBit( struct mgsl_struct *info );
  538. void usc_EnableMasterIrqBit( struct mgsl_struct *info );
  539. void usc_EnableInterrupts( struct mgsl_struct *info, u16 IrqMask );
  540. void usc_DisableInterrupts( struct mgsl_struct *info, u16 IrqMask );
  541. void usc_ClearIrqPendingBits( struct mgsl_struct *info, u16 IrqMask );
  542. #define usc_EnableInterrupts( a, b ) 
  543. usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0xff00) + 0xc0 + (b)) )
  544. #define usc_DisableInterrupts( a, b ) 
  545. usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0xff00) + 0x80 + (b)) )
  546. #define usc_EnableMasterIrqBit(a) 
  547. usc_OutReg( (a), ICR, (u16)((usc_InReg((a),ICR) & 0x0f00) + 0xb000) )
  548. #define usc_DisableMasterIrqBit(a) 
  549. usc_OutReg( (a), ICR, (u16)(usc_InReg((a),ICR) & 0x7f00) )
  550. #define usc_ClearIrqPendingBits( a, b ) usc_OutReg( (a), DCCR, 0x40 + (b) )
  551. /*
  552.  * Transmit status Bits in Transmit Control status Register (TCSR)
  553.  * and Transmit Interrupt Control Register (TICR) (except BIT2, BIT0)
  554.  */
  555. #define TXSTATUS_PREAMBLE_SENT BIT7
  556. #define TXSTATUS_IDLE_SENT BIT6
  557. #define TXSTATUS_ABORT_SENT BIT5
  558. #define TXSTATUS_EOF BIT4
  559. #define TXSTATUS_CRC_SENT BIT3
  560. #define TXSTATUS_ALL_SENT BIT2
  561. #define TXSTATUS_UNDERRUN BIT1
  562. #define TXSTATUS_FIFO_EMPTY BIT0
  563. #define DICR_MASTER BIT15
  564. #define DICR_TRANSMIT BIT0
  565. #define DICR_RECEIVE BIT1
  566. #define usc_EnableDmaInterrupts(a,b) 
  567. usc_OutDmaReg( (a), DICR, (u16)(usc_InDmaReg((a),DICR) | (b)) )
  568. #define usc_DisableDmaInterrupts(a,b) 
  569. usc_OutDmaReg( (a), DICR, (u16)(usc_InDmaReg((a),DICR) & ~(b)) )
  570. #define usc_EnableStatusIrqs(a,b) 
  571. usc_OutReg( (a), SICR, (u16)(usc_InReg((a),SICR) | (b)) )
  572. #define usc_DisablestatusIrqs(a,b) 
  573. usc_OutReg( (a), SICR, (u16)(usc_InReg((a),SICR) & ~(b)) )
  574. /* Transmit status Bits in Transmit Control status Register (TCSR) */
  575. /* and Transmit Interrupt Control Register (TICR) (except BIT2, BIT0) */
  576. #define DISABLE_UNCONDITIONAL    0
  577. #define DISABLE_END_OF_FRAME     1
  578. #define ENABLE_UNCONDITIONAL     2
  579. #define ENABLE_AUTO_CTS          3
  580. #define ENABLE_AUTO_DCD          3
  581. #define usc_EnableTransmitter(a,b) 
  582. usc_OutReg( (a), TMR, (u16)((usc_InReg((a),TMR) & 0xfffc) | (b)) )
  583. #define usc_EnableReceiver(a,b) 
  584. usc_OutReg( (a), RMR, (u16)((usc_InReg((a),RMR) & 0xfffc) | (b)) )
  585. u16  usc_InDmaReg( struct mgsl_struct *info, u16 Port );
  586. void usc_OutDmaReg( struct mgsl_struct *info, u16 Port, u16 Value );
  587. void usc_DmaCmd( struct mgsl_struct *info, u16 Cmd );
  588. u16  usc_InReg( struct mgsl_struct *info, u16 Port );
  589. void usc_OutReg( struct mgsl_struct *info, u16 Port, u16 Value );
  590. void usc_RTCmd( struct mgsl_struct *info, u16 Cmd );
  591. void usc_RCmd( struct mgsl_struct *info, u16 Cmd );
  592. void usc_TCmd( struct mgsl_struct *info, u16 Cmd );
  593. #define usc_TCmd(a,b) usc_OutReg((a), TCSR, (u16)((a)->tcsr_value + (b)))
  594. #define usc_RCmd(a,b) usc_OutReg((a), RCSR, (b))
  595. #define usc_SetTransmitSyncChars(a,s0,s1) usc_OutReg((a), TSR, (u16)(((u16)s0<<8)|(u16)s1))
  596. void usc_process_rxoverrun_sync( struct mgsl_struct *info );
  597. void usc_start_receiver( struct mgsl_struct *info );
  598. void usc_stop_receiver( struct mgsl_struct *info );
  599. void usc_start_transmitter( struct mgsl_struct *info );
  600. void usc_stop_transmitter( struct mgsl_struct *info );
  601. void usc_set_txidle( struct mgsl_struct *info );
  602. void usc_load_txfifo( struct mgsl_struct *info );
  603. void usc_enable_aux_clock( struct mgsl_struct *info, u32 DataRate );
  604. void usc_enable_loopback( struct mgsl_struct *info, int enable );
  605. void usc_get_serial_signals( struct mgsl_struct *info );
  606. void usc_set_serial_signals( struct mgsl_struct *info );
  607. void usc_reset( struct mgsl_struct *info );
  608. void usc_set_sync_mode( struct mgsl_struct *info );
  609. void usc_set_sdlc_mode( struct mgsl_struct *info );
  610. void usc_set_async_mode( struct mgsl_struct *info );
  611. void usc_enable_async_clock( struct mgsl_struct *info, u32 DataRate );
  612. void usc_loopback_frame( struct mgsl_struct *info );
  613. void mgsl_tx_timeout(unsigned long context);
  614. void usc_loopmode_cancel_transmit( struct mgsl_struct * info );
  615. void usc_loopmode_insert_request( struct mgsl_struct * info );
  616. int usc_loopmode_active( struct mgsl_struct * info);
  617. void usc_loopmode_send_done( struct mgsl_struct * info );
  618. int usc_loopmode_send_active( struct mgsl_struct * info );
  619. int mgsl_ioctl_common(struct mgsl_struct *info, unsigned int cmd, unsigned long arg);
  620. #ifdef CONFIG_SYNCLINK_SYNCPPP
  621. /* SPPP/HDLC stuff */
  622. void mgsl_sppp_init(struct mgsl_struct *info);
  623. void mgsl_sppp_delete(struct mgsl_struct *info);
  624. int mgsl_sppp_open(struct net_device *d);
  625. int mgsl_sppp_close(struct net_device *d);
  626. void mgsl_sppp_tx_timeout(struct net_device *d);
  627. int mgsl_sppp_tx(struct sk_buff *skb, struct net_device *d);
  628. void mgsl_sppp_rx_done(struct mgsl_struct *info, char *buf, int size);
  629. void mgsl_sppp_tx_done(struct mgsl_struct *info);
  630. int mgsl_sppp_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  631. struct net_device_stats *mgsl_net_stats(struct net_device *dev);
  632. #endif
  633. /*
  634.  * Defines a BUS descriptor value for the PCI adapter
  635.  * local bus address ranges.
  636.  */
  637. #define BUS_DESCRIPTOR( WrHold, WrDly, RdDly, Nwdd, Nwad, Nxda, Nrdd, Nrad ) 
  638. (0x00400020 + 
  639. ((WrHold) << 30) + 
  640. ((WrDly)  << 28) + 
  641. ((RdDly)  << 26) + 
  642. ((Nwdd)   << 20) + 
  643. ((Nwad)   << 15) + 
  644. ((Nxda)   << 13) + 
  645. ((Nrdd)   << 11) + 
  646. ((Nrad)   <<  6) )
  647. void mgsl_trace_block(struct mgsl_struct *info,const char* data, int count, int xmit);
  648. /*
  649.  * Adapter diagnostic routines
  650.  */
  651. BOOLEAN mgsl_register_test( struct mgsl_struct *info );
  652. BOOLEAN mgsl_irq_test( struct mgsl_struct *info );
  653. BOOLEAN mgsl_dma_test( struct mgsl_struct *info );
  654. BOOLEAN mgsl_memory_test( struct mgsl_struct *info );
  655. int mgsl_adapter_test( struct mgsl_struct *info );
  656. /*
  657.  * device and resource management routines
  658.  */
  659. int mgsl_claim_resources(struct mgsl_struct *info);
  660. void mgsl_release_resources(struct mgsl_struct *info);
  661. void mgsl_add_device(struct mgsl_struct *info);
  662. struct mgsl_struct* mgsl_allocate_device(void);
  663. int mgsl_enum_isa_devices(void);
  664. /*
  665.  * DMA buffer manupulation functions.
  666.  */
  667. void mgsl_free_rx_frame_buffers( struct mgsl_struct *info, unsigned int StartIndex, unsigned int EndIndex );
  668. int  mgsl_get_rx_frame( struct mgsl_struct *info );
  669. int  mgsl_get_raw_rx_frame( struct mgsl_struct *info );
  670. void mgsl_reset_rx_dma_buffers( struct mgsl_struct *info );
  671. void mgsl_reset_tx_dma_buffers( struct mgsl_struct *info );
  672. int num_free_tx_dma_buffers(struct mgsl_struct *info);
  673. void mgsl_load_tx_dma_buffer( struct mgsl_struct *info, const char *Buffer, unsigned int BufferSize);
  674. void mgsl_load_pci_memory(char* TargetPtr, const char* SourcePtr, unsigned short count);
  675. /*
  676.  * DMA and Shared Memory buffer allocation and formatting
  677.  */
  678. int  mgsl_allocate_dma_buffers(struct mgsl_struct *info);
  679. void mgsl_free_dma_buffers(struct mgsl_struct *info);
  680. int  mgsl_alloc_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList,int Buffercount);
  681. void mgsl_free_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList,int Buffercount);
  682. int  mgsl_alloc_buffer_list_memory(struct mgsl_struct *info);
  683. void mgsl_free_buffer_list_memory(struct mgsl_struct *info);
  684. int mgsl_alloc_intermediate_rxbuffer_memory(struct mgsl_struct *info);
  685. void mgsl_free_intermediate_rxbuffer_memory(struct mgsl_struct *info);
  686. int mgsl_alloc_intermediate_txbuffer_memory(struct mgsl_struct *info);
  687. void mgsl_free_intermediate_txbuffer_memory(struct mgsl_struct *info);
  688. int load_next_tx_holding_buffer(struct mgsl_struct *info);
  689. int save_tx_buffer_request(struct mgsl_struct *info,const char *Buffer, unsigned int BufferSize);
  690. /*
  691.  * Bottom half interrupt handlers
  692.  */
  693. void mgsl_bh_handler(void* Context);
  694. void mgsl_bh_receive(struct mgsl_struct *info);
  695. void mgsl_bh_transmit(struct mgsl_struct *info);
  696. void mgsl_bh_status(struct mgsl_struct *info);
  697. /*
  698.  * Interrupt handler routines and dispatch table.
  699.  */
  700. void mgsl_isr_null( struct mgsl_struct *info );
  701. void mgsl_isr_transmit_data( struct mgsl_struct *info );
  702. void mgsl_isr_receive_data( struct mgsl_struct *info );
  703. void mgsl_isr_receive_status( struct mgsl_struct *info );
  704. void mgsl_isr_transmit_status( struct mgsl_struct *info );
  705. void mgsl_isr_io_pin( struct mgsl_struct *info );
  706. void mgsl_isr_misc( struct mgsl_struct *info );
  707. void mgsl_isr_receive_dma( struct mgsl_struct *info );
  708. void mgsl_isr_transmit_dma( struct mgsl_struct *info );
  709. typedef void (*isr_dispatch_func)(struct mgsl_struct *);
  710. isr_dispatch_func UscIsrTable[7] =
  711. {
  712. mgsl_isr_null,
  713. mgsl_isr_misc,
  714. mgsl_isr_io_pin,
  715. mgsl_isr_transmit_data,
  716. mgsl_isr_transmit_status,
  717. mgsl_isr_receive_data,
  718. mgsl_isr_receive_status
  719. };
  720. /*
  721.  * ioctl call handlers
  722.  */
  723. static int set_modem_info(struct mgsl_struct * info, unsigned int cmd,
  724.   unsigned int *value);
  725. static int get_modem_info(struct mgsl_struct * info, unsigned int *value);
  726. static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount
  727. *user_icount);
  728. static int mgsl_get_params(struct mgsl_struct * info, MGSL_PARAMS *user_params);
  729. static int mgsl_set_params(struct mgsl_struct * info, MGSL_PARAMS *new_params);
  730. static int mgsl_get_txidle(struct mgsl_struct * info, int*idle_mode);
  731. static int mgsl_set_txidle(struct mgsl_struct * info, int idle_mode);
  732. static int mgsl_txenable(struct mgsl_struct * info, int enable);
  733. static int mgsl_txabort(struct mgsl_struct * info);
  734. static int mgsl_rxenable(struct mgsl_struct * info, int enable);
  735. static int mgsl_wait_event(struct mgsl_struct * info, int * mask);
  736. static int mgsl_loopmode_send_done( struct mgsl_struct * info );
  737. #define jiffies_from_ms(a) ((((a) * HZ)/1000)+1)
  738. /*
  739.  * Global linked list of SyncLink devices
  740.  */
  741. struct mgsl_struct *mgsl_device_list;
  742. int mgsl_device_count;
  743. /*
  744.  * Set this param to non-zero to load eax with the
  745.  * .text section address and breakpoint on module load.
  746.  * This is useful for use with gdb and add-symbol-file command.
  747.  */
  748. int break_on_load;
  749. /*
  750.  * Driver major number, defaults to zero to get auto
  751.  * assigned major number. May be forced as module parameter.
  752.  */
  753. int ttymajor;
  754. int cuamajor;
  755. /*
  756.  * Array of user specified options for ISA adapters.
  757.  */
  758. static int io[MAX_ISA_DEVICES];
  759. static int irq[MAX_ISA_DEVICES];
  760. static int dma[MAX_ISA_DEVICES];
  761. static int debug_level;
  762. static int maxframe[MAX_TOTAL_DEVICES];
  763. static int dosyncppp[MAX_TOTAL_DEVICES];
  764. static int txdmabufs[MAX_TOTAL_DEVICES];
  765. static int txholdbufs[MAX_TOTAL_DEVICES];
  766. MODULE_PARM(break_on_load,"i");
  767. MODULE_PARM(ttymajor,"i");
  768. MODULE_PARM(cuamajor,"i");
  769. MODULE_PARM(io,"1-" __MODULE_STRING(MAX_ISA_DEVICES) "i");
  770. MODULE_PARM(irq,"1-" __MODULE_STRING(MAX_ISA_DEVICES) "i");
  771. MODULE_PARM(dma,"1-" __MODULE_STRING(MAX_ISA_DEVICES) "i");
  772. MODULE_PARM(debug_level,"i");
  773. MODULE_PARM(maxframe,"1-" __MODULE_STRING(MAX_TOTAL_DEVICES) "i");
  774. MODULE_PARM(dosyncppp,"1-" __MODULE_STRING(MAX_TOTAL_DEVICES) "i");
  775. MODULE_PARM(txdmabufs,"1-" __MODULE_STRING(MAX_TOTAL_DEVICES) "i");
  776. MODULE_PARM(txholdbufs,"1-" __MODULE_STRING(MAX_TOTAL_DEVICES) "i");
  777. static char *driver_name = "SyncLink serial driver";
  778. static char *driver_version = "$Revision: 3.12 $";
  779. static int __init synclink_init_one (struct pci_dev *dev,
  780.      const struct pci_device_id *ent);
  781. static void __devexit synclink_remove_one (struct pci_dev *dev);
  782. static struct pci_device_id synclink_pci_tbl[] __devinitdata = {
  783. { PCI_VENDOR_ID_MICROGATE, PCI_DEVICE_ID_MICROGATE_USC, PCI_ANY_ID, PCI_ANY_ID, },
  784. { 0, }, /* terminate list */
  785. };
  786. MODULE_DEVICE_TABLE(pci, synclink_pci_tbl);
  787. MODULE_LICENSE("GPL");
  788. static struct pci_driver synclink_pci_driver = {
  789. name: "synclink",
  790. id_table: synclink_pci_tbl,
  791. probe: synclink_init_one,
  792. remove: __devexit_p(synclink_remove_one),
  793. };
  794. static struct tty_driver serial_driver, callout_driver;
  795. static int serial_refcount;
  796. /* number of characters left in xmit buffer before we ask for more */
  797. #define WAKEUP_CHARS 256
  798. static void mgsl_change_params(struct mgsl_struct *info);
  799. static void mgsl_wait_until_sent(struct tty_struct *tty, int timeout);
  800. static struct tty_struct *serial_table[MAX_TOTAL_DEVICES];
  801. static struct termios *serial_termios[MAX_TOTAL_DEVICES];
  802. static struct termios *serial_termios_locked[MAX_TOTAL_DEVICES];
  803. #ifndef MIN
  804. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  805. #endif
  806. /*
  807.  * 1st function defined in .text section. Calling this function in
  808.  * init_module() followed by a breakpoint allows a remote debugger
  809.  * (gdb) to get the .text address for the add-symbol-file command.
  810.  * This allows remote debugging of dynamically loadable modules.
  811.  */
  812. void* mgsl_get_text_ptr(void);
  813. void* mgsl_get_text_ptr() {return mgsl_get_text_ptr;}
  814. /*
  815.  * tmp_buf is used as a temporary buffer by mgsl_write.  We need to
  816.  * lock it in case the COPY_FROM_USER blocks while swapping in a page,
  817.  * and some other program tries to do a serial write at the same time.
  818.  * Since the lock will only come under contention when the system is
  819.  * swapping and available memory is low, it makes sense to share one
  820.  * buffer across all the serial ioports, since it significantly saves
  821.  * memory if large numbers of serial ports are open.
  822.  */
  823. static unsigned char *tmp_buf;
  824. static DECLARE_MUTEX(tmp_buf_sem);
  825. static inline int mgsl_paranoia_check(struct mgsl_struct *info,
  826. kdev_t device, const char *routine)
  827. {
  828. #ifdef MGSL_PARANOIA_CHECK
  829. static const char *badmagic =
  830. "Warning: bad magic number for mgsl struct (%s) in %sn";
  831. static const char *badinfo =
  832. "Warning: null mgsl_struct for (%s) in %sn";
  833. if (!info) {
  834. printk(badinfo, kdevname(device), routine);
  835. return 1;
  836. }
  837. if (info->magic != MGSL_MAGIC) {
  838. printk(badmagic, kdevname(device), routine);
  839. return 1;
  840. }
  841. #endif
  842. return 0;
  843. }
  844. /* mgsl_stop() throttle (stop) transmitter
  845.  * 
  846.  * Arguments: tty pointer to tty info structure
  847.  * Return Value: None
  848.  */
  849. static void mgsl_stop(struct tty_struct *tty)
  850. {
  851. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  852. unsigned long flags;
  853. if (mgsl_paranoia_check(info, tty->device, "mgsl_stop"))
  854. return;
  855. if ( debug_level >= DEBUG_LEVEL_INFO )
  856. printk("mgsl_stop(%s)n",info->device_name);
  857. spin_lock_irqsave(&info->irq_spinlock,flags);
  858. if (info->tx_enabled)
  859.   usc_stop_transmitter(info);
  860. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  861. } /* end of mgsl_stop() */
  862. /* mgsl_start() release (start) transmitter
  863.  * 
  864.  * Arguments: tty pointer to tty info structure
  865.  * Return Value: None
  866.  */
  867. static void mgsl_start(struct tty_struct *tty)
  868. {
  869. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  870. unsigned long flags;
  871. if (mgsl_paranoia_check(info, tty->device, "mgsl_start"))
  872. return;
  873. if ( debug_level >= DEBUG_LEVEL_INFO )
  874. printk("mgsl_start(%s)n",info->device_name);
  875. spin_lock_irqsave(&info->irq_spinlock,flags);
  876. if (!info->tx_enabled)
  877.   usc_start_transmitter(info);
  878. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  879. } /* end of mgsl_start() */
  880. /*
  881.  * Bottom half work queue access functions
  882.  */
  883. /* mgsl_bh_action() Return next bottom half action to perform.
  884.  * Return Value: BH action code or 0 if nothing to do.
  885.  */
  886. int mgsl_bh_action(struct mgsl_struct *info)
  887. {
  888. unsigned long flags;
  889. int rc = 0;
  890. spin_lock_irqsave(&info->irq_spinlock,flags);
  891. if (info->pending_bh & BH_RECEIVE) {
  892. info->pending_bh &= ~BH_RECEIVE;
  893. rc = BH_RECEIVE;
  894. } else if (info->pending_bh & BH_TRANSMIT) {
  895. info->pending_bh &= ~BH_TRANSMIT;
  896. rc = BH_TRANSMIT;
  897. } else if (info->pending_bh & BH_STATUS) {
  898. info->pending_bh &= ~BH_STATUS;
  899. rc = BH_STATUS;
  900. }
  901. if (!rc) {
  902. /* Mark BH routine as complete */
  903. info->bh_running   = 0;
  904. info->bh_requested = 0;
  905. }
  906. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  907. return rc;
  908. }
  909. /*
  910.  *  Perform bottom half processing of work items queued by ISR.
  911.  */
  912. void mgsl_bh_handler(void* Context)
  913. {
  914. struct mgsl_struct *info = (struct mgsl_struct*)Context;
  915. int action;
  916. if (!info)
  917. return;
  918. if ( debug_level >= DEBUG_LEVEL_BH )
  919. printk( "%s(%d):mgsl_bh_handler(%s) entryn",
  920. __FILE__,__LINE__,info->device_name);
  921. info->bh_running = 1;
  922. while((action = mgsl_bh_action(info)) != 0) {
  923. /* Process work item */
  924. if ( debug_level >= DEBUG_LEVEL_BH )
  925. printk( "%s(%d):mgsl_bh_handler() work item action=%dn",
  926. __FILE__,__LINE__,action);
  927. switch (action) {
  928. case BH_RECEIVE:
  929. mgsl_bh_receive(info);
  930. break;
  931. case BH_TRANSMIT:
  932. mgsl_bh_transmit(info);
  933. break;
  934. case BH_STATUS:
  935. mgsl_bh_status(info);
  936. break;
  937. default:
  938. /* unknown work item ID */
  939. printk("Unknown work item ID=%08X!n", action);
  940. break;
  941. }
  942. }
  943. if ( debug_level >= DEBUG_LEVEL_BH )
  944. printk( "%s(%d):mgsl_bh_handler(%s) exitn",
  945. __FILE__,__LINE__,info->device_name);
  946. }
  947. void mgsl_bh_receive(struct mgsl_struct *info)
  948. {
  949. int (*get_rx_frame)(struct mgsl_struct *info) =
  950. (info->params.mode == MGSL_MODE_HDLC ? mgsl_get_rx_frame : mgsl_get_raw_rx_frame);
  951. if ( debug_level >= DEBUG_LEVEL_BH )
  952. printk( "%s(%d):mgsl_bh_receive(%s)n",
  953. __FILE__,__LINE__,info->device_name);
  954. while( (get_rx_frame)(info) );
  955. }
  956. void mgsl_bh_transmit(struct mgsl_struct *info)
  957. {
  958. struct tty_struct *tty = info->tty;
  959. unsigned long flags;
  960. if ( debug_level >= DEBUG_LEVEL_BH )
  961. printk( "%s(%d):mgsl_bh_transmit() entry on %sn",
  962. __FILE__,__LINE__,info->device_name);
  963. if (tty) {
  964. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  965.     tty->ldisc.write_wakeup) {
  966. if ( debug_level >= DEBUG_LEVEL_BH )
  967. printk( "%s(%d):calling ldisc.write_wakeup on %sn",
  968. __FILE__,__LINE__,info->device_name);
  969. (tty->ldisc.write_wakeup)(tty);
  970. }
  971. wake_up_interruptible(&tty->write_wait);
  972. }
  973. /* if transmitter idle and loopmode_send_done_requested
  974.  * then start echoing RxD to TxD
  975.  */
  976. spin_lock_irqsave(&info->irq_spinlock,flags);
  977.   if ( !info->tx_active && info->loopmode_send_done_requested )
  978.   usc_loopmode_send_done( info );
  979. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  980. }
  981. void mgsl_bh_status(struct mgsl_struct *info)
  982. {
  983. if ( debug_level >= DEBUG_LEVEL_BH )
  984. printk( "%s(%d):mgsl_bh_status() entry on %sn",
  985. __FILE__,__LINE__,info->device_name);
  986. info->ri_chkcount = 0;
  987. info->dsr_chkcount = 0;
  988. info->dcd_chkcount = 0;
  989. info->cts_chkcount = 0;
  990. }
  991. /* mgsl_isr_receive_status()
  992.  * 
  993.  * Service a receive status interrupt. The type of status
  994.  * interrupt is indicated by the state of the RCSR.
  995.  * This is only used for HDLC mode.
  996.  *
  997.  * Arguments: info pointer to device instance data
  998.  * Return Value: None
  999.  */
  1000. void mgsl_isr_receive_status( struct mgsl_struct *info )
  1001. {
  1002. u16 status = usc_InReg( info, RCSR );
  1003. if ( debug_level >= DEBUG_LEVEL_ISR )
  1004. printk("%s(%d):mgsl_isr_receive_status status=%04Xn",
  1005. __FILE__,__LINE__,status);
  1006.   if ( (status & RXSTATUS_ABORT_RECEIVED) && 
  1007. info->loopmode_insert_requested &&
  1008.   usc_loopmode_active(info) )
  1009.   {
  1010. ++info->icount.rxabort;
  1011.   info->loopmode_insert_requested = FALSE;
  1012.  
  1013.   /* clear CMR:13 to start echoing RxD to TxD */
  1014. info->cmr_value &= ~BIT13;
  1015.   usc_OutReg(info, CMR, info->cmr_value);
  1016.  
  1017. /* disable received abort irq (no longer required) */
  1018.   usc_OutReg(info, RICR,
  1019.   (usc_InReg(info, RICR) & ~RXSTATUS_ABORT_RECEIVED));
  1020.   }
  1021. if (status & (RXSTATUS_EXITED_HUNT + RXSTATUS_IDLE_RECEIVED)) {
  1022. if (status & RXSTATUS_EXITED_HUNT)
  1023. info->icount.exithunt++;
  1024. if (status & RXSTATUS_IDLE_RECEIVED)
  1025. info->icount.rxidle++;
  1026. wake_up_interruptible(&info->event_wait_q);
  1027. }
  1028. if (status & RXSTATUS_OVERRUN){
  1029. info->icount.rxover++;
  1030. usc_process_rxoverrun_sync( info );
  1031. }
  1032. usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
  1033. usc_UnlatchRxstatusBits( info, status );
  1034. } /* end of mgsl_isr_receive_status() */
  1035. /* mgsl_isr_transmit_status()
  1036.  * 
  1037.  *  Service a transmit status interrupt
  1038.  * HDLC mode :end of transmit frame
  1039.  * Async mode:all data is sent
  1040.  *  transmit status is indicated by bits in the TCSR.
  1041.  * 
  1042.  * Arguments: info        pointer to device instance data
  1043.  * Return Value: None
  1044.  */
  1045. void mgsl_isr_transmit_status( struct mgsl_struct *info )
  1046. {
  1047. u16 status = usc_InReg( info, TCSR );
  1048. if ( debug_level >= DEBUG_LEVEL_ISR )
  1049. printk("%s(%d):mgsl_isr_transmit_status status=%04Xn",
  1050. __FILE__,__LINE__,status);
  1051. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
  1052. usc_UnlatchTxstatusBits( info, status );
  1053. if ( status & (TXSTATUS_UNDERRUN | TXSTATUS_ABORT_SENT) )
  1054. {
  1055. /* finished sending HDLC abort. This may leave */
  1056. /* the TxFifo with data from the aborted frame */
  1057. /* so purge the TxFifo. Also shutdown the DMA */
  1058. /* channel in case there is data remaining in  */
  1059. /* the DMA buffer */
  1060.   usc_DmaCmd( info, DmaCmd_ResetTxChannel );
  1061.   usc_RTCmd( info, RTCmd_PurgeTxFifo );
  1062. }
  1063.  
  1064. if ( status & TXSTATUS_EOF_SENT )
  1065. info->icount.txok++;
  1066. else if ( status & TXSTATUS_UNDERRUN )
  1067. info->icount.txunder++;
  1068. else if ( status & TXSTATUS_ABORT_SENT )
  1069. info->icount.txabort++;
  1070. else
  1071. info->icount.txunder++;
  1072. info->tx_active = 0;
  1073. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  1074. del_timer(&info->tx_timer);
  1075. if ( info->drop_rts_on_tx_done ) {
  1076. usc_get_serial_signals( info );
  1077. if ( info->serial_signals & SerialSignal_RTS ) {
  1078. info->serial_signals &= ~SerialSignal_RTS;
  1079. usc_set_serial_signals( info );
  1080. }
  1081. info->drop_rts_on_tx_done = 0;
  1082. }
  1083. #ifdef CONFIG_SYNCLINK_SYNCPPP
  1084. if (info->netcount)
  1085. mgsl_sppp_tx_done(info);
  1086. else 
  1087. #endif
  1088. {
  1089. if (info->tty->stopped || info->tty->hw_stopped) {
  1090. usc_stop_transmitter(info);
  1091. return;
  1092. }
  1093. info->pending_bh |= BH_TRANSMIT;
  1094. }
  1095. } /* end of mgsl_isr_transmit_status() */
  1096. /* mgsl_isr_io_pin()
  1097.  * 
  1098.  *  Service an Input/Output pin interrupt. The type of
  1099.  *  interrupt is indicated by bits in the MISR
  1100.  * 
  1101.  * Arguments: info        pointer to device instance data
  1102.  * Return Value: None
  1103.  */
  1104. void mgsl_isr_io_pin( struct mgsl_struct *info )
  1105. {
  1106.   struct mgsl_icount *icount;
  1107. u16 status = usc_InReg( info, MISR );
  1108. if ( debug_level >= DEBUG_LEVEL_ISR )
  1109. printk("%s(%d):mgsl_isr_io_pin status=%04Xn",
  1110. __FILE__,__LINE__,status);
  1111. usc_ClearIrqPendingBits( info, IO_PIN );
  1112. usc_UnlatchIostatusBits( info, status );
  1113. if (status & (MISCSTATUS_CTS_LATCHED | MISCSTATUS_DCD_LATCHED |
  1114.               MISCSTATUS_DSR_LATCHED | MISCSTATUS_RI_LATCHED) ) {
  1115. icount = &info->icount;
  1116. /* update input line counters */
  1117. if (status & MISCSTATUS_RI_LATCHED) {
  1118. if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
  1119. usc_DisablestatusIrqs(info,SICR_RI);
  1120. icount->rng++;
  1121. if ( status & MISCSTATUS_RI )
  1122. info->input_signal_events.ri_up++;
  1123. else
  1124. info->input_signal_events.ri_down++;
  1125. }
  1126. if (status & MISCSTATUS_DSR_LATCHED) {
  1127. if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
  1128. usc_DisablestatusIrqs(info,SICR_DSR);
  1129. icount->dsr++;
  1130. if ( status & MISCSTATUS_DSR )
  1131. info->input_signal_events.dsr_up++;
  1132. else
  1133. info->input_signal_events.dsr_down++;
  1134. }
  1135. if (status & MISCSTATUS_DCD_LATCHED) {
  1136. if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
  1137. usc_DisablestatusIrqs(info,SICR_DCD);
  1138. icount->dcd++;
  1139. if (status & MISCSTATUS_DCD) {
  1140. info->input_signal_events.dcd_up++;
  1141. #ifdef CONFIG_SYNCLINK_SYNCPPP
  1142. if (info->netcount)
  1143. sppp_reopen(info->netdev);
  1144. #endif
  1145. } else
  1146. info->input_signal_events.dcd_down++;
  1147. }
  1148. if (status & MISCSTATUS_CTS_LATCHED)
  1149. {
  1150. if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
  1151. usc_DisablestatusIrqs(info,SICR_CTS);
  1152. icount->cts++;
  1153. if ( status & MISCSTATUS_CTS )
  1154. info->input_signal_events.cts_up++;
  1155. else
  1156. info->input_signal_events.cts_down++;
  1157. }
  1158. wake_up_interruptible(&info->status_event_wait_q);
  1159. wake_up_interruptible(&info->event_wait_q);
  1160. if ( (info->flags & ASYNC_CHECK_CD) && 
  1161.      (status & MISCSTATUS_DCD_LATCHED) ) {
  1162. if ( debug_level >= DEBUG_LEVEL_ISR )
  1163. printk("%s CD now %s...", info->device_name,
  1164.        (status & MISCSTATUS_DCD) ? "on" : "off");
  1165. if (status & MISCSTATUS_DCD)
  1166. wake_up_interruptible(&info->open_wait);
  1167. else if (!((info->flags & ASYNC_CALLOUT_ACTIVE) &&
  1168.    (info->flags & ASYNC_CALLOUT_NOHUP))) {
  1169. if ( debug_level >= DEBUG_LEVEL_ISR )
  1170. printk("doing serial hangup...");
  1171. if (info->tty)
  1172. tty_hangup(info->tty);
  1173. }
  1174. }
  1175. if ( (info->flags & ASYNC_CTS_FLOW) && 
  1176.      (status & MISCSTATUS_CTS_LATCHED) ) {
  1177. if (info->tty->hw_stopped) {
  1178. if (status & MISCSTATUS_CTS) {
  1179. if ( debug_level >= DEBUG_LEVEL_ISR )
  1180. printk("CTS tx start...");
  1181. if (info->tty)
  1182. info->tty->hw_stopped = 0;
  1183. usc_start_transmitter(info);
  1184. info->pending_bh |= BH_TRANSMIT;
  1185. return;
  1186. }
  1187. } else {
  1188. if (!(status & MISCSTATUS_CTS)) {
  1189. if ( debug_level >= DEBUG_LEVEL_ISR )
  1190. printk("CTS tx stop...");
  1191. if (info->tty)
  1192. info->tty->hw_stopped = 1;
  1193. usc_stop_transmitter(info);
  1194. }
  1195. }
  1196. }
  1197. }
  1198. info->pending_bh |= BH_STATUS;
  1199. /* for diagnostics set IRQ flag */
  1200. if ( status & MISCSTATUS_TXC_LATCHED ){
  1201. usc_OutReg( info, SICR,
  1202. (unsigned short)(usc_InReg(info,SICR) & ~(SICR_TXC_ACTIVE+SICR_TXC_INACTIVE)) );
  1203. usc_UnlatchIostatusBits( info, MISCSTATUS_TXC_LATCHED );
  1204. info->irq_occurred = 1;
  1205. }
  1206. } /* end of mgsl_isr_io_pin() */
  1207. /* mgsl_isr_transmit_data()
  1208.  * 
  1209.  *  Service a transmit data interrupt (async mode only).
  1210.  * 
  1211.  * Arguments: info pointer to device instance data
  1212.  * Return Value: None
  1213.  */
  1214. void mgsl_isr_transmit_data( struct mgsl_struct *info )
  1215. {
  1216. if ( debug_level >= DEBUG_LEVEL_ISR )
  1217. printk("%s(%d):mgsl_isr_transmit_data xmit_cnt=%dn",
  1218. __FILE__,__LINE__,info->xmit_cnt);
  1219. usc_ClearIrqPendingBits( info, TRANSMIT_DATA );
  1220. if (info->tty->stopped || info->tty->hw_stopped) {
  1221. usc_stop_transmitter(info);
  1222. return;
  1223. }
  1224. if ( info->xmit_cnt )
  1225. usc_load_txfifo( info );
  1226. else
  1227. info->tx_active = 0;
  1228. if (info->xmit_cnt < WAKEUP_CHARS)
  1229. info->pending_bh |= BH_TRANSMIT;
  1230. } /* end of mgsl_isr_transmit_data() */
  1231. /* mgsl_isr_receive_data()
  1232.  * 
  1233.  *  Service a receive data interrupt. This occurs
  1234.  *  when operating in asynchronous interrupt transfer mode.
  1235.  * The receive data FIFO is flushed to the receive data buffers. 
  1236.  * 
  1237.  * Arguments: info pointer to device instance data
  1238.  * Return Value: None
  1239.  */
  1240. void mgsl_isr_receive_data( struct mgsl_struct *info )
  1241. {
  1242. int Fifocount;
  1243. u16 status;
  1244. unsigned char DataByte;
  1245.   struct tty_struct *tty = info->tty;
  1246.   struct mgsl_icount *icount = &info->icount;
  1247. if ( debug_level >= DEBUG_LEVEL_ISR )
  1248. printk("%s(%d):mgsl_isr_receive_datan",
  1249. __FILE__,__LINE__);
  1250. usc_ClearIrqPendingBits( info, RECEIVE_DATA );
  1251. /* select FIFO status for RICR readback */
  1252. usc_RCmd( info, RCmd_SelectRicrRxFifostatus );
  1253. /* clear the Wordstatus bit so that status readback */
  1254. /* only reflects the status of this byte */
  1255. usc_OutReg( info, RICR+LSBONLY, (u16)(usc_InReg(info, RICR+LSBONLY) & ~BIT3 ));
  1256. /* flush the receive FIFO */
  1257. while( (Fifocount = (usc_InReg(info,RICR) >> 8)) ) {
  1258. /* read one byte from RxFIFO */
  1259. outw( (inw(info->io_base + CCAR) & 0x0780) | (RDR+LSBONLY),
  1260.       info->io_base + CCAR );
  1261. DataByte = inb( info->io_base + CCAR );
  1262. /* get the status of the received byte */
  1263. status = usc_InReg(info, RCSR);
  1264. if ( status & (RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR +
  1265. RXSTATUS_OVERRUN + RXSTATUS_BREAK_RECEIVED) )
  1266. usc_UnlatchRxstatusBits(info,RXSTATUS_ALL);
  1267. if (tty->flip.count >= TTY_FLIPBUF_SIZE)
  1268. continue;
  1269. *tty->flip.char_buf_ptr = DataByte;
  1270. icount->rx++;
  1271. *tty->flip.flag_buf_ptr = 0;
  1272. if ( status & (RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR +
  1273. RXSTATUS_OVERRUN + RXSTATUS_BREAK_RECEIVED) ) {
  1274. printk("rxerr=%04Xn",status);
  1275. /* update error statistics */
  1276. if ( status & RXSTATUS_BREAK_RECEIVED ) {
  1277. status &= ~(RXSTATUS_FRAMING_ERROR + RXSTATUS_PARITY_ERROR);
  1278. icount->brk++;
  1279. } else if (status & RXSTATUS_PARITY_ERROR) 
  1280. icount->parity++;
  1281. else if (status & RXSTATUS_FRAMING_ERROR)
  1282. icount->frame++;
  1283. else if (status & RXSTATUS_OVERRUN) {
  1284. /* must issue purge fifo cmd before */
  1285. /* 16C32 accepts more receive chars */
  1286. usc_RTCmd(info,RTCmd_PurgeRxFifo);
  1287. icount->overrun++;
  1288. }
  1289. /* discard char if tty control flags say so */
  1290. if (status & info->ignore_status_mask)
  1291. continue;
  1292. status &= info->read_status_mask;
  1293. if (status & RXSTATUS_BREAK_RECEIVED) {
  1294. *tty->flip.flag_buf_ptr = TTY_BREAK;
  1295. if (info->flags & ASYNC_SAK)
  1296. do_SAK(tty);
  1297. } else if (status & RXSTATUS_PARITY_ERROR)
  1298. *tty->flip.flag_buf_ptr = TTY_PARITY;
  1299. else if (status & RXSTATUS_FRAMING_ERROR)
  1300. *tty->flip.flag_buf_ptr = TTY_FRAME;
  1301. if (status & RXSTATUS_OVERRUN) {
  1302. /* Overrun is special, since it's
  1303.  * reported immediately, and doesn't
  1304.  * affect the current character
  1305.  */
  1306. if (tty->flip.count < TTY_FLIPBUF_SIZE) {
  1307. tty->flip.count++;
  1308. tty->flip.flag_buf_ptr++;
  1309. tty->flip.char_buf_ptr++;
  1310. *tty->flip.flag_buf_ptr = TTY_OVERRUN;
  1311. }
  1312. }
  1313. } /* end of if (error) */
  1314. tty->flip.flag_buf_ptr++;
  1315. tty->flip.char_buf_ptr++;
  1316. tty->flip.count++;
  1317. }
  1318. if ( debug_level >= DEBUG_LEVEL_ISR ) {
  1319. printk("%s(%d):mgsl_isr_receive_data flip count=%dn",
  1320. __FILE__,__LINE__,tty->flip.count);
  1321. printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%dn",
  1322. __FILE__,__LINE__,icount->rx,icount->brk,
  1323. icount->parity,icount->frame,icount->overrun);
  1324. }
  1325. if ( tty->flip.count )
  1326. tty_flip_buffer_push(tty);
  1327. }
  1328. /* mgsl_isr_misc()
  1329.  * 
  1330.  *  Service a miscellaneos interrupt source.
  1331.  * 
  1332.  * Arguments: info pointer to device extension (instance data)
  1333.  * Return Value: None
  1334.  */
  1335. void mgsl_isr_misc( struct mgsl_struct *info )
  1336. {
  1337. u16 status = usc_InReg( info, MISR );
  1338. if ( debug_level >= DEBUG_LEVEL_ISR )
  1339. printk("%s(%d):mgsl_isr_misc status=%04Xn",
  1340. __FILE__,__LINE__,status);
  1341. usc_ClearIrqPendingBits( info, MISC );
  1342. usc_UnlatchMiscstatusBits( info, status );
  1343. } /* end of mgsl_isr_misc() */
  1344. /* mgsl_isr_null()
  1345.  *
  1346.  *  Services undefined interrupt vectors from the
  1347.  *  USC. (hence this function SHOULD never be called)
  1348.  * 
  1349.  * Arguments: info pointer to device extension (instance data)
  1350.  * Return Value: None
  1351.  */
  1352. void mgsl_isr_null( struct mgsl_struct *info )
  1353. {
  1354. } /* end of mgsl_isr_null() */
  1355. /* mgsl_isr_receive_dma()
  1356.  * 
  1357.  *  Service a receive DMA channel interrupt.
  1358.  *  For this driver there are two sources of receive DMA interrupts
  1359.  *  as identified in the Receive DMA mode Register (RDMR):
  1360.  * 
  1361.  *  BIT3 EOA/EOL End of List, all receive buffers in receive
  1362.  *  buffer list have been filled (no more free buffers
  1363.  *  available). The DMA controller has shut down.
  1364.  * 
  1365.  *  BIT2 EOB End of Buffer. This interrupt occurs when a receive
  1366.  *  DMA buffer is terminated in response to completion
  1367.  *  of a good frame or a frame with errors. The status
  1368.  *  of the frame is stored in the buffer entry in the
  1369.  *  list of receive buffer entries.
  1370.  * 
  1371.  * Arguments: info pointer to device instance data
  1372.  * Return Value: None
  1373.  */
  1374. void mgsl_isr_receive_dma( struct mgsl_struct *info )
  1375. {
  1376. u16 status;
  1377. /* clear interrupt pending and IUS bit for Rx DMA IRQ */
  1378. usc_OutDmaReg( info, CDIR, BIT9+BIT1 );
  1379. /* Read the receive DMA status to identify interrupt type. */
  1380. /* This also clears the status bits. */
  1381. status = usc_InDmaReg( info, RDMR );
  1382. if ( debug_level >= DEBUG_LEVEL_ISR )
  1383. printk("%s(%d):mgsl_isr_receive_dma(%s) status=%04Xn",
  1384. __FILE__,__LINE__,info->device_name,status);
  1385. info->pending_bh |= BH_RECEIVE;
  1386. if ( status & BIT3 ) {
  1387. info->rx_overflow = 1;
  1388. info->icount.buf_overrun++;
  1389. }
  1390. } /* end of mgsl_isr_receive_dma() */
  1391. /* mgsl_isr_transmit_dma()
  1392.  *
  1393.  * This function services a transmit DMA channel interrupt.
  1394.  *
  1395.  * For this driver there is one source of transmit DMA interrupts
  1396.  * as identified in the Transmit DMA Mode Register (TDMR):
  1397.  *
  1398.  *      BIT2  EOB       End of Buffer. This interrupt occurs when a
  1399.  *      transmit DMA buffer has been emptied.
  1400.  *
  1401.  *      The driver maintains enough transmit DMA buffers to hold at least
  1402.  *      one max frame size transmit frame. When operating in a buffered
  1403.  *      transmit mode, there may be enough transmit DMA buffers to hold at
  1404.  *      least two or more max frame size frames. On an EOB condition,
  1405.  *      determine if there are any queued transmit buffers and copy into
  1406.  *      transmit DMA buffers if we have room.
  1407.  *
  1408.  * Arguments: info pointer to device instance data
  1409.  * Return Value: None
  1410.  */
  1411. void mgsl_isr_transmit_dma( struct mgsl_struct *info )
  1412. {
  1413. u16 status;
  1414. /* clear interrupt pending and IUS bit for Tx DMA IRQ */
  1415. usc_OutDmaReg(info, CDIR, BIT8+BIT0 );
  1416. /* Read the transmit DMA status to identify interrupt type. */
  1417. /* This also clears the status bits. */
  1418. status = usc_InDmaReg( info, TDMR );
  1419. if ( debug_level >= DEBUG_LEVEL_ISR )
  1420. printk("%s(%d):mgsl_isr_transmit_dma(%s) status=%04Xn",
  1421. __FILE__,__LINE__,info->device_name,status);
  1422. if ( status & BIT2 ) {
  1423. --info->tx_dma_buffers_used;
  1424. /* if there are transmit frames queued,
  1425.  *  try to load the next one
  1426.  */
  1427. if ( load_next_tx_holding_buffer(info) ) {
  1428. /* if call returns non-zero value, we have
  1429.  * at least one free tx holding buffer
  1430.  */
  1431. info->pending_bh |= BH_TRANSMIT;
  1432. }
  1433. }
  1434. } /* end of mgsl_isr_transmit_dma() */
  1435. /* mgsl_interrupt()
  1436.  * 
  1437.  *  Interrupt service routine entry point.
  1438.  * 
  1439.  * Arguments:
  1440.  * 
  1441.  *  irq interrupt number that caused interrupt
  1442.  *  dev_id device ID supplied during interrupt registration
  1443.  *  regs interrupted processor context
  1444.  * 
  1445.  * Return Value: None
  1446.  */
  1447. static void mgsl_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1448. {
  1449. struct mgsl_struct * info;
  1450. u16 UscVector;
  1451. u16 DmaVector;
  1452. if ( debug_level >= DEBUG_LEVEL_ISR )
  1453. printk("%s(%d):mgsl_interrupt(%d)entry.n",
  1454. __FILE__,__LINE__,irq);
  1455. info = (struct mgsl_struct *)dev_id;
  1456. if (!info)
  1457. return;
  1458. spin_lock(&info->irq_spinlock);
  1459. for(;;) {
  1460. /* Read the interrupt vectors from hardware. */
  1461. UscVector = usc_InReg(info, IVR) >> 9;
  1462. DmaVector = usc_InDmaReg(info, DIVR);
  1463. if ( debug_level >= DEBUG_LEVEL_ISR )
  1464. printk("%s(%d):%s UscVector=%08X DmaVector=%08Xn",
  1465. __FILE__,__LINE__,info->device_name,UscVector,DmaVector);
  1466. if ( !UscVector && !DmaVector )
  1467. break;
  1468. /* Dispatch interrupt vector */
  1469. if ( UscVector )
  1470. (*UscIsrTable[UscVector])(info);
  1471. else if ( (DmaVector&(BIT10|BIT9)) == BIT10)
  1472. mgsl_isr_transmit_dma(info);
  1473. else
  1474. mgsl_isr_receive_dma(info);
  1475. if ( info->isr_overflow ) {
  1476. printk(KERN_ERR"%s(%d):%s isr overflow irq=%dn",
  1477. __FILE__,__LINE__,info->device_name, irq);
  1478. usc_DisableMasterIrqBit(info);
  1479. usc_DisableDmaInterrupts(info,DICR_MASTER);
  1480. break;
  1481. }
  1482. }
  1483. /* Request bottom half processing if there's something 
  1484.  * for it to do and the bh is not already running
  1485.  */
  1486. if ( info->pending_bh && !info->bh_running && !info->bh_requested ) {
  1487. if ( debug_level >= DEBUG_LEVEL_ISR )
  1488. printk("%s(%d):%s queueing bh task.n",
  1489. __FILE__,__LINE__,info->device_name);
  1490. queue_task(&info->task, &tq_immediate);
  1491. mark_bh(IMMEDIATE_BH);
  1492. info->bh_requested = 1;
  1493. }
  1494. spin_unlock(&info->irq_spinlock);
  1495. if ( debug_level >= DEBUG_LEVEL_ISR )
  1496. printk("%s(%d):mgsl_interrupt(%d)exit.n",
  1497. __FILE__,__LINE__,irq);
  1498. } /* end of mgsl_interrupt() */
  1499. /* startup()
  1500.  * 
  1501.  *  Initialize and start device.
  1502.  * 
  1503.  * Arguments: info pointer to device instance data
  1504.  * Return Value: 0 if success, otherwise error code
  1505.  */
  1506. static int startup(struct mgsl_struct * info)
  1507. {
  1508. int retval = 0;
  1509. if ( debug_level >= DEBUG_LEVEL_INFO )
  1510. printk("%s(%d):mgsl_startup(%s)n",__FILE__,__LINE__,info->device_name);
  1511. if (info->flags & ASYNC_INITIALIZED)
  1512. return 0;
  1513. if (!info->xmit_buf) {
  1514. /* allocate a page of memory for a transmit buffer */
  1515. info->xmit_buf = (unsigned char *)get_free_page(GFP_KERNEL);
  1516. if (!info->xmit_buf) {
  1517. printk(KERN_ERR"%s(%d):%s can't allocate transmit buffern",
  1518. __FILE__,__LINE__,info->device_name);
  1519. return -ENOMEM;
  1520. }
  1521. }
  1522. info->pending_bh = 0;
  1523. init_timer(&info->tx_timer);
  1524. info->tx_timer.data = (unsigned long)info;
  1525. info->tx_timer.function = mgsl_tx_timeout;
  1526. /* Allocate and claim adapter resources */
  1527. retval = mgsl_claim_resources(info);
  1528. /* perform existance check and diagnostics */
  1529. if ( !retval )
  1530. retval = mgsl_adapter_test(info);
  1531. if ( retval ) {
  1532.    if (capable(CAP_SYS_ADMIN) && info->tty)
  1533. set_bit(TTY_IO_ERROR, &info->tty->flags);
  1534. mgsl_release_resources(info);
  1535.    return retval;
  1536.    }
  1537. /* program hardware for current parameters */
  1538. mgsl_change_params(info);
  1539. if (info->tty)
  1540. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  1541. info->flags |= ASYNC_INITIALIZED;
  1542. return 0;
  1543. } /* end of startup() */
  1544. /* shutdown()
  1545.  *
  1546.  * Called by mgsl_close() and mgsl_hangup() to shutdown hardware
  1547.  *
  1548.  * Arguments: info pointer to device instance data
  1549.  * Return Value: None
  1550.  */
  1551. static void shutdown(struct mgsl_struct * info)
  1552. {
  1553. unsigned long flags;
  1554. if (!(info->flags & ASYNC_INITIALIZED))
  1555. return;
  1556. if (debug_level >= DEBUG_LEVEL_INFO)
  1557. printk("%s(%d):mgsl_shutdown(%s)n",
  1558.  __FILE__,__LINE__, info->device_name );
  1559. /* clear status wait queue because status changes */
  1560. /* can't happen after shutting down the hardware */
  1561. wake_up_interruptible(&info->status_event_wait_q);
  1562. wake_up_interruptible(&info->event_wait_q);
  1563. del_timer(&info->tx_timer);
  1564. if (info->xmit_buf) {
  1565. free_page((unsigned long) info->xmit_buf);
  1566. info->xmit_buf = 0;
  1567. }
  1568. spin_lock_irqsave(&info->irq_spinlock,flags);
  1569. usc_DisableMasterIrqBit(info);
  1570. usc_stop_receiver(info);
  1571. usc_stop_transmitter(info);
  1572. usc_DisableInterrupts(info,RECEIVE_DATA + RECEIVE_STATUS +
  1573. TRANSMIT_DATA + TRANSMIT_STATUS + IO_PIN + MISC );
  1574. usc_DisableDmaInterrupts(info,DICR_MASTER + DICR_TRANSMIT + DICR_RECEIVE);
  1575. /* Disable DMAEN (Port 7, Bit 14) */
  1576. /* This disconnects the DMA request signal from the ISA bus */
  1577. /* on the ISA adapter. This has no effect for the PCI adapter */
  1578. usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT15) | BIT14));
  1579. /* Disable INTEN (Port 6, Bit12) */
  1580. /* This disconnects the IRQ request signal to the ISA bus */
  1581. /* on the ISA adapter. This has no effect for the PCI adapter */
  1582. usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) | BIT12));
  1583.   if (!info->tty || info->tty->termios->c_cflag & HUPCL) {
  1584.   info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
  1585. usc_set_serial_signals(info);
  1586. }
  1587. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1588. mgsl_release_resources(info);
  1589. if (info->tty)
  1590. set_bit(TTY_IO_ERROR, &info->tty->flags);
  1591. info->flags &= ~ASYNC_INITIALIZED;
  1592. } /* end of shutdown() */
  1593. static void mgsl_program_hw(struct mgsl_struct *info)
  1594. {
  1595. unsigned long flags;
  1596. spin_lock_irqsave(&info->irq_spinlock,flags);
  1597. usc_stop_receiver(info);
  1598. usc_stop_transmitter(info);
  1599. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  1600. if (info->params.mode == MGSL_MODE_HDLC ||
  1601.     info->params.mode == MGSL_MODE_RAW ||
  1602.     info->netcount)
  1603. usc_set_sync_mode(info);
  1604. else
  1605. usc_set_async_mode(info);
  1606. usc_set_serial_signals(info);
  1607. info->dcd_chkcount = 0;
  1608. info->cts_chkcount = 0;
  1609. info->ri_chkcount = 0;
  1610. info->dsr_chkcount = 0;
  1611. usc_EnableStatusIrqs(info,SICR_CTS+SICR_DSR+SICR_DCD+SICR_RI);
  1612. usc_EnableInterrupts(info, IO_PIN);
  1613. usc_get_serial_signals(info);
  1614. if (info->netcount || info->tty->termios->c_cflag & CREAD)
  1615. usc_start_receiver(info);
  1616. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1617. }
  1618. /* Reconfigure adapter based on new parameters
  1619.  */
  1620. static void mgsl_change_params(struct mgsl_struct *info)
  1621. {
  1622. unsigned cflag;
  1623. int bits_per_char;
  1624. if (!info->tty || !info->tty->termios)
  1625. return;
  1626. if (debug_level >= DEBUG_LEVEL_INFO)
  1627. printk("%s(%d):mgsl_change_params(%s)n",
  1628.  __FILE__,__LINE__, info->device_name );
  1629.  
  1630. cflag = info->tty->termios->c_cflag;
  1631. /* if B0 rate (hangup) specified then negate DTR and RTS */
  1632. /* otherwise assert DTR and RTS */
  1633.   if (cflag & CBAUD)
  1634. info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  1635. else
  1636. info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
  1637. /* byte size and parity */
  1638. switch (cflag & CSIZE) {
  1639.       case CS5: info->params.data_bits = 5; break;
  1640.       case CS6: info->params.data_bits = 6; break;
  1641.       case CS7: info->params.data_bits = 7; break;
  1642.       case CS8: info->params.data_bits = 8; break;
  1643.       /* Never happens, but GCC is too dumb to figure it out */
  1644.       default:  info->params.data_bits = 7; break;
  1645.       }
  1646.       
  1647. if (cflag & CSTOPB)
  1648. info->params.stop_bits = 2;
  1649. else
  1650. info->params.stop_bits = 1;
  1651. info->params.parity = ASYNC_PARITY_NONE;
  1652. if (cflag & PARENB) {
  1653. if (cflag & PARODD)
  1654. info->params.parity = ASYNC_PARITY_ODD;
  1655. else
  1656. info->params.parity = ASYNC_PARITY_EVEN;
  1657. #ifdef CMSPAR
  1658. if (cflag & CMSPAR)
  1659. info->params.parity = ASYNC_PARITY_SPACE;
  1660. #endif
  1661. }
  1662. /* calculate number of jiffies to transmit a full
  1663.  * FIFO (32 bytes) at specified data rate
  1664.  */
  1665. bits_per_char = info->params.data_bits + 
  1666. info->params.stop_bits + 1;
  1667. /* if port data rate is set to 460800 or less then
  1668.  * allow tty settings to override, otherwise keep the
  1669.  * current data rate.
  1670.  */
  1671. if (info->params.data_rate <= 460800)
  1672. info->params.data_rate = tty_get_baud_rate(info->tty);
  1673. if ( info->params.data_rate ) {
  1674. info->timeout = (32*HZ*bits_per_char) / 
  1675. info->params.data_rate;
  1676. }
  1677. info->timeout += HZ/50; /* Add .02 seconds of slop */
  1678. if (cflag & CRTSCTS)
  1679. info->flags |= ASYNC_CTS_FLOW;
  1680. else
  1681. info->flags &= ~ASYNC_CTS_FLOW;
  1682. if (cflag & CLOCAL)
  1683. info->flags &= ~ASYNC_CHECK_CD;
  1684. else
  1685. info->flags |= ASYNC_CHECK_CD;
  1686. /* process tty input control flags */
  1687. info->read_status_mask = RXSTATUS_OVERRUN;
  1688. if (I_INPCK(info->tty))
  1689. info->read_status_mask |= RXSTATUS_PARITY_ERROR | RXSTATUS_FRAMING_ERROR;
  1690.   if (I_BRKINT(info->tty) || I_PARMRK(info->tty))
  1691.   info->read_status_mask |= RXSTATUS_BREAK_RECEIVED;
  1692. if (I_IGNPAR(info->tty))
  1693. info->ignore_status_mask |= RXSTATUS_PARITY_ERROR | RXSTATUS_FRAMING_ERROR;
  1694. if (I_IGNBRK(info->tty)) {
  1695. info->ignore_status_mask |= RXSTATUS_BREAK_RECEIVED;
  1696. /* If ignoring parity and break indicators, ignore 
  1697.  * overruns too.  (For real raw support).
  1698.  */
  1699. if (I_IGNPAR(info->tty))
  1700. info->ignore_status_mask |= RXSTATUS_OVERRUN;
  1701. }
  1702. mgsl_program_hw(info);
  1703. } /* end of mgsl_change_params() */
  1704. /* mgsl_put_char()
  1705.  * 
  1706.  *  Add a character to the transmit buffer.
  1707.  * 
  1708.  * Arguments: tty pointer to tty information structure
  1709.  *  ch character to add to transmit buffer
  1710.  * 
  1711.  * Return Value: None
  1712.  */
  1713. static void mgsl_put_char(struct tty_struct *tty, unsigned char ch)
  1714. {
  1715. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  1716. unsigned long flags;
  1717. if ( debug_level >= DEBUG_LEVEL_INFO ) {
  1718. printk( "%s(%d):mgsl_put_char(%d) on %sn",
  1719. __FILE__,__LINE__,ch,info->device_name);
  1720. }
  1721. if (mgsl_paranoia_check(info, tty->device, "mgsl_put_char"))
  1722. return;
  1723. if (!tty || !info->xmit_buf)
  1724. return;
  1725. spin_lock_irqsave(&info->irq_spinlock,flags);
  1726. if ( (info->params.mode == MGSL_MODE_ASYNC ) || !info->tx_active ) {
  1727. if (info->xmit_cnt < SERIAL_XMIT_SIZE - 1) {
  1728. info->xmit_buf[info->xmit_head++] = ch;
  1729. info->xmit_head &= SERIAL_XMIT_SIZE-1;
  1730. info->xmit_cnt++;
  1731. }
  1732. }
  1733. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1734. } /* end of mgsl_put_char() */
  1735. /* mgsl_flush_chars()
  1736.  * 
  1737.  *  Enable transmitter so remaining characters in the
  1738.  *  transmit buffer are sent.
  1739.  * 
  1740.  * Arguments: tty pointer to tty information structure
  1741.  * Return Value: None
  1742.  */
  1743. static void mgsl_flush_chars(struct tty_struct *tty)
  1744. {
  1745. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  1746. unsigned long flags;
  1747. if ( debug_level >= DEBUG_LEVEL_INFO )
  1748. printk( "%s(%d):mgsl_flush_chars() entry on %s xmit_cnt=%dn",
  1749. __FILE__,__LINE__,info->device_name,info->xmit_cnt);
  1750. if (mgsl_paranoia_check(info, tty->device, "mgsl_flush_chars"))
  1751. return;
  1752. if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
  1753.     !info->xmit_buf)
  1754. return;
  1755. if ( debug_level >= DEBUG_LEVEL_INFO )
  1756. printk( "%s(%d):mgsl_flush_chars() entry on %s starting transmittern",
  1757. __FILE__,__LINE__,info->device_name );
  1758. spin_lock_irqsave(&info->irq_spinlock,flags);
  1759. if (!info->tx_active) {
  1760. if ( (info->params.mode == MGSL_MODE_HDLC ||
  1761. info->params.mode == MGSL_MODE_RAW) && info->xmit_cnt ) {
  1762. /* operating in synchronous (frame oriented) mode */
  1763. /* copy data from circular xmit_buf to */
  1764. /* transmit DMA buffer. */
  1765. mgsl_load_tx_dma_buffer(info,
  1766.  info->xmit_buf,info->xmit_cnt);
  1767. }
  1768.   usc_start_transmitter(info);
  1769. }
  1770. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1771. } /* end of mgsl_flush_chars() */
  1772. /* mgsl_write()
  1773.  * 
  1774.  *  Send a block of data
  1775.  * 
  1776.  * Arguments:
  1777.  * 
  1778.  *  tty pointer to tty information structure
  1779.  *  from_user flag: 1 = from user process
  1780.  *  buf pointer to buffer containing send data
  1781.  *  count size of send data in bytes
  1782.  * 
  1783.  * Return Value: number of characters written
  1784.  */
  1785. static int mgsl_write(struct tty_struct * tty, int from_user,
  1786.     const unsigned char *buf, int count)
  1787. {
  1788. int c, ret = 0, err;
  1789. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  1790. unsigned long flags;
  1791. if ( debug_level >= DEBUG_LEVEL_INFO )
  1792. printk( "%s(%d):mgsl_write(%s) count=%dn",
  1793. __FILE__,__LINE__,info->device_name,count);
  1794. if (mgsl_paranoia_check(info, tty->device, "mgsl_write"))
  1795. goto cleanup;
  1796. if (!tty || !info->xmit_buf || !tmp_buf)
  1797. goto cleanup;
  1798. if ( info->params.mode == MGSL_MODE_HDLC ||
  1799. info->params.mode == MGSL_MODE_RAW ) {
  1800. /* operating in synchronous (frame oriented) mode */
  1801. /* operating in synchronous (frame oriented) mode */
  1802. if (info->tx_active) {
  1803. if ( info->params.mode == MGSL_MODE_HDLC ) {
  1804. ret = 0;
  1805. goto cleanup;
  1806. }
  1807. /* transmitter is actively sending data -
  1808.  * if we have multiple transmit dma and
  1809.  * holding buffers, attempt to queue this
  1810.  * frame for transmission at a later time.
  1811.  */
  1812. if (info->tx_holding_count >= info->num_tx_holding_buffers ) {
  1813. /* no tx holding buffers available */
  1814. ret = 0;
  1815. goto cleanup;
  1816. }
  1817. /* queue transmit frame request */
  1818. ret = count;
  1819. if (from_user) {
  1820. down(&tmp_buf_sem);
  1821. COPY_FROM_USER(err,tmp_buf, buf, count);
  1822. if (err) {
  1823. if ( debug_level >= DEBUG_LEVEL_INFO )
  1824. printk( "%s(%d):mgsl_write(%s) sync user buf copy failedn",
  1825. __FILE__,__LINE__,info->device_name);
  1826. ret = -EFAULT;
  1827. } else
  1828. save_tx_buffer_request(info,tmp_buf,count);
  1829. up(&tmp_buf_sem);
  1830. }
  1831. else
  1832. save_tx_buffer_request(info,buf,count);
  1833. /* if we have sufficient tx dma buffers,
  1834.  * load the next buffered tx request
  1835.  */
  1836. spin_lock_irqsave(&info->irq_spinlock,flags);
  1837. load_next_tx_holding_buffer(info);
  1838. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1839. goto cleanup;
  1840. }
  1841. /* if operating in HDLC LoopMode and the adapter  */
  1842. /* has yet to be inserted into the loop, we can't */
  1843. /* transmit   */
  1844. if ( (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) &&
  1845. !usc_loopmode_active(info) )
  1846. {
  1847. ret = 0;
  1848. goto cleanup;
  1849. }
  1850. if ( info->xmit_cnt ) {
  1851. /* Send accumulated from send_char() calls */
  1852. /* as frame and wait before accepting more data. */
  1853. ret = 0;
  1854. /* copy data from circular xmit_buf to */
  1855. /* transmit DMA buffer. */
  1856. mgsl_load_tx_dma_buffer(info,
  1857. info->xmit_buf,info->xmit_cnt);
  1858. if ( debug_level >= DEBUG_LEVEL_INFO )
  1859. printk( "%s(%d):mgsl_write(%s) sync xmit_cnt flushingn",
  1860. __FILE__,__LINE__,info->device_name);
  1861. } else {
  1862. if ( debug_level >= DEBUG_LEVEL_INFO )
  1863. printk( "%s(%d):mgsl_write(%s) sync transmit acceptedn",
  1864. __FILE__,__LINE__,info->device_name);
  1865. ret = count;
  1866. info->xmit_cnt = count;
  1867. if (from_user) {
  1868. down(&tmp_buf_sem);
  1869. COPY_FROM_USER(err,tmp_buf, buf, count);
  1870. if (err) {
  1871. if ( debug_level >= DEBUG_LEVEL_INFO )
  1872. printk( "%s(%d):mgsl_write(%s) sync user buf copy failedn",
  1873. __FILE__,__LINE__,info->device_name);
  1874. ret = -EFAULT;
  1875. } else
  1876. mgsl_load_tx_dma_buffer(info,tmp_buf,count);
  1877. up(&tmp_buf_sem);
  1878. }
  1879. else
  1880. mgsl_load_tx_dma_buffer(info,buf,count);
  1881. }
  1882. } else {
  1883. if (from_user) {
  1884. down(&tmp_buf_sem);
  1885. while (1) {
  1886. c = MIN(count,
  1887. MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  1888.     SERIAL_XMIT_SIZE - info->xmit_head));
  1889. if (c <= 0)
  1890. break;
  1891. COPY_FROM_USER(err,tmp_buf, buf, c);
  1892. c -= err;
  1893. if (!c) {
  1894. if (!ret)
  1895. ret = -EFAULT;
  1896. break;
  1897. }
  1898. spin_lock_irqsave(&info->irq_spinlock,flags);
  1899. c = MIN(c, MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  1900.        SERIAL_XMIT_SIZE - info->xmit_head));
  1901. memcpy(info->xmit_buf + info->xmit_head, tmp_buf, c);
  1902. info->xmit_head = ((info->xmit_head + c) &
  1903.    (SERIAL_XMIT_SIZE-1));
  1904. info->xmit_cnt += c;
  1905. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1906. buf += c;
  1907. count -= c;
  1908. ret += c;
  1909. }
  1910. up(&tmp_buf_sem);
  1911. } else {
  1912. while (1) {
  1913. spin_lock_irqsave(&info->irq_spinlock,flags);
  1914. c = MIN(count,
  1915. MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  1916.     SERIAL_XMIT_SIZE - info->xmit_head));
  1917. if (c <= 0) {
  1918. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1919. break;
  1920. }
  1921. memcpy(info->xmit_buf + info->xmit_head, buf, c);
  1922. info->xmit_head = ((info->xmit_head + c) &
  1923.    (SERIAL_XMIT_SIZE-1));
  1924. info->xmit_cnt += c;
  1925. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1926. buf += c;
  1927. count -= c;
  1928. ret += c;
  1929. }
  1930. }
  1931. }
  1932.   if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
  1933. spin_lock_irqsave(&info->irq_spinlock,flags);
  1934. if (!info->tx_active)
  1935.   usc_start_transmitter(info);
  1936. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  1937.   }
  1938. cleanup:
  1939. if ( debug_level >= DEBUG_LEVEL_INFO )
  1940. printk( "%s(%d):mgsl_write(%s) returning=%dn",
  1941. __FILE__,__LINE__,info->device_name,ret);
  1942. return ret;
  1943. } /* end of mgsl_write() */
  1944. /* mgsl_write_room()
  1945.  *
  1946.  * Return the count of free bytes in transmit buffer
  1947.  * 
  1948.  * Arguments: tty pointer to tty info structure
  1949.  * Return Value: None
  1950.  */
  1951. static int mgsl_write_room(struct tty_struct *tty)
  1952. {
  1953. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  1954. int ret;
  1955. if (mgsl_paranoia_check(info, tty->device, "mgsl_write_room"))
  1956. return 0;
  1957. ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
  1958. if (ret < 0)
  1959. ret = 0;
  1960. if (debug_level >= DEBUG_LEVEL_INFO)
  1961. printk("%s(%d):mgsl_write_room(%s)=%dn",
  1962.  __FILE__,__LINE__, info->device_name,ret );
  1963.  
  1964. if ( info->params.mode == MGSL_MODE_HDLC ||
  1965. info->params.mode == MGSL_MODE_RAW ) {
  1966. /* operating in synchronous (frame oriented) mode */
  1967. if ( info->tx_active )
  1968. return 0;
  1969. else
  1970. return HDLC_MAX_FRAME_SIZE;
  1971. }
  1972. return ret;
  1973. } /* end of mgsl_write_room() */
  1974. /* mgsl_chars_in_buffer()
  1975.  *
  1976.  * Return the count of bytes in transmit buffer
  1977.  * 
  1978.  * Arguments: tty pointer to tty info structure
  1979.  * Return Value: None
  1980.  */
  1981. static int mgsl_chars_in_buffer(struct tty_struct *tty)
  1982. {
  1983. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  1984.  
  1985. if (debug_level >= DEBUG_LEVEL_INFO)
  1986. printk("%s(%d):mgsl_chars_in_buffer(%s)n",
  1987.  __FILE__,__LINE__, info->device_name );
  1988.  
  1989. if (mgsl_paranoia_check(info, tty->device, "mgsl_chars_in_buffer"))
  1990. return 0;
  1991. if (debug_level >= DEBUG_LEVEL_INFO)
  1992. printk("%s(%d):mgsl_chars_in_buffer(%s)=%dn",
  1993.  __FILE__,__LINE__, info->device_name,info->xmit_cnt );
  1994.  
  1995. if ( info->params.mode == MGSL_MODE_HDLC ||
  1996. info->params.mode == MGSL_MODE_RAW ) {
  1997. /* operating in synchronous (frame oriented) mode */
  1998. if ( info->tx_active )
  1999. return info->max_frame_size;
  2000. else
  2001. return 0;
  2002. }
  2003.  
  2004. return info->xmit_cnt;
  2005. } /* end of mgsl_chars_in_buffer() */
  2006. /* mgsl_flush_buffer()
  2007.  *
  2008.  * Discard all data in the send buffer
  2009.  * 
  2010.  * Arguments: tty pointer to tty info structure
  2011.  * Return Value: None
  2012.  */
  2013. static void mgsl_flush_buffer(struct tty_struct *tty)
  2014. {
  2015. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  2016. unsigned long flags;
  2017. if (debug_level >= DEBUG_LEVEL_INFO)
  2018. printk("%s(%d):mgsl_flush_buffer(%s) entryn",
  2019.  __FILE__,__LINE__, info->device_name );
  2020. if (mgsl_paranoia_check(info, tty->device, "mgsl_flush_buffer"))
  2021. return;
  2022. spin_lock_irqsave(&info->irq_spinlock,flags); 
  2023. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  2024. del_timer(&info->tx_timer);
  2025. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2026. wake_up_interruptible(&tty->write_wait);
  2027. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  2028.     tty->ldisc.write_wakeup)
  2029. (tty->ldisc.write_wakeup)(tty);
  2030. } /* end of mgsl_flush_buffer() */
  2031. /* mgsl_send_xchar()
  2032.  *
  2033.  * Send a high-priority XON/XOFF character
  2034.  * 
  2035.  * Arguments: tty pointer to tty info structure
  2036.  * ch character to send
  2037.  * Return Value: None
  2038.  */
  2039. static void mgsl_send_xchar(struct tty_struct *tty, char ch)
  2040. {
  2041. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  2042. unsigned long flags;
  2043. if (debug_level >= DEBUG_LEVEL_INFO)
  2044. printk("%s(%d):mgsl_send_xchar(%s,%d)n",
  2045.  __FILE__,__LINE__, info->device_name, ch );
  2046.  
  2047. if (mgsl_paranoia_check(info, tty->device, "mgsl_send_xchar"))
  2048. return;
  2049. info->x_char = ch;
  2050. if (ch) {
  2051. /* Make sure transmit interrupts are on */
  2052. spin_lock_irqsave(&info->irq_spinlock,flags);
  2053. if (!info->tx_enabled)
  2054.   usc_start_transmitter(info);
  2055. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2056. }
  2057. } /* end of mgsl_send_xchar() */
  2058. /* mgsl_throttle()
  2059.  * 
  2060.  *  Signal remote device to throttle send data (our receive data)
  2061.  * 
  2062.  * Arguments: tty pointer to tty info structure
  2063.  * Return Value: None
  2064.  */
  2065. static void mgsl_throttle(struct tty_struct * tty)
  2066. {
  2067. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  2068. unsigned long flags;
  2069. if (debug_level >= DEBUG_LEVEL_INFO)
  2070. printk("%s(%d):mgsl_throttle(%s) entryn",
  2071.  __FILE__,__LINE__, info->device_name );
  2072. if (mgsl_paranoia_check(info, tty->device, "mgsl_throttle"))
  2073. return;
  2074. if (I_IXOFF(tty))
  2075. mgsl_send_xchar(tty, STOP_CHAR(tty));
  2076.  
  2077.   if (tty->termios->c_cflag & CRTSCTS) {
  2078. spin_lock_irqsave(&info->irq_spinlock,flags);
  2079. info->serial_signals &= ~SerialSignal_RTS;
  2080.   usc_set_serial_signals(info);
  2081. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2082. }
  2083. } /* end of mgsl_throttle() */
  2084. /* mgsl_unthrottle()
  2085.  * 
  2086.  *  Signal remote device to stop throttling send data (our receive data)
  2087.  * 
  2088.  * Arguments: tty pointer to tty info structure
  2089.  * Return Value: None
  2090.  */
  2091. static void mgsl_unthrottle(struct tty_struct * tty)
  2092. {
  2093. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  2094. unsigned long flags;
  2095. if (debug_level >= DEBUG_LEVEL_INFO)
  2096. printk("%s(%d):mgsl_unthrottle(%s) entryn",
  2097.  __FILE__,__LINE__, info->device_name );
  2098. if (mgsl_paranoia_check(info, tty->device, "mgsl_unthrottle"))
  2099. return;
  2100. if (I_IXOFF(tty)) {
  2101. if (info->x_char)
  2102. info->x_char = 0;
  2103. else
  2104. mgsl_send_xchar(tty, START_CHAR(tty));
  2105. }
  2106.   if (tty->termios->c_cflag & CRTSCTS) {
  2107. spin_lock_irqsave(&info->irq_spinlock,flags);
  2108. info->serial_signals |= SerialSignal_RTS;
  2109.   usc_set_serial_signals(info);
  2110. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2111. }
  2112. } /* end of mgsl_unthrottle() */
  2113. /* mgsl_get_stats()
  2114.  * 
  2115.  *  get the current serial parameters information
  2116.  *
  2117.  * Arguments: info pointer to device instance data
  2118.  *  user_icount pointer to buffer to hold returned stats
  2119.  * 
  2120.  * Return Value: 0 if success, otherwise error code
  2121.  */
  2122. static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount *user_icount)
  2123. {
  2124. int err;
  2125. if (debug_level >= DEBUG_LEVEL_INFO)
  2126. printk("%s(%d):mgsl_get_params(%s)n",
  2127.  __FILE__,__LINE__, info->device_name);
  2128. COPY_TO_USER(err,user_icount, &info->icount, sizeof(struct mgsl_icount));
  2129. if (err) {
  2130. if ( debug_level >= DEBUG_LEVEL_INFO )
  2131. printk( "%s(%d):mgsl_get_stats(%s) user buffer copy failedn",
  2132. __FILE__,__LINE__,info->device_name);
  2133. return -EFAULT;
  2134. }
  2135. return 0;
  2136. } /* end of mgsl_get_stats() */
  2137. /* mgsl_get_params()
  2138.  * 
  2139.  *  get the current serial parameters information
  2140.  *
  2141.  * Arguments: info pointer to device instance data
  2142.  *  user_params pointer to buffer to hold returned params
  2143.  * 
  2144.  * Return Value: 0 if success, otherwise error code
  2145.  */
  2146. static int mgsl_get_params(struct mgsl_struct * info, MGSL_PARAMS *user_params)
  2147. {
  2148. int err;
  2149. if (debug_level >= DEBUG_LEVEL_INFO)
  2150. printk("%s(%d):mgsl_get_params(%s)n",
  2151.  __FILE__,__LINE__, info->device_name);
  2152. COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
  2153. if (err) {
  2154. if ( debug_level >= DEBUG_LEVEL_INFO )
  2155. printk( "%s(%d):mgsl_get_params(%s) user buffer copy failedn",
  2156. __FILE__,__LINE__,info->device_name);
  2157. return -EFAULT;
  2158. }
  2159. return 0;
  2160. } /* end of mgsl_get_params() */
  2161. /* mgsl_set_params()
  2162.  * 
  2163.  *  set the serial parameters
  2164.  * 
  2165.  * Arguments:
  2166.  * 
  2167.  *  info pointer to device instance data
  2168.  *  new_params user buffer containing new serial params
  2169.  *
  2170.  * Return Value: 0 if success, otherwise error code
  2171.  */
  2172. static int mgsl_set_params(struct mgsl_struct * info, MGSL_PARAMS *new_params)
  2173. {
  2174.   unsigned long flags;
  2175. MGSL_PARAMS tmp_params;
  2176. int err;
  2177.  
  2178. if (debug_level >= DEBUG_LEVEL_INFO)
  2179. printk("%s(%d):mgsl_set_params %sn", __FILE__,__LINE__,
  2180. info->device_name );
  2181. COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
  2182. if (err) {
  2183. if ( debug_level >= DEBUG_LEVEL_INFO )
  2184. printk( "%s(%d):mgsl_set_params(%s) user buffer copy failedn",
  2185. __FILE__,__LINE__,info->device_name);
  2186. return -EFAULT;
  2187. }
  2188. spin_lock_irqsave(&info->irq_spinlock,flags);
  2189. memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
  2190. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2191.   mgsl_change_params(info);
  2192. return 0;
  2193. } /* end of mgsl_set_params() */
  2194. /* mgsl_get_txidle()
  2195.  * 
  2196.  *  get the current transmit idle mode
  2197.  *
  2198.  * Arguments: info pointer to device instance data
  2199.  *  idle_mode pointer to buffer to hold returned idle mode
  2200.  * 
  2201.  * Return Value: 0 if success, otherwise error code
  2202.  */
  2203. static int mgsl_get_txidle(struct mgsl_struct * info, int*idle_mode)
  2204. {
  2205. int err;
  2206. if (debug_level >= DEBUG_LEVEL_INFO)
  2207. printk("%s(%d):mgsl_get_txidle(%s)=%dn",
  2208.  __FILE__,__LINE__, info->device_name, info->idle_mode);
  2209. COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
  2210. if (err) {
  2211. if ( debug_level >= DEBUG_LEVEL_INFO )
  2212. printk( "%s(%d):mgsl_get_txidle(%s) user buffer copy failedn",
  2213. __FILE__,__LINE__,info->device_name);
  2214. return -EFAULT;
  2215. }
  2216. return 0;
  2217. } /* end of mgsl_get_txidle() */
  2218. /* mgsl_set_txidle() service ioctl to set transmit idle mode
  2219.  * 
  2220.  * Arguments:   info pointer to device instance data
  2221.  *  idle_mode new idle mode
  2222.  *
  2223.  * Return Value: 0 if success, otherwise error code
  2224.  */
  2225. static int mgsl_set_txidle(struct mgsl_struct * info, int idle_mode)
  2226. {
  2227.   unsigned long flags;
  2228.  
  2229. if (debug_level >= DEBUG_LEVEL_INFO)
  2230. printk("%s(%d):mgsl_set_txidle(%s,%d)n", __FILE__,__LINE__,
  2231. info->device_name, idle_mode );
  2232. spin_lock_irqsave(&info->irq_spinlock,flags);
  2233. info->idle_mode = idle_mode;
  2234. usc_set_txidle( info );
  2235. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2236. return 0;
  2237. } /* end of mgsl_set_txidle() */
  2238. /* mgsl_txenable()
  2239.  * 
  2240.  *  enable or disable the transmitter
  2241.  * 
  2242.  * Arguments:
  2243.  * 
  2244.  *  info pointer to device instance data
  2245.  *  enable 1 = enable, 0 = disable
  2246.  *
  2247.  * Return Value: 0 if success, otherwise error code
  2248.  */
  2249. static int mgsl_txenable(struct mgsl_struct * info, int enable)
  2250. {
  2251.   unsigned long flags;
  2252.  
  2253. if (debug_level >= DEBUG_LEVEL_INFO)
  2254. printk("%s(%d):mgsl_txenable(%s,%d)n", __FILE__,__LINE__,
  2255. info->device_name, enable);
  2256. spin_lock_irqsave(&info->irq_spinlock,flags);
  2257. if ( enable ) {
  2258. if ( !info->tx_enabled ) {
  2259. usc_start_transmitter(info);
  2260. /*--------------------------------------------------
  2261.  * if HDLC/SDLC Loop mode, attempt to insert the
  2262.  * station in the 'loop' by setting CMR:13. Upon
  2263.  * receipt of the next GoAhead (RxAbort) sequence,
  2264.  * the OnLoop indicator (CCSR:7) should go active
  2265.  * to indicate that we are on the loop
  2266.  *--------------------------------------------------*/
  2267. if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
  2268. usc_loopmode_insert_request( info );
  2269. }
  2270. } else {
  2271. if ( info->tx_enabled )
  2272. usc_stop_transmitter(info);
  2273. }
  2274. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2275. return 0;
  2276. } /* end of mgsl_txenable() */
  2277. /* mgsl_txabort() abort send HDLC frame
  2278.  * 
  2279.  * Arguments:   info pointer to device instance data
  2280.  * Return Value: 0 if success, otherwise error code
  2281.  */
  2282. static int mgsl_txabort(struct mgsl_struct * info)
  2283. {
  2284.   unsigned long flags;
  2285.  
  2286. if (debug_level >= DEBUG_LEVEL_INFO)
  2287. printk("%s(%d):mgsl_txabort(%s)n", __FILE__,__LINE__,
  2288. info->device_name);
  2289. spin_lock_irqsave(&info->irq_spinlock,flags);
  2290. if ( info->tx_active && info->params.mode == MGSL_MODE_HDLC )
  2291. {
  2292. if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
  2293. usc_loopmode_cancel_transmit( info );
  2294. else
  2295. usc_TCmd(info,TCmd_SendAbort);
  2296. }
  2297. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2298. return 0;
  2299. } /* end of mgsl_txabort() */
  2300. /* mgsl_rxenable()  enable or disable the receiver
  2301.  * 
  2302.  * Arguments:   info pointer to device instance data
  2303.  *  enable 1 = enable, 0 = disable
  2304.  * Return Value: 0 if success, otherwise error code
  2305.  */
  2306. static int mgsl_rxenable(struct mgsl_struct * info, int enable)
  2307. {
  2308.   unsigned long flags;
  2309.  
  2310. if (debug_level >= DEBUG_LEVEL_INFO)
  2311. printk("%s(%d):mgsl_rxenable(%s,%d)n", __FILE__,__LINE__,
  2312. info->device_name, enable);
  2313. spin_lock_irqsave(&info->irq_spinlock,flags);
  2314. if ( enable ) {
  2315. if ( !info->rx_enabled )
  2316. usc_start_receiver(info);
  2317. } else {
  2318. if ( info->rx_enabled )
  2319. usc_stop_receiver(info);
  2320. }
  2321. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2322. return 0;
  2323. } /* end of mgsl_rxenable() */
  2324. /* mgsl_wait_event()  wait for specified event to occur
  2325.  * 
  2326.  * Arguments:   info pointer to device instance data
  2327.  *  mask pointer to bitmask of events to wait for
  2328.  * Return Value: 0  if successful and bit mask updated with
  2329.  * of events triggerred,
  2330.  *  otherwise error code
  2331.  */
  2332. static int mgsl_wait_event(struct mgsl_struct * info, int * mask_ptr)
  2333. {
  2334.   unsigned long flags;
  2335. int s;
  2336. int rc=0;
  2337. struct mgsl_icount cprev, cnow;
  2338. int events;
  2339. int mask;
  2340. struct _input_signal_events oldsigs, newsigs;
  2341. DECLARE_WAITQUEUE(wait, current);
  2342. COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
  2343. if (rc) {
  2344. return  -EFAULT;
  2345. }
  2346.  
  2347. if (debug_level >= DEBUG_LEVEL_INFO)
  2348. printk("%s(%d):mgsl_wait_event(%s,%d)n", __FILE__,__LINE__,
  2349. info->device_name, mask);
  2350. spin_lock_irqsave(&info->irq_spinlock,flags);
  2351. /* return immediately if state matches requested events */
  2352. usc_get_serial_signals(info);
  2353. s = info->serial_signals;
  2354. events = mask &
  2355. ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
  2356.     ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
  2357.   ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
  2358.   ((s & SerialSignal_RI)  ? MgslEvent_RiActive :MgslEvent_RiInactive) );
  2359. if (events) {
  2360. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2361. goto exit;
  2362. }
  2363. /* save current irq counts */
  2364. cprev = info->icount;
  2365. oldsigs = info->input_signal_events;
  2366. /* enable hunt and idle irqs if needed */
  2367. if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
  2368. u16 oldreg = usc_InReg(info,RICR);
  2369. u16 newreg = oldreg +
  2370.  (mask & MgslEvent_ExitHuntMode ? RXSTATUS_EXITED_HUNT:0) +
  2371.  (mask & MgslEvent_IdleReceived ? RXSTATUS_IDLE_RECEIVED:0);
  2372. if (oldreg != newreg)
  2373. usc_OutReg(info, RICR, newreg);
  2374. }
  2375. set_current_state(TASK_INTERRUPTIBLE);
  2376. add_wait_queue(&info->event_wait_q, &wait);
  2377. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2378. for(;;) {
  2379. schedule();
  2380. if (signal_pending(current)) {
  2381. rc = -ERESTARTSYS;
  2382. break;
  2383. }
  2384. /* get current irq counts */
  2385. spin_lock_irqsave(&info->irq_spinlock,flags);
  2386. cnow = info->icount;
  2387. newsigs = info->input_signal_events;
  2388. set_current_state(TASK_INTERRUPTIBLE);
  2389. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2390. /* if no change, wait aborted for some reason */
  2391. if (newsigs.dsr_up   == oldsigs.dsr_up   &&
  2392.     newsigs.dsr_down == oldsigs.dsr_down &&
  2393.     newsigs.dcd_up   == oldsigs.dcd_up   &&
  2394.     newsigs.dcd_down == oldsigs.dcd_down &&
  2395.     newsigs.cts_up   == oldsigs.cts_up   &&
  2396.     newsigs.cts_down == oldsigs.cts_down &&
  2397.     newsigs.ri_up    == oldsigs.ri_up    &&
  2398.     newsigs.ri_down  == oldsigs.ri_down  &&
  2399.     cnow.exithunt    == cprev.exithunt   &&
  2400.     cnow.rxidle      == cprev.rxidle) {
  2401. rc = -EIO;
  2402. break;
  2403. }
  2404. events = mask &
  2405. ( (newsigs.dsr_up   != oldsigs.dsr_up   ? MgslEvent_DsrActive:0)   +
  2406. (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
  2407. (newsigs.dcd_up   != oldsigs.dcd_up   ? MgslEvent_DcdActive:0)   +
  2408. (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
  2409. (newsigs.cts_up   != oldsigs.cts_up   ? MgslEvent_CtsActive:0)   +
  2410. (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
  2411. (newsigs.ri_up    != oldsigs.ri_up    ? MgslEvent_RiActive:0)    +
  2412. (newsigs.ri_down  != oldsigs.ri_down  ? MgslEvent_RiInactive:0)  +
  2413. (cnow.exithunt    != cprev.exithunt   ? MgslEvent_ExitHuntMode:0) +
  2414.   (cnow.rxidle      != cprev.rxidle     ? MgslEvent_IdleReceived:0) );
  2415. if (events)
  2416. break;
  2417. cprev = cnow;
  2418. oldsigs = newsigs;
  2419. }
  2420. remove_wait_queue(&info->event_wait_q, &wait);
  2421. set_current_state(TASK_RUNNING);
  2422. if (mask & (MgslEvent_ExitHuntMode + MgslEvent_IdleReceived)) {
  2423. spin_lock_irqsave(&info->irq_spinlock,flags);
  2424. if (!waitqueue_active(&info->event_wait_q)) {
  2425. /* disable enable exit hunt mode/idle rcvd IRQs */
  2426. usc_OutReg(info, RICR, usc_InReg(info,RICR) &
  2427. ~(RXSTATUS_EXITED_HUNT + RXSTATUS_IDLE_RECEIVED));
  2428. }
  2429. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2430. }
  2431. exit:
  2432. if ( rc == 0 )
  2433. PUT_USER(rc, events, mask_ptr);
  2434. return rc;
  2435. } /* end of mgsl_wait_event() */
  2436. static int modem_input_wait(struct mgsl_struct *info,int arg)
  2437. {
  2438.   unsigned long flags;
  2439. int rc;
  2440. struct mgsl_icount cprev, cnow;
  2441. DECLARE_WAITQUEUE(wait, current);
  2442. /* save current irq counts */
  2443. spin_lock_irqsave(&info->irq_spinlock,flags);
  2444. cprev = info->icount;
  2445. add_wait_queue(&info->status_event_wait_q, &wait);
  2446. set_current_state(TASK_INTERRUPTIBLE);
  2447. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2448. for(;;) {
  2449. schedule();
  2450. if (signal_pending(current)) {
  2451. rc = -ERESTARTSYS;
  2452. break;
  2453. }
  2454. /* get new irq counts */
  2455. spin_lock_irqsave(&info->irq_spinlock,flags);
  2456. cnow = info->icount;
  2457. set_current_state(TASK_INTERRUPTIBLE);
  2458. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2459. /* if no change, wait aborted for some reason */
  2460. if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
  2461.     cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
  2462. rc = -EIO;
  2463. break;
  2464. }
  2465. /* check for change in caller specified modem input */
  2466. if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
  2467.     (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
  2468.     (arg & TIOCM_CD  && cnow.dcd != cprev.dcd) ||
  2469.     (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
  2470. rc = 0;
  2471. break;
  2472. }
  2473. cprev = cnow;
  2474. }
  2475. remove_wait_queue(&info->status_event_wait_q, &wait);
  2476. set_current_state(TASK_RUNNING);
  2477. return rc;
  2478. }
  2479. /* get_modem_info()
  2480.  * 
  2481.  *  Read the state of the serial control and
  2482.  *  status signals and return to caller.
  2483.  * 
  2484.  * Arguments:   info pointer to device instance data
  2485.  *  value pointer to int to hold returned info
  2486.  * 
  2487.  * Return Value: 0 if success, otherwise error code
  2488.  */
  2489. static int get_modem_info(struct mgsl_struct * info, unsigned int *value)
  2490. {
  2491. unsigned int result = 0;
  2492.   unsigned long flags;
  2493. int err;
  2494.  
  2495. spin_lock_irqsave(&info->irq_spinlock,flags);
  2496.   usc_get_serial_signals(info);
  2497. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2498. if (info->serial_signals & SerialSignal_RTS)
  2499. result |= TIOCM_RTS;
  2500. if (info->serial_signals & SerialSignal_DTR)
  2501. result |= TIOCM_DTR;
  2502. if (info->serial_signals & SerialSignal_DCD)
  2503. result |= TIOCM_CAR;
  2504. if (info->serial_signals & SerialSignal_RI)
  2505. result |= TIOCM_RNG;
  2506. if (info->serial_signals & SerialSignal_DSR)
  2507. result |= TIOCM_DSR;
  2508. if (info->serial_signals & SerialSignal_CTS)
  2509. result |= TIOCM_CTS;
  2510. if (debug_level >= DEBUG_LEVEL_INFO)
  2511. printk("%s(%d):mgsl_get_modem_info %s value=%08Xn",
  2512.  __FILE__,__LINE__, info->device_name, result );
  2513. PUT_USER(err,result,value);
  2514. return err;
  2515. } /* end of get_modem_info() */
  2516. /* set_modem_info()
  2517.  * 
  2518.  *  Set the state of the modem control signals (DTR/RTS)
  2519.  * 
  2520.  * Arguments:
  2521.  * 
  2522.  *  info pointer to device instance data
  2523.  *  cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
  2524.  * TIOCMSET = set/clear signal values
  2525.  *  value bit mask for command
  2526.  * 
  2527.  * Return Value: 0 if success, otherwise error code
  2528.  */
  2529. static int set_modem_info(struct mgsl_struct * info, unsigned int cmd,
  2530.   unsigned int *value)
  2531. {
  2532.   int error;
  2533.   unsigned int arg;
  2534.   unsigned long flags;
  2535.  
  2536. if (debug_level >= DEBUG_LEVEL_INFO)
  2537. printk("%s(%d):mgsl_set_modem_info %sn", __FILE__,__LINE__,
  2538. info->device_name );
  2539.   GET_USER(error,arg,value);
  2540.   if (error)
  2541.   return error;
  2542.   switch (cmd) {
  2543.   case TIOCMBIS: 
  2544.   if (arg & TIOCM_RTS)
  2545.   info->serial_signals |= SerialSignal_RTS;
  2546.   if (arg & TIOCM_DTR)
  2547.   info->serial_signals |= SerialSignal_DTR;
  2548.   break;
  2549.   case TIOCMBIC:
  2550.   if (arg & TIOCM_RTS)
  2551.   info->serial_signals &= ~SerialSignal_RTS;
  2552.   if (arg & TIOCM_DTR)
  2553.   info->serial_signals &= ~SerialSignal_DTR;
  2554.   break;
  2555.   case TIOCMSET:
  2556.   if (arg & TIOCM_RTS)
  2557.   info->serial_signals |= SerialSignal_RTS;
  2558. else
  2559.   info->serial_signals &= ~SerialSignal_RTS;
  2560.   if (arg & TIOCM_DTR)
  2561.   info->serial_signals |= SerialSignal_DTR;
  2562. else
  2563.   info->serial_signals &= ~SerialSignal_DTR;
  2564.   break;
  2565.   default:
  2566.   return -EINVAL;
  2567.   }
  2568. spin_lock_irqsave(&info->irq_spinlock,flags);
  2569.   usc_set_serial_signals(info);
  2570. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2571. return 0;
  2572. } /* end of set_modem_info() */
  2573. /* mgsl_break() Set or clear transmit break condition
  2574.  *
  2575.  * Arguments: tty pointer to tty instance data
  2576.  * break_state -1=set break condition, 0=clear
  2577.  * Return Value: None
  2578.  */
  2579. static void mgsl_break(struct tty_struct *tty, int break_state)
  2580. {
  2581. struct mgsl_struct * info = (struct mgsl_struct *)tty->driver_data;
  2582. unsigned long flags;
  2583. if (debug_level >= DEBUG_LEVEL_INFO)
  2584. printk("%s(%d):mgsl_break(%s,%d)n",
  2585.  __FILE__,__LINE__, info->device_name, break_state);
  2586.  
  2587. if (mgsl_paranoia_check(info, tty->device, "mgsl_break"))
  2588. return;
  2589. spin_lock_irqsave(&info->irq_spinlock,flags);
  2590.   if (break_state == -1)
  2591. usc_OutReg(info,IOCR,(u16)(usc_InReg(info,IOCR) | BIT7));
  2592. else 
  2593. usc_OutReg(info,IOCR,(u16)(usc_InReg(info,IOCR) & ~BIT7));
  2594. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2595. } /* end of mgsl_break() */
  2596. /* mgsl_ioctl() Service an IOCTL request
  2597.  * 
  2598.  * Arguments:
  2599.  * 
  2600.  *  tty pointer to tty instance data
  2601.  *  file pointer to associated file object for device
  2602.  *  cmd IOCTL command code
  2603.  *  arg command argument/context
  2604.  * 
  2605.  * Return Value: 0 if success, otherwise error code
  2606.  */
  2607. static int mgsl_ioctl(struct tty_struct *tty, struct file * file,
  2608.     unsigned int cmd, unsigned long arg)
  2609. {
  2610. struct mgsl_struct * info = (struct mgsl_struct *)tty->driver_data;
  2611. if (debug_level >= DEBUG_LEVEL_INFO)
  2612. printk("%s(%d):mgsl_ioctl %s cmd=%08Xn", __FILE__,__LINE__,
  2613. info->device_name, cmd );
  2614. if (mgsl_paranoia_check(info, tty->device, "mgsl_ioctl"))
  2615. return -ENODEV;
  2616. if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
  2617.     (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
  2618. if (tty->flags & (1 << TTY_IO_ERROR))
  2619.     return -EIO;
  2620. }
  2621. return mgsl_ioctl_common(info, cmd, arg);
  2622. }
  2623. int mgsl_ioctl_common(struct mgsl_struct *info, unsigned int cmd, unsigned long arg)
  2624. {
  2625. int error;
  2626. struct mgsl_icount cnow; /* kernel counter temps */
  2627. struct serial_icounter_struct *p_cuser; /* user space */
  2628. unsigned long flags;
  2629. switch (cmd) {
  2630. case TIOCMGET:
  2631. return get_modem_info(info, (unsigned int *) arg);
  2632. case TIOCMBIS:
  2633. case TIOCMBIC:
  2634. case TIOCMSET:
  2635. return set_modem_info(info, cmd, (unsigned int *) arg);
  2636. case MGSL_IOCGPARAMS:
  2637. return mgsl_get_params(info,(MGSL_PARAMS *)arg);
  2638. case MGSL_IOCSPARAMS:
  2639. return mgsl_set_params(info,(MGSL_PARAMS *)arg);
  2640. case MGSL_IOCGTXIDLE:
  2641. return mgsl_get_txidle(info,(int*)arg);
  2642. case MGSL_IOCSTXIDLE:
  2643. return mgsl_set_txidle(info,(int)arg);
  2644. case MGSL_IOCTXENABLE:
  2645. return mgsl_txenable(info,(int)arg);
  2646. case MGSL_IOCRXENABLE:
  2647. return mgsl_rxenable(info,(int)arg);
  2648. case MGSL_IOCTXABORT:
  2649. return mgsl_txabort(info);
  2650. case MGSL_IOCGSTATS:
  2651. return mgsl_get_stats(info,(struct mgsl_icount*)arg);
  2652. case MGSL_IOCWAITEVENT:
  2653. return mgsl_wait_event(info,(int*)arg);
  2654. case MGSL_IOCLOOPTXDONE:
  2655. return mgsl_loopmode_send_done(info);
  2656. case MGSL_IOCCLRMODCOUNT:
  2657. while(MOD_IN_USE)
  2658. MOD_DEC_USE_COUNT;
  2659. return 0;
  2660. /* Wait for modem input (DCD,RI,DSR,CTS) change
  2661.  * as specified by mask in arg (TIOCM_RNG/DSR/CD/CTS)
  2662.  */
  2663. case TIOCMIWAIT:
  2664. return modem_input_wait(info,(int)arg);
  2665. /* 
  2666.  * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
  2667.  * Return: write counters to the user passed counter struct
  2668.  * NB: both 1->0 and 0->1 transitions are counted except for
  2669.  *     RI where only 0->1 is counted.
  2670.  */
  2671. case TIOCGICOUNT:
  2672. spin_lock_irqsave(&info->irq_spinlock,flags);
  2673. cnow = info->icount;
  2674. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2675. p_cuser = (struct serial_icounter_struct *) arg;
  2676. PUT_USER(error,cnow.cts, &p_cuser->cts);
  2677. if (error) return error;
  2678. PUT_USER(error,cnow.dsr, &p_cuser->dsr);
  2679. if (error) return error;
  2680. PUT_USER(error,cnow.rng, &p_cuser->rng);
  2681. if (error) return error;
  2682. PUT_USER(error,cnow.dcd, &p_cuser->dcd);
  2683. if (error) return error;
  2684. PUT_USER(error,cnow.rx, &p_cuser->rx);
  2685. if (error) return error;
  2686. PUT_USER(error,cnow.tx, &p_cuser->tx);
  2687. if (error) return error;
  2688. PUT_USER(error,cnow.frame, &p_cuser->frame);
  2689. if (error) return error;
  2690. PUT_USER(error,cnow.overrun, &p_cuser->overrun);
  2691. if (error) return error;
  2692. PUT_USER(error,cnow.parity, &p_cuser->parity);
  2693. if (error) return error;
  2694. PUT_USER(error,cnow.brk, &p_cuser->brk);
  2695. if (error) return error;
  2696. PUT_USER(error,cnow.buf_overrun, &p_cuser->buf_overrun);
  2697. if (error) return error;
  2698. return 0;
  2699. default:
  2700. return -ENOIOCTLCMD;
  2701. }
  2702. return 0;
  2703. }
  2704. /* mgsl_set_termios()
  2705.  * 
  2706.  *  Set new termios settings
  2707.  * 
  2708.  * Arguments:
  2709.  * 
  2710.  *  tty pointer to tty structure
  2711.  *  termios pointer to buffer to hold returned old termios
  2712.  * 
  2713.  * Return Value: None
  2714.  */
  2715. static void mgsl_set_termios(struct tty_struct *tty, struct termios *old_termios)
  2716. {
  2717. struct mgsl_struct *info = (struct mgsl_struct *)tty->driver_data;
  2718. unsigned long flags;
  2719. if (debug_level >= DEBUG_LEVEL_INFO)
  2720. printk("%s(%d):mgsl_set_termios %sn", __FILE__,__LINE__,
  2721. tty->driver.name );
  2722. /* just return if nothing has changed */
  2723. if ((tty->termios->c_cflag == old_termios->c_cflag)
  2724.     && (RELEVANT_IFLAG(tty->termios->c_iflag) 
  2725. == RELEVANT_IFLAG(old_termios->c_iflag)))
  2726.   return;
  2727. mgsl_change_params(info);
  2728. /* Handle transition to B0 status */
  2729. if (old_termios->c_cflag & CBAUD &&
  2730.     !(tty->termios->c_cflag & CBAUD)) {
  2731. info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
  2732. spin_lock_irqsave(&info->irq_spinlock,flags);
  2733.   usc_set_serial_signals(info);
  2734. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2735. }
  2736. /* Handle transition away from B0 status */
  2737. if (!(old_termios->c_cflag & CBAUD) &&
  2738.     tty->termios->c_cflag & CBAUD) {
  2739. info->serial_signals |= SerialSignal_DTR;
  2740.   if (!(tty->termios->c_cflag & CRTSCTS) || 
  2741.       !test_bit(TTY_THROTTLED, &tty->flags)) {
  2742. info->serial_signals |= SerialSignal_RTS;
  2743.   }
  2744. spin_lock_irqsave(&info->irq_spinlock,flags);
  2745.   usc_set_serial_signals(info);
  2746. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2747. }
  2748. /* Handle turning off CRTSCTS */
  2749. if (old_termios->c_cflag & CRTSCTS &&
  2750.     !(tty->termios->c_cflag & CRTSCTS)) {
  2751. tty->hw_stopped = 0;
  2752. mgsl_start(tty);
  2753. }
  2754. } /* end of mgsl_set_termios() */
  2755. /* mgsl_close()
  2756.  * 
  2757.  *  Called when port is closed. Wait for remaining data to be
  2758.  *  sent. Disable port and free resources.
  2759.  * 
  2760.  * Arguments:
  2761.  * 
  2762.  *  tty pointer to open tty structure
  2763.  *  filp pointer to open file object
  2764.  * 
  2765.  * Return Value: None
  2766.  */
  2767. static void mgsl_close(struct tty_struct *tty, struct file * filp)
  2768. {
  2769. struct mgsl_struct * info = (struct mgsl_struct *)tty->driver_data;
  2770. if (!info || mgsl_paranoia_check(info, tty->device, "mgsl_close"))
  2771. return;
  2772. if (debug_level >= DEBUG_LEVEL_INFO)
  2773. printk("%s(%d):mgsl_close(%s) entry, count=%dn",
  2774.  __FILE__,__LINE__, info->device_name, info->count);
  2775.  
  2776. if (!info->count || tty_hung_up_p(filp))
  2777. goto cleanup;
  2778. if ((tty->count == 1) && (info->count != 1)) {
  2779. /*
  2780.  * tty->count is 1 and the tty structure will be freed.
  2781.  * info->count should be one in this case.
  2782.  * if it's not, correct it so that the port is shutdown.
  2783.  */
  2784. printk("mgsl_close: bad refcount; tty->count is 1, "
  2785.        "info->count is %dn", info->count);
  2786. info->count = 1;
  2787. }
  2788. info->count--;
  2789. /* if at least one open remaining, leave hardware active */
  2790. if (info->count)
  2791. goto cleanup;
  2792. info->flags |= ASYNC_CLOSING;
  2793. /* Save the termios structure, since this port may have
  2794.  * separate termios for callout and dialin.
  2795.  */
  2796. if (info->flags & ASYNC_NORMAL_ACTIVE)
  2797. info->normal_termios = *tty->termios;
  2798. if (info->flags & ASYNC_CALLOUT_ACTIVE)
  2799. info->callout_termios = *tty->termios;
  2800. /* set tty->closing to notify line discipline to 
  2801.  * only process XON/XOFF characters. Only the N_TTY
  2802.  * discipline appears to use this (ppp does not).
  2803.  */
  2804. tty->closing = 1;
  2805. /* wait for transmit data to clear all layers */
  2806. if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE) {
  2807. if (debug_level >= DEBUG_LEVEL_INFO)
  2808. printk("%s(%d):mgsl_close(%s) calling tty_wait_until_sentn",
  2809.  __FILE__,__LINE__, info->device_name );
  2810. tty_wait_until_sent(tty, info->closing_wait);
  2811. }
  2812.   if (info->flags & ASYNC_INITIALIZED)
  2813.   mgsl_wait_until_sent(tty, info->timeout);
  2814. if (tty->driver.flush_buffer)
  2815. tty->driver.flush_buffer(tty);
  2816. if (tty->ldisc.flush_buffer)
  2817. tty->ldisc.flush_buffer(tty);
  2818. shutdown(info);
  2819. tty->closing = 0;
  2820. info->tty = 0;
  2821. if (info->blocked_open) {
  2822. if (info->close_delay) {
  2823. set_current_state(TASK_INTERRUPTIBLE);
  2824. schedule_timeout(info->close_delay);
  2825. }
  2826. wake_up_interruptible(&info->open_wait);
  2827. }
  2828. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE|
  2829.  ASYNC_CLOSING);
  2830.  
  2831. wake_up_interruptible(&info->close_wait);
  2832. cleanup:
  2833. if (debug_level >= DEBUG_LEVEL_INFO)
  2834. printk("%s(%d):mgsl_close(%s) exit, count=%dn", __FILE__,__LINE__,
  2835. tty->driver.name, info->count);
  2836. if(MOD_IN_USE)
  2837. MOD_DEC_USE_COUNT;
  2838. } /* end of mgsl_close() */
  2839. /* mgsl_wait_until_sent()
  2840.  *
  2841.  * Wait until the transmitter is empty.
  2842.  *
  2843.  * Arguments:
  2844.  *
  2845.  * tty pointer to tty info structure
  2846.  * timeout time to wait for send completion
  2847.  *
  2848.  * Return Value: None
  2849.  */
  2850. static void mgsl_wait_until_sent(struct tty_struct *tty, int timeout)
  2851. {
  2852. struct mgsl_struct * info = (struct mgsl_struct *)tty->driver_data;
  2853. unsigned long orig_jiffies, char_time;
  2854. if (!info )
  2855. return;
  2856. if (debug_level >= DEBUG_LEVEL_INFO)
  2857. printk("%s(%d):mgsl_wait_until_sent(%s) entryn",
  2858.  __FILE__,__LINE__, info->device_name );
  2859.       
  2860. if (mgsl_paranoia_check(info, tty->device, "mgsl_wait_until_sent"))
  2861. return;
  2862. if (!(info->flags & ASYNC_INITIALIZED))
  2863. goto exit;
  2864.  
  2865. orig_jiffies = jiffies;
  2866.       
  2867. /* Set check interval to 1/5 of estimated time to
  2868.  * send a character, and make it at least 1. The check
  2869.  * interval should also be less than the timeout.
  2870.  * Note: use tight timings here to satisfy the NIST-PCTS.
  2871.  */ 
  2872.        
  2873. if ( info->params.data_rate ) {
  2874.         char_time = info->timeout/(32 * 5);
  2875. if (!char_time)
  2876. char_time++;
  2877. } else
  2878. char_time = 1;
  2879. if (timeout)
  2880. char_time = MIN(char_time, timeout);
  2881. if ( info->params.mode == MGSL_MODE_HDLC ||
  2882. info->params.mode == MGSL_MODE_RAW ) {
  2883. while (info->tx_active) {
  2884. set_current_state(TASK_INTERRUPTIBLE);
  2885. schedule_timeout(char_time);
  2886. if (signal_pending(current))
  2887. break;
  2888. if (timeout && ((orig_jiffies + timeout) < jiffies))
  2889. break;
  2890. }
  2891. } else {
  2892. while (!(usc_InReg(info,TCSR) & TXSTATUS_ALL_SENT) &&
  2893. info->tx_enabled) {
  2894. set_current_state(TASK_INTERRUPTIBLE);
  2895. schedule_timeout(char_time);
  2896. if (signal_pending(current))
  2897. break;
  2898. if (timeout && ((orig_jiffies + timeout) < jiffies))
  2899. break;
  2900. }
  2901. }
  2902.       
  2903. exit:
  2904. if (debug_level >= DEBUG_LEVEL_INFO)
  2905. printk("%s(%d):mgsl_wait_until_sent(%s) exitn",
  2906.  __FILE__,__LINE__, info->device_name );
  2907.  
  2908. } /* end of mgsl_wait_until_sent() */
  2909. /* mgsl_hangup()
  2910.  *
  2911.  * Called by tty_hangup() when a hangup is signaled.
  2912.  * This is the same as to closing all open files for the port.
  2913.  *
  2914.  * Arguments: tty pointer to associated tty object
  2915.  * Return Value: None
  2916.  */
  2917. static void mgsl_hangup(struct tty_struct *tty)
  2918. {
  2919. struct mgsl_struct * info = (struct mgsl_struct *)tty->driver_data;
  2920. if (debug_level >= DEBUG_LEVEL_INFO)
  2921. printk("%s(%d):mgsl_hangup(%s)n",
  2922.  __FILE__,__LINE__, info->device_name );
  2923.  
  2924. if (mgsl_paranoia_check(info, tty->device, "mgsl_hangup"))
  2925. return;
  2926. mgsl_flush_buffer(tty);
  2927. shutdown(info);
  2928. info->count = 0;
  2929. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE);
  2930. info->tty = 0;
  2931. wake_up_interruptible(&info->open_wait);
  2932. } /* end of mgsl_hangup() */
  2933. /* block_til_ready()
  2934.  * 
  2935.  *  Block the current process until the specified port
  2936.  *  is ready to be opened.
  2937.  * 
  2938.  * Arguments:
  2939.  * 
  2940.  *  tty pointer to tty info structure
  2941.  *  filp pointer to open file object
  2942.  *  info pointer to device instance data
  2943.  * 
  2944.  * Return Value: 0 if success, otherwise error code
  2945.  */
  2946. static int block_til_ready(struct tty_struct *tty, struct file * filp,
  2947.    struct mgsl_struct *info)
  2948. {
  2949. DECLARE_WAITQUEUE(wait, current);
  2950. int retval;
  2951. int do_clocal = 0, extra_count = 0;
  2952. unsigned long flags;
  2953. if (debug_level >= DEBUG_LEVEL_INFO)
  2954. printk("%s(%d):block_til_ready on %sn",
  2955.  __FILE__,__LINE__, tty->driver.name );
  2956. if (tty->driver.subtype == SERIAL_TYPE_CALLOUT) {
  2957. /* this is a callout device */
  2958. /* just verify that normal device is not in use */
  2959. if (info->flags & ASYNC_NORMAL_ACTIVE)
  2960. return -EBUSY;
  2961. if ((info->flags & ASYNC_CALLOUT_ACTIVE) &&
  2962.     (info->flags & ASYNC_SESSION_LOCKOUT) &&
  2963.     (info->session != current->session))
  2964.     return -EBUSY;
  2965. if ((info->flags & ASYNC_CALLOUT_ACTIVE) &&
  2966.     (info->flags & ASYNC_PGRP_LOCKOUT) &&
  2967.     (info->pgrp != current->pgrp))
  2968.     return -EBUSY;
  2969. info->flags |= ASYNC_CALLOUT_ACTIVE;
  2970. return 0;
  2971. }
  2972. if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
  2973. /* nonblock mode is set or port is not enabled */
  2974. /* just verify that callout device is not active */
  2975. if (info->flags & ASYNC_CALLOUT_ACTIVE)
  2976. return -EBUSY;
  2977. info->flags |= ASYNC_NORMAL_ACTIVE;
  2978. return 0;
  2979. }
  2980. if (info->flags & ASYNC_CALLOUT_ACTIVE) {
  2981. if (info->normal_termios.c_cflag & CLOCAL)
  2982. do_clocal = 1;
  2983. } else {
  2984. if (tty->termios->c_cflag & CLOCAL)
  2985. do_clocal = 1;
  2986. }
  2987. /* Wait for carrier detect and the line to become
  2988.  * free (i.e., not in use by the callout).  While we are in
  2989.  * this loop, info->count is dropped by one, so that
  2990.  * mgsl_close() knows when to free things.  We restore it upon
  2991.  * exit, either normal or abnormal.
  2992.  */
  2993.  
  2994. retval = 0;
  2995. add_wait_queue(&info->open_wait, &wait);
  2996. if (debug_level >= DEBUG_LEVEL_INFO)
  2997. printk("%s(%d):block_til_ready before block on %s count=%dn",
  2998.  __FILE__,__LINE__, tty->driver.name, info->count );
  2999. save_flags(flags); cli();
  3000. if (!tty_hung_up_p(filp)) {
  3001. extra_count = 1;
  3002. info->count--;
  3003. }
  3004. restore_flags(flags);
  3005. info->blocked_open++;
  3006. while (1) {
  3007. if (!(info->flags & ASYNC_CALLOUT_ACTIVE) &&
  3008.       (tty->termios->c_cflag & CBAUD)) {
  3009. spin_lock_irqsave(&info->irq_spinlock,flags);
  3010. info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  3011.   usc_set_serial_signals(info);
  3012. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3013. }
  3014. set_current_state(TASK_INTERRUPTIBLE);
  3015. if (tty_hung_up_p(filp) || !(info->flags & ASYNC_INITIALIZED)){
  3016. retval = (info->flags & ASYNC_HUP_NOTIFY) ?
  3017. -EAGAIN : -ERESTARTSYS;
  3018. break;
  3019. }
  3020. spin_lock_irqsave(&info->irq_spinlock,flags);
  3021.   usc_get_serial_signals(info);
  3022. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3023.   if (!(info->flags & ASYNC_CALLOUT_ACTIVE) &&
  3024.       !(info->flags & ASYNC_CLOSING) &&
  3025.       (do_clocal || (info->serial_signals & SerialSignal_DCD)) ) {
  3026.   break;
  3027. }
  3028. if (signal_pending(current)) {
  3029. retval = -ERESTARTSYS;
  3030. break;
  3031. }
  3032. if (debug_level >= DEBUG_LEVEL_INFO)
  3033. printk("%s(%d):block_til_ready blocking on %s count=%dn",
  3034.  __FILE__,__LINE__, tty->driver.name, info->count );
  3035.  
  3036. schedule();
  3037. }
  3038. set_current_state(TASK_RUNNING);
  3039. remove_wait_queue(&info->open_wait, &wait);
  3040. if (extra_count)
  3041. info->count++;
  3042. info->blocked_open--;
  3043. if (debug_level >= DEBUG_LEVEL_INFO)
  3044. printk("%s(%d):block_til_ready after blocking on %s count=%dn",
  3045.  __FILE__,__LINE__, tty->driver.name, info->count );
  3046.  
  3047. if (!retval)
  3048. info->flags |= ASYNC_NORMAL_ACTIVE;
  3049. return retval;
  3050. } /* end of block_til_ready() */
  3051. /* mgsl_open()
  3052.  *
  3053.  * Called when a port is opened.  Init and enable port.
  3054.  * Perform serial-specific initialization for the tty structure.
  3055.  *
  3056.  * Arguments: tty pointer to tty info structure
  3057.  * filp associated file pointer
  3058.  *
  3059.  * Return Value: 0 if success, otherwise error code
  3060.  */
  3061. static int mgsl_open(struct tty_struct *tty, struct file * filp)
  3062. {
  3063. struct mgsl_struct *info;
  3064. int  retval, line;
  3065. unsigned long page;
  3066. unsigned long flags;
  3067. /* verify range of specified line number */
  3068. line = MINOR(tty->device) - tty->driver.minor_start;
  3069. if ((line < 0) || (line >= mgsl_device_count)) {
  3070. printk("%s(%d):mgsl_open with illegal line #%d.n",
  3071. __FILE__,__LINE__,line);
  3072. return -ENODEV;
  3073. }
  3074. /* find the info structure for the specified line */
  3075. info = mgsl_device_list;
  3076. while(info && info->line != line)
  3077. info = info->next_device;
  3078. if ( !info ){
  3079. printk("%s(%d):Can't find specified device on open (line=%d)n",
  3080. __FILE__,__LINE__,line);
  3081. return -ENODEV;
  3082. }
  3083. tty->driver_data = info;
  3084. info->tty = tty;
  3085. if (mgsl_paranoia_check(info, tty->device, "mgsl_open"))
  3086. return -ENODEV;
  3087. if (debug_level >= DEBUG_LEVEL_INFO)
  3088. printk("%s(%d):mgsl_open(%s), old ref count = %dn",
  3089.  __FILE__,__LINE__,tty->driver.name, info->count);
  3090. MOD_INC_USE_COUNT;
  3091. /* If port is closing, signal caller to try again */
  3092. if (tty_hung_up_p(filp) || info->flags & ASYNC_CLOSING){
  3093. if (info->flags & ASYNC_CLOSING)
  3094. interruptible_sleep_on(&info->close_wait);
  3095. retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
  3096. -EAGAIN : -ERESTARTSYS);
  3097. goto cleanup;
  3098. }
  3099. if (!tmp_buf) {
  3100. page = get_free_page(GFP_KERNEL);
  3101. if (!page) {
  3102. retval = -ENOMEM;
  3103. goto cleanup;
  3104. }
  3105. if (tmp_buf)
  3106. free_page(page);
  3107. else
  3108. tmp_buf = (unsigned char *) page;
  3109. }
  3110. info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  3111. spin_lock_irqsave(&info->netlock, flags);
  3112. if (info->netcount) {
  3113. retval = -EBUSY;
  3114. spin_unlock_irqrestore(&info->netlock, flags);
  3115. goto cleanup;
  3116. }
  3117. info->count++;
  3118. spin_unlock_irqrestore(&info->netlock, flags);
  3119. if (info->count == 1) {
  3120. /* 1st open on this device, init hardware */
  3121. retval = startup(info);
  3122. if (retval < 0)
  3123. goto cleanup;
  3124. }
  3125. retval = block_til_ready(tty, filp, info);
  3126. if (retval) {
  3127. if (debug_level >= DEBUG_LEVEL_INFO)
  3128. printk("%s(%d):block_til_ready(%s) returned %dn",
  3129.  __FILE__,__LINE__, info->device_name, retval);
  3130. goto cleanup;
  3131. }
  3132. if ((info->count == 1) &&
  3133.     info->flags & ASYNC_SPLIT_TERMIOS) {
  3134. if (tty->driver.subtype == SERIAL_TYPE_NORMAL)
  3135. *tty->termios = info->normal_termios;
  3136. else 
  3137. *tty->termios = info->callout_termios;
  3138. mgsl_change_params(info);
  3139. }
  3140. info->session = current->session;
  3141. info->pgrp    = current->pgrp;
  3142. if (debug_level >= DEBUG_LEVEL_INFO)
  3143. printk("%s(%d):mgsl_open(%s) successn",
  3144.  __FILE__,__LINE__, info->device_name);
  3145. retval = 0;
  3146. cleanup:
  3147. if (retval) {
  3148. if(MOD_IN_USE)
  3149. MOD_DEC_USE_COUNT;
  3150. if(info->count)
  3151. info->count--;
  3152. }
  3153. return retval;
  3154. } /* end of mgsl_open() */
  3155. /*
  3156.  * /proc fs routines....
  3157.  */
  3158. static inline int line_info(char *buf, struct mgsl_struct *info)
  3159. {
  3160. char stat_buf[30];
  3161. int ret;
  3162. unsigned long flags;
  3163. if (info->bus_type == MGSL_BUS_TYPE_PCI) {
  3164. ret = sprintf(buf, "%s:PCI io:%04X irq:%d mem:%08X lcr:%08X",
  3165. info->device_name, info->io_base, info->irq_level,
  3166. info->phys_memory_base, info->phys_lcr_base);
  3167. } else {
  3168. ret = sprintf(buf, "%s:(E)ISA io:%04X irq:%d dma:%d",
  3169. info->device_name, info->io_base, 
  3170. info->irq_level, info->dma_level);
  3171. }
  3172. /* output current serial signal states */
  3173. spin_lock_irqsave(&info->irq_spinlock,flags);
  3174.   usc_get_serial_signals(info);
  3175. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3176. stat_buf[0] = 0;
  3177. stat_buf[1] = 0;
  3178. if (info->serial_signals & SerialSignal_RTS)
  3179. strcat(stat_buf, "|RTS");
  3180. if (info->serial_signals & SerialSignal_CTS)
  3181. strcat(stat_buf, "|CTS");
  3182. if (info->serial_signals & SerialSignal_DTR)
  3183. strcat(stat_buf, "|DTR");
  3184. if (info->serial_signals & SerialSignal_DSR)
  3185. strcat(stat_buf, "|DSR");
  3186. if (info->serial_signals & SerialSignal_DCD)
  3187. strcat(stat_buf, "|CD");
  3188. if (info->serial_signals & SerialSignal_RI)
  3189. strcat(stat_buf, "|RI");
  3190. if (info->params.mode == MGSL_MODE_HDLC ||
  3191.     info->params.mode == MGSL_MODE_RAW ) {
  3192. ret += sprintf(buf+ret, " HDLC txok:%d rxok:%d",
  3193.       info->icount.txok, info->icount.rxok);
  3194. if (info->icount.txunder)
  3195. ret += sprintf(buf+ret, " txunder:%d", info->icount.txunder);
  3196. if (info->icount.txabort)
  3197. ret += sprintf(buf+ret, " txabort:%d", info->icount.txabort);
  3198. if (info->icount.rxshort)
  3199. ret += sprintf(buf+ret, " rxshort:%d", info->icount.rxshort);
  3200. if (info->icount.rxlong)
  3201. ret += sprintf(buf+ret, " rxlong:%d", info->icount.rxlong);
  3202. if (info->icount.rxover)
  3203. ret += sprintf(buf+ret, " rxover:%d", info->icount.rxover);
  3204. if (info->icount.rxcrc)
  3205. ret += sprintf(buf+ret, " rxlong:%d", info->icount.rxcrc);
  3206. } else {
  3207. ret += sprintf(buf+ret, " ASYNC tx:%d rx:%d",
  3208.       info->icount.tx, info->icount.rx);
  3209. if (info->icount.frame)
  3210. ret += sprintf(buf+ret, " fe:%d", info->icount.frame);
  3211. if (info->icount.parity)
  3212. ret += sprintf(buf+ret, " pe:%d", info->icount.parity);
  3213. if (info->icount.brk)
  3214. ret += sprintf(buf+ret, " brk:%d", info->icount.brk);
  3215. if (info->icount.overrun)
  3216. ret += sprintf(buf+ret, " oe:%d", info->icount.overrun);
  3217. }
  3218. /* Append serial signal status to end */
  3219. ret += sprintf(buf+ret, " %sn", stat_buf+1);
  3220. ret += sprintf(buf+ret, "txactive=%d bh_req=%d bh_run=%d pending_bh=%xn",
  3221.  info->tx_active,info->bh_requested,info->bh_running,
  3222.  info->pending_bh);
  3223.  
  3224. spin_lock_irqsave(&info->irq_spinlock,flags);
  3225. {
  3226. u16 Tcsr = usc_InReg( info, TCSR );
  3227. u16 Tdmr = usc_InDmaReg( info, TDMR );
  3228. u16 Ticr = usc_InReg( info, TICR );
  3229. u16 Rscr = usc_InReg( info, RCSR );
  3230. u16 Rdmr = usc_InDmaReg( info, RDMR );
  3231. u16 Ricr = usc_InReg( info, RICR );
  3232. u16 Icr = usc_InReg( info, ICR );
  3233. u16 Dccr = usc_InReg( info, DCCR );
  3234. u16 Tmr = usc_InReg( info, TMR );
  3235. u16 Tccr = usc_InReg( info, TCCR );
  3236. u16 Ccar = inw( info->io_base + CCAR );
  3237. ret += sprintf(buf+ret, "tcsr=%04X tdmr=%04X ticr=%04X rcsr=%04X rdmr=%04Xn"
  3238.                         "ricr=%04X icr =%04X dccr=%04X tmr=%04X tccr=%04X ccar=%04Xn",
  3239.   Tcsr,Tdmr,Ticr,Rscr,Rdmr,Ricr,Icr,Dccr,Tmr,Tccr,Ccar );
  3240. }
  3241. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3242. return ret;
  3243. } /* end of line_info() */
  3244. /* mgsl_read_proc()
  3245.  * 
  3246.  * Called to print information about devices
  3247.  * 
  3248.  * Arguments:
  3249.  *  page page of memory to hold returned info
  3250.  *  start
  3251.  *  off
  3252.  *  count
  3253.  *  eof
  3254.  *  data
  3255.  * 
  3256.  * Return Value:
  3257.  */
  3258. int mgsl_read_proc(char *page, char **start, off_t off, int count,
  3259.  int *eof, void *data)
  3260. {
  3261. int len = 0, l;
  3262. off_t begin = 0;
  3263. struct mgsl_struct *info;
  3264. len += sprintf(page, "synclink driver:%sn", driver_version);
  3265. info = mgsl_device_list;
  3266. while( info ) {
  3267. l = line_info(page + len, info);
  3268. len += l;
  3269. if (len+begin > off+count)
  3270. goto done;
  3271. if (len+begin < off) {
  3272. begin += len;
  3273. len = 0;
  3274. }
  3275. info = info->next_device;
  3276. }
  3277. *eof = 1;
  3278. done:
  3279. if (off >= len+begin)
  3280. return 0;
  3281. *start = page + (off-begin);
  3282. return ((count < begin+len-off) ? count : begin+len-off);
  3283. } /* end of mgsl_read_proc() */
  3284. /* mgsl_allocate_dma_buffers()
  3285.  * 
  3286.  *  Allocate and format DMA buffers (ISA adapter)
  3287.  *  or format shared memory buffers (PCI adapter).
  3288.  * 
  3289.  * Arguments: info pointer to device instance data
  3290.  * Return Value: 0 if success, otherwise error
  3291.  */
  3292. int mgsl_allocate_dma_buffers(struct mgsl_struct *info)
  3293. {
  3294. unsigned short BuffersPerFrame;
  3295. info->last_mem_alloc = 0;
  3296. /* Calculate the number of DMA buffers necessary to hold the */
  3297. /* largest allowable frame size. Note: If the max frame size is */
  3298. /* not an even multiple of the DMA buffer size then we need to */
  3299. /* round the buffer count per frame up one. */
  3300. BuffersPerFrame = (unsigned short)(info->max_frame_size/DMABUFFERSIZE);
  3301. if ( info->max_frame_size % DMABUFFERSIZE )
  3302. BuffersPerFrame++;
  3303. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  3304. /*
  3305.  * The PCI adapter has 256KBytes of shared memory to use.
  3306.  * This is 64 PAGE_SIZE buffers.
  3307.  *
  3308.  * The first page is used for padding at this time so the
  3309.  * buffer list does not begin at offset 0 of the PCI
  3310.  * adapter's shared memory.
  3311.  *
  3312.  * The 2nd page is used for the buffer list. A 4K buffer
  3313.  * list can hold 128 DMA_BUFFER structures at 32 bytes
  3314.  * each.
  3315.  *
  3316.  * This leaves 62 4K pages.
  3317.  *
  3318.  * The next N pages are used for transmit frame(s). We
  3319.  * reserve enough 4K page blocks to hold the required
  3320.  * number of transmit dma buffers (num_tx_dma_buffers),
  3321.  * each of MaxFrameSize size.
  3322.  *
  3323.  * Of the remaining pages (62-N), determine how many can
  3324.  * be used to receive full MaxFrameSize inbound frames
  3325.  */
  3326. info->tx_buffer_count = info->num_tx_dma_buffers * BuffersPerFrame;
  3327. info->rx_buffer_count = 62 - info->tx_buffer_count;
  3328. } else {
  3329. /* Calculate the number of PAGE_SIZE buffers needed for */
  3330. /* receive and transmit DMA buffers. */
  3331. /* Calculate the number of DMA buffers necessary to */
  3332. /* hold 7 max size receive frames and one max size transmit frame. */
  3333. /* The receive buffer count is bumped by one so we avoid an */
  3334. /* End of List condition if all receive buffers are used when */
  3335. /* using linked list DMA buffers. */
  3336. info->tx_buffer_count = info->num_tx_dma_buffers * BuffersPerFrame;
  3337. info->rx_buffer_count = (BuffersPerFrame * MAXRXFRAMES) + 6;
  3338. /* 
  3339.  * limit total TxBuffers & RxBuffers to 62 4K total 
  3340.  * (ala PCI Allocation) 
  3341.  */
  3342. if ( (info->tx_buffer_count + info->rx_buffer_count) > 62 )
  3343. info->rx_buffer_count = 62 - info->tx_buffer_count;
  3344. }
  3345. if ( debug_level >= DEBUG_LEVEL_INFO )
  3346. printk("%s(%d):Allocating %d TX and %d RX DMA buffers.n",
  3347. __FILE__,__LINE__, info->tx_buffer_count,info->rx_buffer_count);
  3348. if ( mgsl_alloc_buffer_list_memory( info ) < 0 ||
  3349.   mgsl_alloc_frame_memory(info, info->rx_buffer_list, info->rx_buffer_count) < 0 || 
  3350.   mgsl_alloc_frame_memory(info, info->tx_buffer_list, info->tx_buffer_count) < 0 || 
  3351.   mgsl_alloc_intermediate_rxbuffer_memory(info) < 0  ||
  3352.   mgsl_alloc_intermediate_txbuffer_memory(info) < 0 ) {
  3353. printk("%s(%d):Can't allocate DMA buffer memoryn",__FILE__,__LINE__);
  3354. return -ENOMEM;
  3355. }
  3356. mgsl_reset_rx_dma_buffers( info );
  3357.    mgsl_reset_tx_dma_buffers( info );
  3358. return 0;
  3359. } /* end of mgsl_allocate_dma_buffers() */
  3360. /*
  3361.  * mgsl_alloc_buffer_list_memory()
  3362.  * 
  3363.  * Allocate a common DMA buffer for use as the
  3364.  * receive and transmit buffer lists.
  3365.  * 
  3366.  * A buffer list is a set of buffer entries where each entry contains
  3367.  * a pointer to an actual buffer and a pointer to the next buffer entry
  3368.  * (plus some other info about the buffer).
  3369.  * 
  3370.  * The buffer entries for a list are built to form a circular list so
  3371.  * that when the entire list has been traversed you start back at the
  3372.  * beginning.
  3373.  * 
  3374.  * This function allocates memory for just the buffer entries.
  3375.  * The links (pointer to next entry) are filled in with the physical
  3376.  * address of the next entry so the adapter can navigate the list
  3377.  * using bus master DMA. The pointers to the actual buffers are filled
  3378.  * out later when the actual buffers are allocated.
  3379.  * 
  3380.  * Arguments: info pointer to device instance data
  3381.  * Return Value: 0 if success, otherwise error
  3382.  */
  3383. int mgsl_alloc_buffer_list_memory( struct mgsl_struct *info )
  3384. {
  3385. unsigned int i;
  3386. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  3387. /* PCI adapter uses shared memory. */
  3388. info->buffer_list = info->memory_base + info->last_mem_alloc;
  3389. info->buffer_list_phys = info->last_mem_alloc;
  3390. info->last_mem_alloc += BUFFERLISTSIZE;
  3391. } else {
  3392. /* ISA adapter uses system memory. */
  3393. /* The buffer lists are allocated as a common buffer that both */
  3394. /* the processor and adapter can access. This allows the driver to */
  3395. /* inspect portions of the buffer while other portions are being */
  3396. /* updated by the adapter using Bus Master DMA. */
  3397. info->buffer_list = kmalloc(BUFFERLISTSIZE, GFP_KERNEL | GFP_DMA);
  3398. if ( info->buffer_list == NULL )
  3399. return -ENOMEM;
  3400. info->buffer_list_phys = virt_to_bus(info->buffer_list);
  3401. }
  3402. /* We got the memory for the buffer entry lists. */
  3403. /* Initialize the memory block to all zeros. */
  3404. memset( info->buffer_list, 0, BUFFERLISTSIZE );
  3405. /* Save virtual address pointers to the receive and */
  3406. /* transmit buffer lists. (Receive 1st). These pointers will */
  3407. /* be used by the processor to access the lists. */
  3408. info->rx_buffer_list = (DMABUFFERENTRY *)info->buffer_list;
  3409. info->tx_buffer_list = (DMABUFFERENTRY *)info->buffer_list;
  3410. info->tx_buffer_list += info->rx_buffer_count;
  3411. /*
  3412.  * Build the links for the buffer entry lists such that
  3413.  * two circular lists are built. (Transmit and Receive).
  3414.  *
  3415.  * Note: the links are physical addresses
  3416.  * which are read by the adapter to determine the next
  3417.  * buffer entry to use.
  3418.  */
  3419. for ( i = 0; i < info->rx_buffer_count; i++ ) {
  3420. /* calculate and store physical address of this buffer entry */
  3421. info->rx_buffer_list[i].phys_entry =
  3422. info->buffer_list_phys + (i * sizeof(DMABUFFERENTRY));
  3423. /* calculate and store physical address of */
  3424. /* next entry in cirular list of entries */
  3425. info->rx_buffer_list[i].link = info->buffer_list_phys;
  3426. if ( i < info->rx_buffer_count - 1 )
  3427. info->rx_buffer_list[i].link += (i + 1) * sizeof(DMABUFFERENTRY);
  3428. }
  3429. for ( i = 0; i < info->tx_buffer_count; i++ ) {
  3430. /* calculate and store physical address of this buffer entry */
  3431. info->tx_buffer_list[i].phys_entry = info->buffer_list_phys +
  3432. ((info->rx_buffer_count + i) * sizeof(DMABUFFERENTRY));
  3433. /* calculate and store physical address of */
  3434. /* next entry in cirular list of entries */
  3435. info->tx_buffer_list[i].link = info->buffer_list_phys +
  3436. info->rx_buffer_count * sizeof(DMABUFFERENTRY);
  3437. if ( i < info->tx_buffer_count - 1 )
  3438. info->tx_buffer_list[i].link += (i + 1) * sizeof(DMABUFFERENTRY);
  3439. }
  3440. return 0;
  3441. } /* end of mgsl_alloc_buffer_list_memory() */
  3442. /* Free DMA buffers allocated for use as the
  3443.  * receive and transmit buffer lists.
  3444.  * Warning:
  3445.  * 
  3446.  *  The data transfer buffers associated with the buffer list
  3447.  *  MUST be freed before freeing the buffer list itself because
  3448.  *  the buffer list contains the information necessary to free
  3449.  *  the individual buffers!
  3450.  */
  3451. void mgsl_free_buffer_list_memory( struct mgsl_struct *info )
  3452. {
  3453. if ( info->buffer_list && info->bus_type != MGSL_BUS_TYPE_PCI )
  3454. kfree(info->buffer_list);
  3455. info->buffer_list = NULL;
  3456. info->rx_buffer_list = NULL;
  3457. info->tx_buffer_list = NULL;
  3458. } /* end of mgsl_free_buffer_list_memory() */
  3459. /*
  3460.  * mgsl_alloc_frame_memory()
  3461.  * 
  3462.  *  Allocate the frame DMA buffers used by the specified buffer list.
  3463.  *  Each DMA buffer will be one memory page in size. This is necessary
  3464.  *  because memory can fragment enough that it may be impossible
  3465.  *  contiguous pages.
  3466.  * 
  3467.  * Arguments:
  3468.  * 
  3469.  * info pointer to device instance data
  3470.  *  BufferList pointer to list of buffer entries
  3471.  *  Buffercount count of buffer entries in buffer list
  3472.  * 
  3473.  * Return Value: 0 if success, otherwise -ENOMEM
  3474.  */
  3475. int mgsl_alloc_frame_memory(struct mgsl_struct *info,DMABUFFERENTRY *BufferList,int Buffercount)
  3476. {
  3477. int i;
  3478. unsigned long phys_addr;
  3479. /* Allocate page sized buffers for the receive buffer list */
  3480. for ( i = 0; i < Buffercount; i++ ) {
  3481. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  3482. /* PCI adapter uses shared memory buffers. */
  3483. BufferList[i].virt_addr = info->memory_base + info->last_mem_alloc;
  3484. phys_addr = info->last_mem_alloc;
  3485. info->last_mem_alloc += DMABUFFERSIZE;
  3486. } else {
  3487. /* ISA adapter uses system memory. */
  3488. BufferList[i].virt_addr = 
  3489. kmalloc(DMABUFFERSIZE, GFP_KERNEL | GFP_DMA);
  3490. if ( BufferList[i].virt_addr == NULL )
  3491. return -ENOMEM;
  3492. phys_addr = virt_to_bus(BufferList[i].virt_addr);
  3493. }
  3494. BufferList[i].phys_addr = phys_addr;
  3495. }
  3496. return 0;
  3497. } /* end of mgsl_alloc_frame_memory() */
  3498. /*
  3499.  * mgsl_free_frame_memory()
  3500.  * 
  3501.  *  Free the buffers associated with
  3502.  *  each buffer entry of a buffer list.
  3503.  * 
  3504.  * Arguments: