synclink.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:232k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1.  * 
  2.  * info pointer to device instance data
  3.  *  BufferList pointer to list of buffer entries
  4.  *  Buffercount count of buffer entries in buffer list
  5.  * 
  6.  * Return Value: None
  7.  */
  8. void mgsl_free_frame_memory(struct mgsl_struct *info, DMABUFFERENTRY *BufferList, int Buffercount)
  9. {
  10. int i;
  11. if ( BufferList ) {
  12. for ( i = 0 ; i < Buffercount ; i++ ) {
  13. if ( BufferList[i].virt_addr ) {
  14. if ( info->bus_type != MGSL_BUS_TYPE_PCI )
  15. kfree(BufferList[i].virt_addr);
  16. BufferList[i].virt_addr = NULL;
  17. }
  18. }
  19. }
  20. } /* end of mgsl_free_frame_memory() */
  21. /* mgsl_free_dma_buffers()
  22.  * 
  23.  *  Free DMA buffers
  24.  * 
  25.  * Arguments: info pointer to device instance data
  26.  * Return Value: None
  27.  */
  28. void mgsl_free_dma_buffers( struct mgsl_struct *info )
  29. {
  30. mgsl_free_frame_memory( info, info->rx_buffer_list, info->rx_buffer_count );
  31. mgsl_free_frame_memory( info, info->tx_buffer_list, info->tx_buffer_count );
  32. mgsl_free_buffer_list_memory( info );
  33. } /* end of mgsl_free_dma_buffers() */
  34. /*
  35.  * mgsl_alloc_intermediate_rxbuffer_memory()
  36.  * 
  37.  *  Allocate a buffer large enough to hold max_frame_size. This buffer
  38.  * is used to pass an assembled frame to the line discipline.
  39.  * 
  40.  * Arguments:
  41.  * 
  42.  * info pointer to device instance data
  43.  * 
  44.  * Return Value: 0 if success, otherwise -ENOMEM
  45.  */
  46. int mgsl_alloc_intermediate_rxbuffer_memory(struct mgsl_struct *info)
  47. {
  48. info->intermediate_rxbuffer = kmalloc(info->max_frame_size, GFP_KERNEL | GFP_DMA);
  49. if ( info->intermediate_rxbuffer == NULL )
  50. return -ENOMEM;
  51. return 0;
  52. } /* end of mgsl_alloc_intermediate_rxbuffer_memory() */
  53. /*
  54.  * mgsl_free_intermediate_rxbuffer_memory()
  55.  * 
  56.  * 
  57.  * Arguments:
  58.  * 
  59.  * info pointer to device instance data
  60.  * 
  61.  * Return Value: None
  62.  */
  63. void mgsl_free_intermediate_rxbuffer_memory(struct mgsl_struct *info)
  64. {
  65. if ( info->intermediate_rxbuffer )
  66. kfree(info->intermediate_rxbuffer);
  67. info->intermediate_rxbuffer = NULL;
  68. } /* end of mgsl_free_intermediate_rxbuffer_memory() */
  69. /*
  70.  * mgsl_alloc_intermediate_txbuffer_memory()
  71.  *
  72.  *  Allocate intermdiate transmit buffer(s) large enough to hold max_frame_size.
  73.  *  This buffer is used to load transmit frames into the adapter's dma transfer
  74.  *  buffers when there is sufficient space.
  75.  *
  76.  * Arguments:
  77.  *
  78.  * info pointer to device instance data
  79.  *
  80.  * Return Value: 0 if success, otherwise -ENOMEM
  81.  */
  82. int mgsl_alloc_intermediate_txbuffer_memory(struct mgsl_struct *info)
  83. {
  84. int i;
  85. if ( debug_level >= DEBUG_LEVEL_INFO )
  86. printk("%s %s(%d)  allocating %d tx holding buffersn",
  87. info->device_name, __FILE__,__LINE__,info->num_tx_holding_buffers);
  88. memset(info->tx_holding_buffers,0,sizeof(info->tx_holding_buffers));
  89. for ( i=0; i<info->num_tx_holding_buffers; ++i) {
  90. info->tx_holding_buffers[i].buffer =
  91. kmalloc(info->max_frame_size, GFP_KERNEL);
  92. if ( info->tx_holding_buffers[i].buffer == NULL )
  93. return -ENOMEM;
  94. }
  95. return 0;
  96. } /* end of mgsl_alloc_intermediate_txbuffer_memory() */
  97. /*
  98.  * mgsl_free_intermediate_txbuffer_memory()
  99.  *
  100.  *
  101.  * Arguments:
  102.  *
  103.  * info pointer to device instance data
  104.  *
  105.  * Return Value: None
  106.  */
  107. void mgsl_free_intermediate_txbuffer_memory(struct mgsl_struct *info)
  108. {
  109. int i;
  110. for ( i=0; i<info->num_tx_holding_buffers; ++i ) {
  111. if ( info->tx_holding_buffers[i].buffer ) {
  112. kfree(info->tx_holding_buffers[i].buffer);
  113. info->tx_holding_buffers[i].buffer=NULL;
  114. }
  115. }
  116. info->get_tx_holding_index = 0;
  117. info->put_tx_holding_index = 0;
  118. info->tx_holding_count = 0;
  119. } /* end of mgsl_free_intermediate_txbuffer_memory() */
  120. /*
  121.  * load_next_tx_holding_buffer()
  122.  *
  123.  * attempts to load the next buffered tx request into the
  124.  * tx dma buffers
  125.  *
  126.  * Arguments:
  127.  *
  128.  * info pointer to device instance data
  129.  *
  130.  * Return Value: 1 if next buffered tx request loaded
  131.  *  into adapter's tx dma buffer,
  132.  *  0 otherwise
  133.  */
  134. int load_next_tx_holding_buffer(struct mgsl_struct *info)
  135. {
  136. int ret = 0;
  137. if ( info->tx_holding_count ) {
  138. /* determine if we have enough tx dma buffers
  139.  * to accomodate the next tx frame
  140.  */
  141. struct tx_holding_buffer *ptx =
  142. &info->tx_holding_buffers[info->get_tx_holding_index];
  143. int num_free = num_free_tx_dma_buffers(info);
  144. int num_needed = ptx->buffer_size / DMABUFFERSIZE;
  145. if ( ptx->buffer_size % DMABUFFERSIZE )
  146. ++num_needed;
  147. if (num_needed <= num_free) {
  148. info->xmit_cnt = ptx->buffer_size;
  149. mgsl_load_tx_dma_buffer(info,ptx->buffer,ptx->buffer_size);
  150. --info->tx_holding_count;
  151. if ( ++info->get_tx_holding_index >= info->num_tx_holding_buffers)
  152. info->get_tx_holding_index=0;
  153. /* restart transmit timer */
  154. del_timer(&info->tx_timer);
  155. info->tx_timer.expires = jiffies + jiffies_from_ms(5000);
  156. add_timer(&info->tx_timer);
  157. ret = 1;
  158. }
  159. }
  160. return ret;
  161. }
  162. /*
  163.  * save_tx_buffer_request()
  164.  *
  165.  * attempt to store transmit frame request for later transmission
  166.  *
  167.  * Arguments:
  168.  *
  169.  * info pointer to device instance data
  170.  *  Buffer pointer to buffer containing frame to load
  171.  *  BufferSize size in bytes of frame in Buffer
  172.  *
  173.  * Return Value: 1 if able to store, 0 otherwise
  174.  */
  175. int save_tx_buffer_request(struct mgsl_struct *info,const char *Buffer, unsigned int BufferSize)
  176. {
  177. struct tx_holding_buffer *ptx;
  178. if ( info->tx_holding_count >= info->num_tx_holding_buffers ) {
  179. return 0;         /* all buffers in use */
  180. }
  181. ptx = &info->tx_holding_buffers[info->put_tx_holding_index];
  182. ptx->buffer_size = BufferSize;
  183. memcpy( ptx->buffer, Buffer, BufferSize);
  184. ++info->tx_holding_count;
  185. if ( ++info->put_tx_holding_index >= info->num_tx_holding_buffers)
  186. info->put_tx_holding_index=0;
  187. return 1;
  188. }
  189. int mgsl_claim_resources(struct mgsl_struct *info)
  190. {
  191. if (request_region(info->io_base,info->io_addr_size,"synclink") == NULL) {
  192. printk( "%s(%d):I/O address conflict on device %s Addr=%08Xn",
  193. __FILE__,__LINE__,info->device_name, info->io_base);
  194. return -ENODEV;
  195. }
  196. info->io_addr_requested = 1;
  197. if ( request_irq(info->irq_level,mgsl_interrupt,info->irq_flags,
  198. info->device_name, info ) < 0 ) {
  199. printk( "%s(%d):Cant request interrupt on device %s IRQ=%dn",
  200. __FILE__,__LINE__,info->device_name, info->irq_level );
  201. goto errout;
  202. }
  203. info->irq_requested = 1;
  204. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  205. if (request_mem_region(info->phys_memory_base,0x40000,"synclink") == NULL) {
  206. printk( "%s(%d):mem addr conflict device %s Addr=%08Xn",
  207. __FILE__,__LINE__,info->device_name, info->phys_memory_base);
  208. goto errout;
  209. }
  210. info->shared_mem_requested = 1;
  211. if (request_mem_region(info->phys_lcr_base + info->lcr_offset,128,"synclink") == NULL) {
  212. printk( "%s(%d):lcr mem addr conflict device %s Addr=%08Xn",
  213. __FILE__,__LINE__,info->device_name, info->phys_lcr_base + info->lcr_offset);
  214. goto errout;
  215. }
  216. info->lcr_mem_requested = 1;
  217. info->memory_base = ioremap(info->phys_memory_base,0x40000);
  218. if (!info->memory_base) {
  219. printk( "%s(%d):Cant map shared memory on device %s MemAddr=%08Xn",
  220. __FILE__,__LINE__,info->device_name, info->phys_memory_base );
  221. goto errout;
  222. }
  223. if ( !mgsl_memory_test(info) ) {
  224. printk( "%s(%d):Failed shared memory test %s MemAddr=%08Xn",
  225. __FILE__,__LINE__,info->device_name, info->phys_memory_base );
  226. goto errout;
  227. }
  228. info->lcr_base = ioremap(info->phys_lcr_base,PAGE_SIZE) + info->lcr_offset;
  229. if (!info->lcr_base) {
  230. printk( "%s(%d):Cant map LCR memory on device %s MemAddr=%08Xn",
  231. __FILE__,__LINE__,info->device_name, info->phys_lcr_base );
  232. goto errout;
  233. }
  234. } else {
  235. /* claim DMA channel */
  236. if (request_dma(info->dma_level,info->device_name) < 0){
  237. printk( "%s(%d):Cant request DMA channel on device %s DMA=%dn",
  238. __FILE__,__LINE__,info->device_name, info->dma_level );
  239. mgsl_release_resources( info );
  240. return -ENODEV;
  241. }
  242. info->dma_requested = 1;
  243. /* ISA adapter uses bus master DMA */
  244. set_dma_mode(info->dma_level,DMA_MODE_CASCADE);
  245. enable_dma(info->dma_level);
  246. }
  247. if ( mgsl_allocate_dma_buffers(info) < 0 ) {
  248. printk( "%s(%d):Cant allocate DMA buffers on device %s DMA=%dn",
  249. __FILE__,__LINE__,info->device_name, info->dma_level );
  250. goto errout;
  251. }
  252. return 0;
  253. errout:
  254. mgsl_release_resources(info);
  255. return -ENODEV;
  256. } /* end of mgsl_claim_resources() */
  257. void mgsl_release_resources(struct mgsl_struct *info)
  258. {
  259. if ( debug_level >= DEBUG_LEVEL_INFO )
  260. printk( "%s(%d):mgsl_release_resources(%s) entryn",
  261. __FILE__,__LINE__,info->device_name );
  262. if ( info->irq_requested ) {
  263. free_irq(info->irq_level, info);
  264. info->irq_requested = 0;
  265. }
  266. if ( info->dma_requested ) {
  267. disable_dma(info->dma_level);
  268. free_dma(info->dma_level);
  269. info->dma_requested = 0;
  270. }
  271. mgsl_free_dma_buffers(info);
  272. mgsl_free_intermediate_rxbuffer_memory(info);
  273.       mgsl_free_intermediate_txbuffer_memory(info);
  274. if ( info->io_addr_requested ) {
  275. release_region(info->io_base,info->io_addr_size);
  276. info->io_addr_requested = 0;
  277. }
  278. if ( info->shared_mem_requested ) {
  279. release_mem_region(info->phys_memory_base,0x40000);
  280. info->shared_mem_requested = 0;
  281. }
  282. if ( info->lcr_mem_requested ) {
  283. release_mem_region(info->phys_lcr_base + info->lcr_offset,128);
  284. info->lcr_mem_requested = 0;
  285. }
  286. if (info->memory_base){
  287. iounmap(info->memory_base);
  288. info->memory_base = 0;
  289. }
  290. if (info->lcr_base){
  291. iounmap(info->lcr_base - info->lcr_offset);
  292. info->lcr_base = 0;
  293. }
  294. if ( debug_level >= DEBUG_LEVEL_INFO )
  295. printk( "%s(%d):mgsl_release_resources(%s) exitn",
  296. __FILE__,__LINE__,info->device_name );
  297. } /* end of mgsl_release_resources() */
  298. /* mgsl_add_device()
  299.  * 
  300.  *  Add the specified device instance data structure to the
  301.  *  global linked list of devices and increment the device count.
  302.  * 
  303.  * Arguments: info pointer to device instance data
  304.  * Return Value: None
  305.  */
  306. void mgsl_add_device( struct mgsl_struct *info )
  307. {
  308. info->next_device = NULL;
  309. info->line = mgsl_device_count;
  310. sprintf(info->device_name,"ttySL%d",info->line);
  311. if (info->line < MAX_TOTAL_DEVICES) {
  312. if (maxframe[info->line])
  313. info->max_frame_size = maxframe[info->line];
  314. info->dosyncppp = dosyncppp[info->line];
  315. if (txdmabufs[info->line]) {
  316. info->num_tx_dma_buffers = txdmabufs[info->line];
  317. if (info->num_tx_dma_buffers < 1)
  318. info->num_tx_dma_buffers = 1;
  319. }
  320. if (txholdbufs[info->line]) {
  321. info->num_tx_holding_buffers = txholdbufs[info->line];
  322. if (info->num_tx_holding_buffers < 1)
  323. info->num_tx_holding_buffers = 1;
  324. else if (info->num_tx_holding_buffers > MAX_TX_HOLDING_BUFFERS)
  325. info->num_tx_holding_buffers = MAX_TX_HOLDING_BUFFERS;
  326. }
  327. }
  328. mgsl_device_count++;
  329. if ( !mgsl_device_list )
  330. mgsl_device_list = info;
  331. else {
  332. struct mgsl_struct *current_dev = mgsl_device_list;
  333. while( current_dev->next_device )
  334. current_dev = current_dev->next_device;
  335. current_dev->next_device = info;
  336. }
  337. if ( info->max_frame_size < 4096 )
  338. info->max_frame_size = 4096;
  339. else if ( info->max_frame_size > 65535 )
  340. info->max_frame_size = 65535;
  341. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  342. printk( "SyncLink device %s added:PCI bus IO=%04X IRQ=%d Mem=%08X LCR=%08X MaxFrameSize=%un",
  343. info->device_name, info->io_base, info->irq_level,
  344. info->phys_memory_base, info->phys_lcr_base,
  345.       info->max_frame_size );
  346. } else {
  347. printk( "SyncLink device %s added:ISA bus IO=%04X IRQ=%d DMA=%d MaxFrameSize=%un",
  348. info->device_name, info->io_base, info->irq_level, info->dma_level,
  349.       info->max_frame_size );
  350. }
  351. #ifdef CONFIG_SYNCLINK_SYNCPPP
  352. #ifdef MODULE
  353. if (info->dosyncppp)
  354. #endif
  355. mgsl_sppp_init(info);
  356. #endif
  357. } /* end of mgsl_add_device() */
  358. /* mgsl_allocate_device()
  359.  * 
  360.  *  Allocate and initialize a device instance structure
  361.  * 
  362.  * Arguments: none
  363.  * Return Value: pointer to mgsl_struct if success, otherwise NULL
  364.  */
  365. struct mgsl_struct* mgsl_allocate_device()
  366. {
  367. struct mgsl_struct *info;
  368. info = (struct mgsl_struct *)kmalloc(sizeof(struct mgsl_struct),
  369.  GFP_KERNEL);
  370.  
  371. if (!info) {
  372. printk("Error can't allocate device instance datan");
  373. } else {
  374. memset(info, 0, sizeof(struct mgsl_struct));
  375. info->magic = MGSL_MAGIC;
  376. info->task.sync = 0;
  377. info->task.routine = mgsl_bh_handler;
  378. info->task.data    = info;
  379. info->max_frame_size = 4096;
  380. info->close_delay = 5*HZ/10;
  381. info->closing_wait = 30*HZ;
  382. init_waitqueue_head(&info->open_wait);
  383. init_waitqueue_head(&info->close_wait);
  384. init_waitqueue_head(&info->status_event_wait_q);
  385. init_waitqueue_head(&info->event_wait_q);
  386. spin_lock_init(&info->irq_spinlock);
  387. spin_lock_init(&info->netlock);
  388. memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
  389. info->idle_mode = HDLC_TXIDLE_FLAGS;
  390. info->num_tx_dma_buffers = 1;
  391. info->num_tx_holding_buffers = 0;
  392. }
  393. return info;
  394. } /* end of mgsl_allocate_device()*/
  395. /*
  396.  * perform tty device initialization
  397.  */
  398. int mgsl_init_tty(void);
  399. int mgsl_init_tty()
  400. {
  401. struct mgsl_struct *info;
  402. memset(serial_table,0,sizeof(struct tty_struct*)*MAX_TOTAL_DEVICES);
  403. memset(serial_termios,0,sizeof(struct termios*)*MAX_TOTAL_DEVICES);
  404. memset(serial_termios_locked,0,sizeof(struct termios*)*MAX_TOTAL_DEVICES);
  405. /* Initialize the tty_driver structure */
  406. memset(&serial_driver, 0, sizeof(struct tty_driver));
  407. serial_driver.magic = TTY_DRIVER_MAGIC;
  408. serial_driver.driver_name = "synclink";
  409. serial_driver.name = "ttySL";
  410. serial_driver.major = ttymajor;
  411. serial_driver.minor_start = 64;
  412. serial_driver.num = mgsl_device_count;
  413. serial_driver.type = TTY_DRIVER_TYPE_SERIAL;
  414. serial_driver.subtype = SERIAL_TYPE_NORMAL;
  415. serial_driver.init_termios = tty_std_termios;
  416. serial_driver.init_termios.c_cflag =
  417. B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  418. serial_driver.flags = TTY_DRIVER_REAL_RAW;
  419. serial_driver.refcount = &serial_refcount;
  420. serial_driver.table = serial_table;
  421. serial_driver.termios = serial_termios;
  422. serial_driver.termios_locked = serial_termios_locked;
  423. serial_driver.open = mgsl_open;
  424. serial_driver.close = mgsl_close;
  425. serial_driver.write = mgsl_write;
  426. serial_driver.put_char = mgsl_put_char;
  427. serial_driver.flush_chars = mgsl_flush_chars;
  428. serial_driver.write_room = mgsl_write_room;
  429. serial_driver.chars_in_buffer = mgsl_chars_in_buffer;
  430. serial_driver.flush_buffer = mgsl_flush_buffer;
  431. serial_driver.ioctl = mgsl_ioctl;
  432. serial_driver.throttle = mgsl_throttle;
  433. serial_driver.unthrottle = mgsl_unthrottle;
  434. serial_driver.send_xchar = mgsl_send_xchar;
  435. serial_driver.break_ctl = mgsl_break;
  436. serial_driver.wait_until_sent = mgsl_wait_until_sent;
  437.   serial_driver.read_proc = mgsl_read_proc;
  438. serial_driver.set_termios = mgsl_set_termios;
  439. serial_driver.stop = mgsl_stop;
  440. serial_driver.start = mgsl_start;
  441. serial_driver.hangup = mgsl_hangup;
  442. /*
  443.  * The callout device is just like normal device except for
  444.  * major number and the subtype code.
  445.  */
  446. callout_driver = serial_driver;
  447. callout_driver.name = "cuaSL";
  448. callout_driver.major = cuamajor;
  449. callout_driver.subtype = SERIAL_TYPE_CALLOUT;
  450. callout_driver.read_proc = 0;
  451. callout_driver.proc_entry = 0;
  452. if (tty_register_driver(&serial_driver) < 0)
  453. printk("%s(%d):Couldn't register serial drivern",
  454. __FILE__,__LINE__);
  455. if (tty_register_driver(&callout_driver) < 0)
  456. printk("%s(%d):Couldn't register callout drivern",
  457. __FILE__,__LINE__);
  458.   printk("%s %s, tty major#%d callout major#%dn",
  459. driver_name, driver_version,
  460. serial_driver.major, callout_driver.major);
  461. /* Propagate these values to all device instances */
  462. info = mgsl_device_list;
  463. while(info){
  464. info->callout_termios = callout_driver.init_termios;
  465. info->normal_termios  = serial_driver.init_termios;
  466. info = info->next_device;
  467. }
  468. return 0;
  469. }
  470. /* enumerate user specified ISA adapters
  471.  */
  472. int mgsl_enum_isa_devices()
  473. {
  474. struct mgsl_struct *info;
  475. int i;
  476. /* Check for user specified ISA devices */
  477. for (i=0 ;(i < MAX_ISA_DEVICES) && io[i] && irq[i]; i++){
  478. if ( debug_level >= DEBUG_LEVEL_INFO )
  479. printk("ISA device specified io=%04X,irq=%d,dma=%dn",
  480. io[i], irq[i], dma[i] );
  481. info = mgsl_allocate_device();
  482. if ( !info ) {
  483. /* error allocating device instance data */
  484. if ( debug_level >= DEBUG_LEVEL_ERROR )
  485. printk( "can't allocate device instance data.n");
  486. continue;
  487. }
  488. /* Copy user configuration info to device instance data */
  489. info->io_base = (unsigned int)io[i];
  490. info->irq_level = (unsigned int)irq[i];
  491. info->irq_level = irq_cannonicalize(info->irq_level);
  492. info->dma_level = (unsigned int)dma[i];
  493. info->bus_type = MGSL_BUS_TYPE_ISA;
  494. info->io_addr_size = 16;
  495. info->irq_flags = 0;
  496. mgsl_add_device( info );
  497. }
  498. return 0;
  499. }
  500. /* mgsl_init()
  501.  * 
  502.  *  Driver initialization entry point.
  503.  * 
  504.  * Arguments: None
  505.  * Return Value: 0 if success, otherwise error code
  506.  */
  507. int __init mgsl_init(void)
  508. {
  509. int rc;
  510. EXPORT_NO_SYMBOLS;
  511.   printk("%s %sn", driver_name, driver_version);
  512. mgsl_enum_isa_devices();
  513. pci_register_driver(&synclink_pci_driver);
  514. if ( !mgsl_device_list ) {
  515. printk("%s(%d):No SyncLink devices found.n",__FILE__,__LINE__);
  516. return -ENODEV;
  517. }
  518. if ((rc = mgsl_init_tty()))
  519. return rc;
  520. return 0;
  521. }
  522. static int __init synclink_init(void)
  523. {
  524. /* Uncomment this to kernel debug module.
  525.  * mgsl_get_text_ptr() leaves the .text address in eax
  526.  * which can be used with add-symbol-file with gdb.
  527.  */
  528. if (break_on_load) {
  529.   mgsl_get_text_ptr();
  530.    BREAKPOINT();
  531. }
  532. return mgsl_init();
  533. }
  534. static void __exit synclink_exit(void) 
  535. {
  536. unsigned long flags;
  537. int rc;
  538. struct mgsl_struct *info;
  539. struct mgsl_struct *tmp;
  540. printk("Unloading %s: %sn", driver_name, driver_version);
  541. save_flags(flags);
  542. cli();
  543. if ((rc = tty_unregister_driver(&serial_driver)))
  544. printk("%s(%d) failed to unregister tty driver err=%dn",
  545.        __FILE__,__LINE__,rc);
  546. if ((rc = tty_unregister_driver(&callout_driver)))
  547. printk("%s(%d) failed to unregister callout driver err=%dn",
  548.        __FILE__,__LINE__,rc);
  549. restore_flags(flags);
  550. info = mgsl_device_list;
  551. while(info) {
  552. #ifdef CONFIG_SYNCLINK_SYNCPPP
  553. if (info->dosyncppp)
  554. mgsl_sppp_delete(info);
  555. #endif
  556. mgsl_release_resources(info);
  557. tmp = info;
  558. info = info->next_device;
  559. kfree(tmp);
  560. }
  561. if (tmp_buf) {
  562. free_page((unsigned long) tmp_buf);
  563. tmp_buf = NULL;
  564. }
  565. pci_unregister_driver(&synclink_pci_driver);
  566. }
  567. module_init(synclink_init);
  568. module_exit(synclink_exit);
  569. /*
  570.  * usc_RTCmd()
  571.  *
  572.  * Issue a USC Receive/Transmit command to the
  573.  * Channel Command/Address Register (CCAR).
  574.  *
  575.  * Notes:
  576.  *
  577.  *    The command is encoded in the most significant 5 bits <15..11>
  578.  *    of the CCAR value. Bits <10..7> of the CCAR must be preserved
  579.  *    and Bits <6..0> must be written as zeros.
  580.  *
  581.  * Arguments:
  582.  *
  583.  *    info   pointer to device information structure
  584.  *    Cmd    command mask (use symbolic macros)
  585.  *
  586.  * Return Value:
  587.  *
  588.  *    None
  589.  */
  590. void usc_RTCmd( struct mgsl_struct *info, u16 Cmd )
  591. {
  592. /* output command to CCAR in bits <15..11> */
  593. /* preserve bits <10..7>, bits <6..0> must be zero */
  594. outw( Cmd + info->loopback_bits, info->io_base + CCAR );
  595. /* Read to flush write to CCAR */
  596. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  597. inw( info->io_base + CCAR );
  598. } /* end of usc_RTCmd() */
  599. /*
  600.  * usc_DmaCmd()
  601.  *
  602.  *    Issue a DMA command to the DMA Command/Address Register (DCAR).
  603.  *
  604.  * Arguments:
  605.  *
  606.  *    info   pointer to device information structure
  607.  *    Cmd    DMA command mask (usc_DmaCmd_XX Macros)
  608.  *
  609.  * Return Value:
  610.  *
  611.  *       None
  612.  */
  613. void usc_DmaCmd( struct mgsl_struct *info, u16 Cmd )
  614. {
  615. /* write command mask to DCAR */
  616. outw( Cmd + info->mbre_bit, info->io_base );
  617. /* Read to flush write to DCAR */
  618. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  619. inw( info->io_base );
  620. } /* end of usc_DmaCmd() */
  621. /*
  622.  * usc_OutDmaReg()
  623.  *
  624.  *    Write a 16-bit value to a USC DMA register
  625.  *
  626.  * Arguments:
  627.  *
  628.  *    info      pointer to device info structure
  629.  *    RegAddr   register address (number) for write
  630.  *    RegValue  16-bit value to write to register
  631.  *
  632.  * Return Value:
  633.  *
  634.  *    None
  635.  *
  636.  */
  637. void usc_OutDmaReg( struct mgsl_struct *info, u16 RegAddr, u16 RegValue )
  638. {
  639. /* Note: The DCAR is located at the adapter base address */
  640. /* Note: must preserve state of BIT8 in DCAR */
  641. outw( RegAddr + info->mbre_bit, info->io_base );
  642. outw( RegValue, info->io_base );
  643. /* Read to flush write to DCAR */
  644. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  645. inw( info->io_base );
  646. } /* end of usc_OutDmaReg() */
  647.  
  648. /*
  649.  * usc_InDmaReg()
  650.  *
  651.  *    Read a 16-bit value from a DMA register
  652.  *
  653.  * Arguments:
  654.  *
  655.  *    info     pointer to device info structure
  656.  *    RegAddr  register address (number) to read from
  657.  *
  658.  * Return Value:
  659.  *
  660.  *    The 16-bit value read from register
  661.  *
  662.  */
  663. u16 usc_InDmaReg( struct mgsl_struct *info, u16 RegAddr )
  664. {
  665. /* Note: The DCAR is located at the adapter base address */
  666. /* Note: must preserve state of BIT8 in DCAR */
  667. outw( RegAddr + info->mbre_bit, info->io_base );
  668. return inw( info->io_base );
  669. } /* end of usc_InDmaReg() */
  670. /*
  671.  *
  672.  * usc_OutReg()
  673.  *
  674.  *    Write a 16-bit value to a USC serial channel register 
  675.  *
  676.  * Arguments:
  677.  *
  678.  *    info      pointer to device info structure
  679.  *    RegAddr   register address (number) to write to
  680.  *    RegValue  16-bit value to write to register
  681.  *
  682.  * Return Value:
  683.  *
  684.  *    None
  685.  *
  686.  */
  687. void usc_OutReg( struct mgsl_struct *info, u16 RegAddr, u16 RegValue )
  688. {
  689. outw( RegAddr + info->loopback_bits, info->io_base + CCAR );
  690. outw( RegValue, info->io_base + CCAR );
  691. /* Read to flush write to CCAR */
  692. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  693. inw( info->io_base + CCAR );
  694. } /* end of usc_OutReg() */
  695. /*
  696.  * usc_InReg()
  697.  *
  698.  *    Reads a 16-bit value from a USC serial channel register
  699.  *
  700.  * Arguments:
  701.  *
  702.  *    info       pointer to device extension
  703.  *    RegAddr    register address (number) to read from
  704.  *
  705.  * Return Value:
  706.  *
  707.  *    16-bit value read from register
  708.  */
  709. u16 usc_InReg( struct mgsl_struct *info, u16 RegAddr )
  710. {
  711. outw( RegAddr + info->loopback_bits, info->io_base + CCAR );
  712. return inw( info->io_base + CCAR );
  713. } /* end of usc_InReg() */
  714. /* usc_set_sdlc_mode()
  715.  *
  716.  *    Set up the adapter for SDLC DMA communications.
  717.  *
  718.  * Arguments: info    pointer to device instance data
  719.  * Return Value:  NONE
  720.  */
  721. void usc_set_sdlc_mode( struct mgsl_struct *info )
  722. {
  723. u16 RegValue;
  724. int PreSL1660;
  725. /*
  726.  * determine if the IUSC on the adapter is pre-SL1660. If
  727.  * not, take advantage of the UnderWait feature of more
  728.  * modern chips. If an underrun occurs and this bit is set,
  729.  * the transmitter will idle the programmed idle pattern
  730.  * until the driver has time to service the underrun. Otherwise,
  731.  * the dma controller may get the cycles previously requested
  732.  * and begin transmitting queued tx data.
  733.  */
  734. usc_OutReg(info,TMCR,0x1f);
  735. RegValue=usc_InReg(info,TMDR);
  736. if ( RegValue == IUSC_PRE_SL1660 )
  737. PreSL1660 = 1;
  738. else
  739. PreSL1660 = 0;
  740.   if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
  741.   {
  742.      /*
  743.      ** Channel Mode Register (CMR)
  744.      **
  745.      ** <15..14>    10    Tx Sub Modes, Send Flag on Underrun
  746.      ** <13>        0     0 = Transmit Disabled (initially)
  747.      ** <12>        0     1 = Consecutive Idles share common 0
  748.      ** <11..8>     1110  Transmitter Mode = HDLC/SDLC Loop
  749.      ** <7..4>      0000  Rx Sub Modes, addr/ctrl field handling
  750.      ** <3..0>      0110  Receiver Mode = HDLC/SDLC
  751.      **
  752.      ** 1000 1110 0000 0110 = 0x8e06
  753.      */
  754.      RegValue = 0x8e06;
  755.  
  756.      /*--------------------------------------------------
  757.       * ignore user options for UnderRun Actions and
  758.       * preambles
  759.       *--------------------------------------------------*/
  760.   }
  761.   else
  762.   {
  763. /* Channel mode Register (CMR)
  764.  *
  765.  * <15..14>  00    Tx Sub modes, Underrun Action
  766.  * <13>      0     1 = Send Preamble before opening flag
  767.  * <12>      0     1 = Consecutive Idles share common 0
  768.  * <11..8>   0110  Transmitter mode = HDLC/SDLC
  769.  * <7..4>    0000  Rx Sub modes, addr/ctrl field handling
  770.  * <3..0>    0110  Receiver mode = HDLC/SDLC
  771.  *
  772.  * 0000 0110 0000 0110 = 0x0606
  773.  */
  774. if (info->params.mode == MGSL_MODE_RAW) {
  775. RegValue = 0x0001; /* Set Receive mode = external sync */
  776. usc_OutReg( info, IOCR, /* Set IOCR DCD is RxSync Detect Input */
  777. (unsigned short)((usc_InReg(info, IOCR) & ~(BIT13|BIT12)) | BIT12));
  778. /*
  779.  * TxSubMode:
  780.  *  CMR <15> 0 Don't send CRC on Tx Underrun
  781.  *  CMR <14> x undefined
  782.  *  CMR <13> 0 Send preamble before openning sync
  783.  *  CMR <12> 0 Send 8-bit syncs, 1=send Syncs per TxLength
  784.  *
  785.  * TxMode:
  786.  *  CMR <11-8) 0100 MonoSync
  787.  *
  788.  *  0x00 0100 xxxx xxxx  04xx
  789.  */
  790. RegValue |= 0x0400;
  791. }
  792. else {
  793. RegValue = 0x0606;
  794. if ( info->params.flags & HDLC_FLAG_UNDERRUN_ABORT15 )
  795. RegValue |= BIT14;
  796. else if ( info->params.flags & HDLC_FLAG_UNDERRUN_FLAG )
  797. RegValue |= BIT15;
  798. else if ( info->params.flags & HDLC_FLAG_UNDERRUN_CRC )
  799. RegValue |= BIT15 + BIT14;
  800. }
  801. if ( info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE )
  802. RegValue |= BIT13;
  803. }
  804. if ( info->params.mode == MGSL_MODE_HDLC &&
  805. (info->params.flags & HDLC_FLAG_SHARE_ZERO) )
  806. RegValue |= BIT12;
  807. if ( info->params.addr_filter != 0xff )
  808. {
  809. /* set up receive address filtering */
  810. usc_OutReg( info, RSR, info->params.addr_filter );
  811. RegValue |= BIT4;
  812. }
  813. usc_OutReg( info, CMR, RegValue );
  814. info->cmr_value = RegValue;
  815. /* Receiver mode Register (RMR)
  816.  *
  817.  * <15..13>  000    encoding
  818.  * <12..11>  00     FCS = 16bit CRC CCITT (x15 + x12 + x5 + 1)
  819.  * <10>      1      1 = Set CRC to all 1s (use for SDLC/HDLC)
  820.  * <9>       0      1 = Include Receive chars in CRC
  821.  * <8>       1      1 = Use Abort/PE bit as abort indicator
  822.  * <7..6>    00     Even parity
  823.  * <5>       0      parity disabled
  824.  * <4..2>    000    Receive Char Length = 8 bits
  825.  * <1..0>    00     Disable Receiver
  826.  *
  827.  * 0000 0101 0000 0000 = 0x0500
  828.  */
  829. RegValue = 0x0500;
  830. switch ( info->params.encoding ) {
  831. case HDLC_ENCODING_NRZB:               RegValue |= BIT13; break;
  832. case HDLC_ENCODING_NRZI_MARK:          RegValue |= BIT14; break;
  833. case HDLC_ENCODING_NRZI_SPACE:        RegValue |= BIT14 + BIT13; break;
  834. case HDLC_ENCODING_BIPHASE_MARK:       RegValue |= BIT15; break;
  835. case HDLC_ENCODING_BIPHASE_SPACE:      RegValue |= BIT15 + BIT13; break;
  836. case HDLC_ENCODING_BIPHASE_LEVEL:      RegValue |= BIT15 + BIT14; break;
  837. case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14 + BIT13; break;
  838. }
  839. if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_16_CCITT )
  840. RegValue |= BIT9;
  841. else if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_32_CCITT )
  842. RegValue |= ( BIT12 | BIT10 | BIT9 );
  843. usc_OutReg( info, RMR, RegValue );
  844. /* Set the Receive count Limit Register (RCLR) to 0xffff. */
  845. /* When an opening flag of an SDLC frame is recognized the */
  846. /* Receive Character count (RCC) is loaded with the value in */
  847. /* RCLR. The RCC is decremented for each received byte.  The */
  848. /* value of RCC is stored after the closing flag of the frame */
  849. /* allowing the frame size to be computed. */
  850. usc_OutReg( info, RCLR, RCLRVALUE );
  851. usc_RCmd( info, RCmd_SelectRicrdma_level );
  852. /* Receive Interrupt Control Register (RICR)
  853.  *
  854.  * <15..8> ? RxFIFO DMA Request Level
  855.  * <7> 0 Exited Hunt IA (Interrupt Arm)
  856.  * <6> 0 Idle Received IA
  857.  * <5> 0 Break/Abort IA
  858.  * <4> 0 Rx Bound IA
  859.  * <3> 1 Queued status reflects oldest 2 bytes in FIFO
  860.  * <2> 0 Abort/PE IA
  861.  * <1> 1 Rx Overrun IA
  862.  * <0> 0 Select TC0 value for readback
  863.  *
  864.  * 0000 0000 0000 1000 = 0x000a
  865.  */
  866. /* Carry over the Exit Hunt and Idle Received bits */
  867. /* in case they have been armed by usc_ArmEvents.   */
  868. RegValue = usc_InReg( info, RICR ) & 0xc0;
  869. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  870. usc_OutReg( info, RICR, (u16)(0x030a | RegValue) );
  871. else
  872. usc_OutReg( info, RICR, (u16)(0x140a | RegValue) );
  873. /* Unlatch all Rx status bits and clear Rx status IRQ Pending */
  874. usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
  875. usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
  876. /* Transmit mode Register (TMR)
  877.  *
  878.  * <15..13> 000 encoding
  879.  * <12..11> 00 FCS = 16bit CRC CCITT (x15 + x12 + x5 + 1)
  880.  * <10> 1 1 = Start CRC as all 1s (use for SDLC/HDLC)
  881.  * <9> 0 1 = Tx CRC Enabled
  882.  * <8> 0 1 = Append CRC to end of transmit frame
  883.  * <7..6> 00 Transmit parity Even
  884.  * <5> 0 Transmit parity Disabled
  885.  * <4..2> 000 Tx Char Length = 8 bits
  886.  * <1..0> 00 Disable Transmitter
  887.  *
  888.  *  0000 0100 0000 0000 = 0x0400
  889.  */
  890. RegValue = 0x0400;
  891. switch ( info->params.encoding ) {
  892. case HDLC_ENCODING_NRZB:               RegValue |= BIT13; break;
  893. case HDLC_ENCODING_NRZI_MARK:          RegValue |= BIT14; break;
  894. case HDLC_ENCODING_NRZI_SPACE:         RegValue |= BIT14 + BIT13; break;
  895. case HDLC_ENCODING_BIPHASE_MARK:       RegValue |= BIT15; break;
  896. case HDLC_ENCODING_BIPHASE_SPACE:      RegValue |= BIT15 + BIT13; break;
  897. case HDLC_ENCODING_BIPHASE_LEVEL:      RegValue |= BIT15 + BIT14; break;
  898. case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT15 + BIT14 + BIT13; break;
  899. }
  900. if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_16_CCITT )
  901. RegValue |= BIT9 + BIT8;
  902. else if ( (info->params.crc_type & HDLC_CRC_MASK) == HDLC_CRC_32_CCITT )
  903. RegValue |= ( BIT12 | BIT10 | BIT9 | BIT8);
  904. usc_OutReg( info, TMR, RegValue );
  905. usc_set_txidle( info );
  906. usc_TCmd( info, TCmd_SelectTicrdma_level );
  907. /* Transmit Interrupt Control Register (TICR)
  908.  *
  909.  * <15..8> ? Transmit FIFO DMA Level
  910.  * <7> 0 Present IA (Interrupt Arm)
  911.  * <6> 0 Idle Sent IA
  912.  * <5> 1 Abort Sent IA
  913.  * <4> 1 EOF/EOM Sent IA
  914.  * <3> 0 CRC Sent IA
  915.  * <2> 1 1 = Wait for SW Trigger to Start Frame
  916.  * <1> 1 Tx Underrun IA
  917.  * <0> 0 TC0 constant on read back
  918.  *
  919.  * 0000 0000 0011 0110 = 0x0036
  920.  */
  921. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  922. usc_OutReg( info, TICR, 0x0736 );
  923. else
  924. usc_OutReg( info, TICR, 0x1436 );
  925. usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
  926. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
  927. /*
  928. ** Transmit Command/Status Register (TCSR)
  929. **
  930. ** <15..12> 0000 TCmd
  931. ** <11>  0/1 UnderWait
  932. ** <10..08> 000 TxIdle
  933. ** <7> x PreSent
  934. ** <6>          x IdleSent
  935. ** <5>          x AbortSent
  936. ** <4>          x EOF/EOM Sent
  937. ** <3>          x CRC Sent
  938. ** <2>          x All Sent
  939. ** <1>          x TxUnder
  940. ** <0>          x TxEmpty
  941. ** 
  942. ** 0000 0000 0000 0000 = 0x0000
  943. */
  944. info->tcsr_value = 0;
  945. if ( !PreSL1660 )
  946. info->tcsr_value |= TCSR_UNDERWAIT;
  947. usc_OutReg( info, TCSR, info->tcsr_value );
  948. /* Clock mode Control Register (CMCR)
  949.  *
  950.  * <15..14> 00 counter 1 Source = Disabled
  951.  * <13..12>  00 counter 0 Source = Disabled
  952.  * <11..10>  11 BRG1 Input is TxC Pin
  953.  * <9..8> 11 BRG0 Input is TxC Pin
  954.  * <7..6> 01 DPLL Input is BRG1 Output
  955.  * <5..3> XXX TxCLK comes from Port 0
  956.  * <2..0>    XXX RxCLK comes from Port 1
  957.  *
  958.  * 0000 1111 0111 0111 = 0x0f77
  959.  */
  960. RegValue = 0x0f40;
  961. if ( info->params.flags & HDLC_FLAG_RXC_DPLL )
  962. RegValue |= 0x0003; /* RxCLK from DPLL */
  963. else if ( info->params.flags & HDLC_FLAG_RXC_BRG )
  964. RegValue |= 0x0004; /* RxCLK from BRG0 */
  965.   else if ( info->params.flags & HDLC_FLAG_RXC_TXCPIN)
  966.   RegValue |= 0x0006; /* RxCLK from TXC Input */
  967. else
  968. RegValue |= 0x0007; /* RxCLK from Port1 */
  969. if ( info->params.flags & HDLC_FLAG_TXC_DPLL )
  970. RegValue |= 0x0018; /* TxCLK from DPLL */
  971. else if ( info->params.flags & HDLC_FLAG_TXC_BRG )
  972. RegValue |= 0x0020; /* TxCLK from BRG0 */
  973.   else if ( info->params.flags & HDLC_FLAG_TXC_RXCPIN)
  974.   RegValue |= 0x0038; /* RxCLK from TXC Input */
  975. else
  976. RegValue |= 0x0030; /* TxCLK from Port0 */
  977. usc_OutReg( info, CMCR, RegValue );
  978. /* Hardware Configuration Register (HCR)
  979.  *
  980.  * <15..14> 00 CTR0 Divisor:00=32,01=16,10=8,11=4
  981.  * <13> 0 CTR1DSel:0=CTR0Div determines CTR0Div
  982.  * <12> 0 CVOK:0=report code violation in biphase
  983.  * <11..10> 00 DPLL Divisor:00=32,01=16,10=8,11=4
  984.  * <9..8> XX DPLL mode:00=disable,01=NRZ,10=Biphase,11=Biphase Level
  985.  * <7..6> 00 reserved
  986.  * <5> 0 BRG1 mode:0=continuous,1=single cycle
  987.  * <4> X BRG1 Enable
  988.  * <3..2> 00 reserved
  989.  * <1> 0 BRG0 mode:0=continuous,1=single cycle
  990.  * <0> 0 BRG0 Enable
  991.  */
  992. RegValue = 0x0000;
  993. if ( info->params.flags & (HDLC_FLAG_RXC_DPLL + HDLC_FLAG_TXC_DPLL) ) {
  994. u32 XtalSpeed;
  995. u32 DpllDivisor;
  996. u16 Tc;
  997. /*  DPLL is enabled. Use BRG1 to provide continuous reference clock  */
  998. /*  for DPLL. DPLL mode in HCR is dependent on the encoding used. */
  999. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  1000. XtalSpeed = 11059200;
  1001. else
  1002. XtalSpeed = 14745600;
  1003. if ( info->params.flags & HDLC_FLAG_DPLL_DIV16 ) {
  1004. DpllDivisor = 16;
  1005. RegValue |= BIT10;
  1006. }
  1007. else if ( info->params.flags & HDLC_FLAG_DPLL_DIV8 ) {
  1008. DpllDivisor = 8;
  1009. RegValue |= BIT11;
  1010. }
  1011. else
  1012. DpllDivisor = 32;
  1013. /*  Tc = (Xtal/Speed) - 1 */
  1014. /*  If twice the remainder of (Xtal/Speed) is greater than Speed */
  1015. /*  then rounding up gives a more precise time constant. Instead */
  1016. /*  of rounding up and then subtracting 1 we just don't subtract */
  1017. /*  the one in this case. */
  1018.   /*--------------------------------------------------
  1019.    * ejz: for DPLL mode, application should use the
  1020.    * same clock speed as the partner system, even 
  1021.    * though clocking is derived from the input RxData.
  1022.    * In case the user uses a 0 for the clock speed,
  1023.    * default to 0xffffffff and don't try to divide by
  1024.    * zero
  1025.    *--------------------------------------------------*/
  1026.   if ( info->params.clock_speed )
  1027.   {
  1028. Tc = (u16)((XtalSpeed/DpllDivisor)/info->params.clock_speed);
  1029. if ( !((((XtalSpeed/DpllDivisor) % info->params.clock_speed) * 2)
  1030.        / info->params.clock_speed) )
  1031. Tc--;
  1032.   }
  1033.   else
  1034.   Tc = -1;
  1035.     
  1036. /* Write 16-bit Time Constant for BRG1 */
  1037. usc_OutReg( info, TC1R, Tc );
  1038. RegValue |= BIT4; /* enable BRG1 */
  1039. switch ( info->params.encoding ) {
  1040. case HDLC_ENCODING_NRZ:
  1041. case HDLC_ENCODING_NRZB:
  1042. case HDLC_ENCODING_NRZI_MARK:
  1043. case HDLC_ENCODING_NRZI_SPACE: RegValue |= BIT8; break;
  1044. case HDLC_ENCODING_BIPHASE_MARK:
  1045. case HDLC_ENCODING_BIPHASE_SPACE: RegValue |= BIT9; break;
  1046. case HDLC_ENCODING_BIPHASE_LEVEL:
  1047. case HDLC_ENCODING_DIFF_BIPHASE_LEVEL: RegValue |= BIT9 + BIT8; break;
  1048. }
  1049. }
  1050. usc_OutReg( info, HCR, RegValue );
  1051. /* Channel Control/status Register (CCSR)
  1052.  *
  1053.  * <15> X RCC FIFO Overflow status (RO)
  1054.  * <14> X RCC FIFO Not Empty status (RO)
  1055.  * <13> 0 1 = Clear RCC FIFO (WO)
  1056.  * <12> X DPLL Sync (RW)
  1057.  * <11> X DPLL 2 Missed Clocks status (RO)
  1058.  * <10> X DPLL 1 Missed Clock status (RO)
  1059.  * <9..8> 00 DPLL Resync on rising and falling edges (RW)
  1060.  * <7> X SDLC Loop On status (RO)
  1061.  * <6> X SDLC Loop Send status (RO)
  1062.  * <5> 1 Bypass counters for TxClk and RxClk (RW)
  1063.  * <4..2>    000 Last Char of SDLC frame has 8 bits (RW)
  1064.  * <1..0>    00 reserved
  1065.  *
  1066.  * 0000 0000 0010 0000 = 0x0020
  1067.  */
  1068. usc_OutReg( info, CCSR, 0x1020 );
  1069. if ( info->params.flags & HDLC_FLAG_AUTO_CTS ) {
  1070. usc_OutReg( info, SICR,
  1071.     (u16)(usc_InReg(info,SICR) | SICR_CTS_INACTIVE) );
  1072. }
  1073. /* enable Master Interrupt Enable bit (MIE) */
  1074. usc_EnableMasterIrqBit( info );
  1075. usc_ClearIrqPendingBits( info, RECEIVE_STATUS + RECEIVE_DATA +
  1076. TRANSMIT_STATUS + TRANSMIT_DATA );
  1077. info->mbre_bit = 0;
  1078. outw( 0, info->io_base );  /* clear Master Bus Enable (DCAR) */
  1079. usc_DmaCmd( info, DmaCmd_ResetAllChannels ); /* disable both DMA channels */
  1080. info->mbre_bit = BIT8;
  1081. outw( BIT8, info->io_base ); /* set Master Bus Enable (DCAR) */
  1082. /* Enable DMAEN (Port 7, Bit 14) */
  1083. /* This connects the DMA request signal to the ISA bus */
  1084. /* on the ISA adapter. This has no effect for the PCI adapter */
  1085. usc_OutReg( info, PCR, (u16)((usc_InReg(info, PCR) | BIT15) & ~BIT14) );
  1086. /* DMA Control Register (DCR)
  1087.  *
  1088.  * <15..14> 10 Priority mode = Alternating Tx/Rx
  1089.  * 01 Rx has priority
  1090.  * 00 Tx has priority
  1091.  *
  1092.  * <13> 1 Enable Priority Preempt per DCR<15..14>
  1093.  * (WARNING DCR<11..10> must be 00 when this is 1)
  1094.  * 0 Choose activate channel per DCR<11..10>
  1095.  *
  1096.  * <12> 0 Little Endian for Array/List
  1097.  * <11..10> 00 Both Channels can use each bus grant
  1098.  * <9..6> 0000 reserved
  1099.  * <5> 0 7 CLK - Minimum Bus Re-request Interval
  1100.  * <4> 0 1 = drive D/C and S/D pins
  1101.  * <3> 1 1 = Add one wait state to all DMA cycles.
  1102.  * <2> 0 1 = Strobe /UAS on every transfer.
  1103.  * <1..0> 11 Addr incrementing only affects LS24 bits
  1104.  *
  1105.  * 0110 0000 0000 1011 = 0x600b
  1106.  */
  1107. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  1108. /* PCI adapter does not need DMA wait state */
  1109. usc_OutDmaReg( info, DCR, 0xa00b );
  1110. }
  1111. else
  1112. usc_OutDmaReg( info, DCR, 0x800b );
  1113. /* Receive DMA mode Register (RDMR)
  1114.  *
  1115.  * <15..14> 11 DMA mode = Linked List Buffer mode
  1116.  * <13> 1 RSBinA/L = store Rx status Block in Arrary/List entry
  1117.  * <12> 1 Clear count of List Entry after fetching
  1118.  * <11..10> 00 Address mode = Increment
  1119.  * <9> 1 Terminate Buffer on RxBound
  1120.  * <8> 0 Bus Width = 16bits
  1121.  * <7..0> ? status Bits (write as 0s)
  1122.  *
  1123.  * 1111 0010 0000 0000 = 0xf200
  1124.  */
  1125. usc_OutDmaReg( info, RDMR, 0xf200 );
  1126. /* Transmit DMA mode Register (TDMR)
  1127.  *
  1128.  * <15..14> 11 DMA mode = Linked List Buffer mode
  1129.  * <13> 1 TCBinA/L = fetch Tx Control Block from List entry
  1130.  * <12> 1 Clear count of List Entry after fetching
  1131.  * <11..10> 00 Address mode = Increment
  1132.  * <9> 1 Terminate Buffer on end of frame
  1133.  * <8> 0 Bus Width = 16bits
  1134.  * <7..0> ? status Bits (Read Only so write as 0)
  1135.  *
  1136.  * 1111 0010 0000 0000 = 0xf200
  1137.  */
  1138. usc_OutDmaReg( info, TDMR, 0xf200 );
  1139. /* DMA Interrupt Control Register (DICR)
  1140.  *
  1141.  * <15> 1 DMA Interrupt Enable
  1142.  * <14> 0 1 = Disable IEO from USC
  1143.  * <13> 0 1 = Don't provide vector during IntAck
  1144.  * <12> 1 1 = Include status in Vector
  1145.  * <10..2> 0 reserved, Must be 0s
  1146.  * <1> 0 1 = Rx DMA Interrupt Enabled
  1147.  * <0> 0 1 = Tx DMA Interrupt Enabled
  1148.  *
  1149.  * 1001 0000 0000 0000 = 0x9000
  1150.  */
  1151. usc_OutDmaReg( info, DICR, 0x9000 );
  1152. usc_InDmaReg( info, RDMR ); /* clear pending receive DMA IRQ bits */
  1153. usc_InDmaReg( info, TDMR ); /* clear pending transmit DMA IRQ bits */
  1154. usc_OutDmaReg( info, CDIR, 0x0303 ); /* clear IUS and Pending for Tx and Rx */
  1155. /* Channel Control Register (CCR)
  1156.  *
  1157.  * <15..14> 10 Use 32-bit Tx Control Blocks (TCBs)
  1158.  * <13> 0 Trigger Tx on SW Command Disabled
  1159.  * <12> 0 Flag Preamble Disabled
  1160.  * <11..10> 00 Preamble Length
  1161.  * <9..8> 00 Preamble Pattern
  1162.  * <7..6> 10 Use 32-bit Rx status Blocks (RSBs)
  1163.  * <5> 0 Trigger Rx on SW Command Disabled
  1164.  * <4..0> 0 reserved
  1165.  *
  1166.  * 1000 0000 1000 0000 = 0x8080
  1167.  */
  1168. RegValue = 0x8080;
  1169. switch ( info->params.preamble_length ) {
  1170. case HDLC_PREAMBLE_LENGTH_16BITS: RegValue |= BIT10; break;
  1171. case HDLC_PREAMBLE_LENGTH_32BITS: RegValue |= BIT11; break;
  1172. case HDLC_PREAMBLE_LENGTH_64BITS: RegValue |= BIT11 + BIT10; break;
  1173. }
  1174. switch ( info->params.preamble ) {
  1175. case HDLC_PREAMBLE_PATTERN_FLAGS: RegValue |= BIT8 + BIT12; break;
  1176. case HDLC_PREAMBLE_PATTERN_ONES:  RegValue |= BIT8; break;
  1177. case HDLC_PREAMBLE_PATTERN_10:    RegValue |= BIT9; break;
  1178. case HDLC_PREAMBLE_PATTERN_01:    RegValue |= BIT9 + BIT8; break;
  1179. }
  1180. usc_OutReg( info, CCR, RegValue );
  1181. /*
  1182.  * Burst/Dwell Control Register
  1183.  *
  1184.  * <15..8> 0x20 Maximum number of transfers per bus grant
  1185.  * <7..0> 0x00 Maximum number of clock cycles per bus grant
  1186.  */
  1187. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  1188. /* don't limit bus occupancy on PCI adapter */
  1189. usc_OutDmaReg( info, BDCR, 0x0000 );
  1190. }
  1191. else
  1192. usc_OutDmaReg( info, BDCR, 0x2000 );
  1193. usc_stop_transmitter(info);
  1194. usc_stop_receiver(info);
  1195. } /* end of usc_set_sdlc_mode() */
  1196. /* usc_enable_loopback()
  1197.  *
  1198.  * Set the 16C32 for internal loopback mode.
  1199.  * The TxCLK and RxCLK signals are generated from the BRG0 and
  1200.  * the TxD is looped back to the RxD internally.
  1201.  *
  1202.  * Arguments: info pointer to device instance data
  1203.  * enable 1 = enable loopback, 0 = disable
  1204.  * Return Value: None
  1205.  */
  1206. void usc_enable_loopback(struct mgsl_struct *info, int enable)
  1207. {
  1208. if (enable) {
  1209. /* blank external TXD output */
  1210. usc_OutReg(info,IOCR,usc_InReg(info,IOCR) | (BIT7+BIT6));
  1211. /* Clock mode Control Register (CMCR)
  1212.  *
  1213.  * <15..14> 00 counter 1 Disabled
  1214.  * <13..12>  00 counter 0 Disabled
  1215.  * <11..10>  11 BRG1 Input is TxC Pin
  1216.  * <9..8> 11 BRG0 Input is TxC Pin
  1217.  * <7..6> 01 DPLL Input is BRG1 Output
  1218.  * <5..3> 100 TxCLK comes from BRG0
  1219.  * <2..0>    100 RxCLK comes from BRG0
  1220.  *
  1221.  * 0000 1111 0110 0100 = 0x0f64
  1222.  */
  1223. usc_OutReg( info, CMCR, 0x0f64 );
  1224. /* Write 16-bit Time Constant for BRG0 */
  1225. /* use clock speed if available, otherwise use 8 for diagnostics */
  1226. if (info->params.clock_speed) {
  1227. if (info->bus_type == MGSL_BUS_TYPE_PCI)
  1228. usc_OutReg(info, TC0R, (u16)((11059200/info->params.clock_speed)-1));
  1229. else
  1230. usc_OutReg(info, TC0R, (u16)((14745600/info->params.clock_speed)-1));
  1231. } else
  1232. usc_OutReg(info, TC0R, (u16)8);
  1233. /* Hardware Configuration Register (HCR) Clear Bit 1, BRG0
  1234.    mode = Continuous Set Bit 0 to enable BRG0.  */
  1235. usc_OutReg( info, HCR, (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
  1236. /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
  1237. usc_OutReg(info, IOCR, (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004));
  1238. /* set Internal Data loopback mode */
  1239. info->loopback_bits = 0x300;
  1240. outw( 0x0300, info->io_base + CCAR );
  1241. } else {
  1242. /* enable external TXD output */
  1243. usc_OutReg(info,IOCR,usc_InReg(info,IOCR) & ~(BIT7+BIT6));
  1244. /* clear Internal Data loopback mode */
  1245. info->loopback_bits = 0;
  1246. outw( 0,info->io_base + CCAR );
  1247. }
  1248. } /* end of usc_enable_loopback() */
  1249. /* usc_enable_aux_clock()
  1250.  *
  1251.  * Enabled the AUX clock output at the specified frequency.
  1252.  *
  1253.  * Arguments:
  1254.  *
  1255.  * info pointer to device extension
  1256.  * data_rate data rate of clock in bits per second
  1257.  * A data rate of 0 disables the AUX clock.
  1258.  *
  1259.  * Return Value: None
  1260.  */
  1261. void usc_enable_aux_clock( struct mgsl_struct *info, u32 data_rate )
  1262. {
  1263. u32 XtalSpeed;
  1264. u16 Tc;
  1265. if ( data_rate ) {
  1266. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  1267. XtalSpeed = 11059200;
  1268. else
  1269. XtalSpeed = 14745600;
  1270. /* Tc = (Xtal/Speed) - 1 */
  1271. /* If twice the remainder of (Xtal/Speed) is greater than Speed */
  1272. /* then rounding up gives a more precise time constant. Instead */
  1273. /* of rounding up and then subtracting 1 we just don't subtract */
  1274. /* the one in this case. */
  1275. Tc = (u16)(XtalSpeed/data_rate);
  1276. if ( !(((XtalSpeed % data_rate) * 2) / data_rate) )
  1277. Tc--;
  1278. /* Write 16-bit Time Constant for BRG0 */
  1279. usc_OutReg( info, TC0R, Tc );
  1280. /*
  1281.  * Hardware Configuration Register (HCR)
  1282.  * Clear Bit 1, BRG0 mode = Continuous
  1283.  * Set Bit 0 to enable BRG0.
  1284.  */
  1285. usc_OutReg( info, HCR, (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
  1286. /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
  1287. usc_OutReg( info, IOCR, (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004) );
  1288. } else {
  1289. /* data rate == 0 so turn off BRG0 */
  1290. usc_OutReg( info, HCR, (u16)(usc_InReg( info, HCR ) & ~BIT0) );
  1291. }
  1292. } /* end of usc_enable_aux_clock() */
  1293. /*
  1294.  *
  1295.  * usc_process_rxoverrun_sync()
  1296.  *
  1297.  * This function processes a receive overrun by resetting the
  1298.  * receive DMA buffers and issuing a Purge Rx FIFO command
  1299.  * to allow the receiver to continue receiving.
  1300.  *
  1301.  * Arguments:
  1302.  *
  1303.  * info pointer to device extension
  1304.  *
  1305.  * Return Value: None
  1306.  */
  1307. void usc_process_rxoverrun_sync( struct mgsl_struct *info )
  1308. {
  1309. int start_index;
  1310. int end_index;
  1311. int frame_start_index;
  1312. int start_of_frame_found = FALSE;
  1313. int end_of_frame_found = FALSE;
  1314. int reprogram_dma = FALSE;
  1315. DMABUFFERENTRY *buffer_list = info->rx_buffer_list;
  1316. u32 phys_addr;
  1317. usc_DmaCmd( info, DmaCmd_PauseRxChannel );
  1318. usc_RCmd( info, RCmd_EnterHuntmode );
  1319. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1320. /* CurrentRxBuffer points to the 1st buffer of the next */
  1321. /* possibly available receive frame. */
  1322. frame_start_index = start_index = end_index = info->current_rx_buffer;
  1323. /* Search for an unfinished string of buffers. This means */
  1324. /* that a receive frame started (at least one buffer with */
  1325. /* count set to zero) but there is no terminiting buffer */
  1326. /* (status set to non-zero). */
  1327. while( !buffer_list[end_index].count )
  1328. {
  1329. /* Count field has been reset to zero by 16C32. */
  1330. /* This buffer is currently in use. */
  1331. if ( !start_of_frame_found )
  1332. {
  1333. start_of_frame_found = TRUE;
  1334. frame_start_index = end_index;
  1335. end_of_frame_found = FALSE;
  1336. }
  1337. if ( buffer_list[end_index].status )
  1338. {
  1339. /* Status field has been set by 16C32. */
  1340. /* This is the last buffer of a received frame. */
  1341. /* We want to leave the buffers for this frame intact. */
  1342. /* Move on to next possible frame. */
  1343. start_of_frame_found = FALSE;
  1344. end_of_frame_found = TRUE;
  1345. }
  1346.    /* advance to next buffer entry in linked list */
  1347.    end_index++;
  1348.    if ( end_index == info->rx_buffer_count )
  1349.    end_index = 0;
  1350. if ( start_index == end_index )
  1351. {
  1352. /* The entire list has been searched with all Counts == 0 and */
  1353. /* all Status == 0. The receive buffers are */
  1354. /* completely screwed, reset all receive buffers! */
  1355. mgsl_reset_rx_dma_buffers( info );
  1356. frame_start_index = 0;
  1357. start_of_frame_found = FALSE;
  1358. reprogram_dma = TRUE;
  1359. break;
  1360. }
  1361. }
  1362. if ( start_of_frame_found && !end_of_frame_found )
  1363. {
  1364. /* There is an unfinished string of receive DMA buffers */
  1365. /* as a result of the receiver overrun. */
  1366. /* Reset the buffers for the unfinished frame */
  1367. /* and reprogram the receive DMA controller to start */
  1368. /* at the 1st buffer of unfinished frame. */
  1369. start_index = frame_start_index;
  1370. do
  1371. {
  1372. *((unsigned long *)&(info->rx_buffer_list[start_index++].count)) = DMABUFFERSIZE;
  1373.    /* Adjust index for wrap around. */
  1374.    if ( start_index == info->rx_buffer_count )
  1375.    start_index = 0;
  1376. } while( start_index != end_index );
  1377. reprogram_dma = TRUE;
  1378. }
  1379. if ( reprogram_dma )
  1380. {
  1381. usc_UnlatchRxstatusBits(info,RXSTATUS_ALL);
  1382. usc_ClearIrqPendingBits(info, RECEIVE_DATA|RECEIVE_STATUS);
  1383. usc_UnlatchRxstatusBits(info, RECEIVE_DATA|RECEIVE_STATUS);
  1384. usc_EnableReceiver(info,DISABLE_UNCONDITIONAL);
  1385. /* This empties the receive FIFO and loads the RCC with RCLR */
  1386. usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
  1387. /* program 16C32 with physical address of 1st DMA buffer entry */
  1388. phys_addr = info->rx_buffer_list[frame_start_index].phys_entry;
  1389. usc_OutDmaReg( info, NRARL, (u16)phys_addr );
  1390. usc_OutDmaReg( info, NRARU, (u16)(phys_addr >> 16) );
  1391. usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
  1392. usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
  1393. usc_EnableInterrupts( info, RECEIVE_STATUS );
  1394. /* 1. Arm End of Buffer (EOB) Receive DMA Interrupt (BIT2 of RDIAR) */
  1395. /* 2. Enable Receive DMA Interrupts (BIT1 of DICR) */
  1396. usc_OutDmaReg( info, RDIAR, BIT3 + BIT2 );
  1397. usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT1) );
  1398. usc_DmaCmd( info, DmaCmd_InitRxChannel );
  1399. if ( info->params.flags & HDLC_FLAG_AUTO_DCD )
  1400. usc_EnableReceiver(info,ENABLE_AUTO_DCD);
  1401. else
  1402. usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
  1403. }
  1404. else
  1405. {
  1406. /* This empties the receive FIFO and loads the RCC with RCLR */
  1407. usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
  1408. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1409. }
  1410. } /* end of usc_process_rxoverrun_sync() */
  1411. /* usc_stop_receiver()
  1412.  *
  1413.  * Disable USC receiver
  1414.  *
  1415.  * Arguments: info pointer to device instance data
  1416.  * Return Value: None
  1417.  */
  1418. void usc_stop_receiver( struct mgsl_struct *info )
  1419. {
  1420. if (debug_level >= DEBUG_LEVEL_ISR)
  1421. printk("%s(%d):usc_stop_receiver(%s)n",
  1422.  __FILE__,__LINE__, info->device_name );
  1423.  
  1424. /* Disable receive DMA channel. */
  1425. /* This also disables receive DMA channel interrupts */
  1426. usc_DmaCmd( info, DmaCmd_ResetRxChannel );
  1427. usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
  1428. usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
  1429. usc_DisableInterrupts( info, RECEIVE_DATA + RECEIVE_STATUS );
  1430. usc_EnableReceiver(info,DISABLE_UNCONDITIONAL);
  1431. /* This empties the receive FIFO and loads the RCC with RCLR */
  1432. usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
  1433. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1434. info->rx_enabled = 0;
  1435. info->rx_overflow = 0;
  1436. } /* end of stop_receiver() */
  1437. /* usc_start_receiver()
  1438.  *
  1439.  * Enable the USC receiver 
  1440.  *
  1441.  * Arguments: info pointer to device instance data
  1442.  * Return Value: None
  1443.  */
  1444. void usc_start_receiver( struct mgsl_struct *info )
  1445. {
  1446. u32 phys_addr;
  1447. if (debug_level >= DEBUG_LEVEL_ISR)
  1448. printk("%s(%d):usc_start_receiver(%s)n",
  1449.  __FILE__,__LINE__, info->device_name );
  1450. mgsl_reset_rx_dma_buffers( info );
  1451. usc_stop_receiver( info );
  1452. usc_OutReg( info, CCSR, (u16)(usc_InReg(info,CCSR) | BIT13) );
  1453. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1454. if ( info->params.mode == MGSL_MODE_HDLC ||
  1455. info->params.mode == MGSL_MODE_RAW ) {
  1456. /* DMA mode Transfers */
  1457. /* Program the DMA controller. */
  1458. /* Enable the DMA controller end of buffer interrupt. */
  1459. /* program 16C32 with physical address of 1st DMA buffer entry */
  1460. phys_addr = info->rx_buffer_list[0].phys_entry;
  1461. usc_OutDmaReg( info, NRARL, (u16)phys_addr );
  1462. usc_OutDmaReg( info, NRARU, (u16)(phys_addr >> 16) );
  1463. usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
  1464. usc_ClearIrqPendingBits( info, RECEIVE_DATA + RECEIVE_STATUS );
  1465. usc_EnableInterrupts( info, RECEIVE_STATUS );
  1466. /* 1. Arm End of Buffer (EOB) Receive DMA Interrupt (BIT2 of RDIAR) */
  1467. /* 2. Enable Receive DMA Interrupts (BIT1 of DICR) */
  1468. usc_OutDmaReg( info, RDIAR, BIT3 + BIT2 );
  1469. usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT1) );
  1470. usc_DmaCmd( info, DmaCmd_InitRxChannel );
  1471. if ( info->params.flags & HDLC_FLAG_AUTO_DCD )
  1472. usc_EnableReceiver(info,ENABLE_AUTO_DCD);
  1473. else
  1474. usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
  1475. } else {
  1476. usc_UnlatchRxstatusBits(info, RXSTATUS_ALL);
  1477. usc_ClearIrqPendingBits(info, RECEIVE_DATA + RECEIVE_STATUS);
  1478. usc_EnableInterrupts(info, RECEIVE_DATA);
  1479. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1480. usc_RCmd( info, RCmd_EnterHuntmode );
  1481. usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
  1482. }
  1483. usc_OutReg( info, CCSR, 0x1020 );
  1484. info->rx_enabled = 1;
  1485. } /* end of usc_start_receiver() */
  1486. /* usc_start_transmitter()
  1487.  *
  1488.  * Enable the USC transmitter and send a transmit frame if
  1489.  * one is loaded in the DMA buffers.
  1490.  *
  1491.  * Arguments: info pointer to device instance data
  1492.  * Return Value: None
  1493.  */
  1494. void usc_start_transmitter( struct mgsl_struct *info )
  1495. {
  1496. u32 phys_addr;
  1497. unsigned int FrameSize;
  1498. if (debug_level >= DEBUG_LEVEL_ISR)
  1499. printk("%s(%d):usc_start_transmitter(%s)n",
  1500.  __FILE__,__LINE__, info->device_name );
  1501.  
  1502. if ( info->xmit_cnt ) {
  1503. /* If auto RTS enabled and RTS is inactive, then assert */
  1504. /* RTS and set a flag indicating that the driver should */
  1505. /* negate RTS when the transmission completes. */
  1506. info->drop_rts_on_tx_done = 0;
  1507. if ( info->params.flags & HDLC_FLAG_AUTO_RTS ) {
  1508. usc_get_serial_signals( info );
  1509. if ( !(info->serial_signals & SerialSignal_RTS) ) {
  1510. info->serial_signals |= SerialSignal_RTS;
  1511. usc_set_serial_signals( info );
  1512. info->drop_rts_on_tx_done = 1;
  1513. }
  1514. }
  1515. if ( info->params.mode == MGSL_MODE_ASYNC ) {
  1516. if ( !info->tx_active ) {
  1517. usc_UnlatchTxstatusBits(info, TXSTATUS_ALL);
  1518. usc_ClearIrqPendingBits(info, TRANSMIT_STATUS + TRANSMIT_DATA);
  1519. usc_EnableInterrupts(info, TRANSMIT_DATA);
  1520. usc_load_txfifo(info);
  1521. }
  1522. } else {
  1523. /* Disable transmit DMA controller while programming. */
  1524. usc_DmaCmd( info, DmaCmd_ResetTxChannel );
  1525. /* Transmit DMA buffer is loaded, so program USC */
  1526. /* to send the frame contained in the buffers.  */
  1527. FrameSize = info->tx_buffer_list[info->start_tx_dma_buffer].rcc;
  1528. /* if operating in Raw sync mode, reset the rcc component
  1529.  * of the tx dma buffer entry, otherwise, the serial controller
  1530.  * will send a closing sync char after this count.
  1531.  */
  1532.      if ( info->params.mode == MGSL_MODE_RAW )
  1533. info->tx_buffer_list[info->start_tx_dma_buffer].rcc = 0;
  1534. /* Program the Transmit Character Length Register (TCLR) */
  1535. /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
  1536. usc_OutReg( info, TCLR, (u16)FrameSize );
  1537. usc_RTCmd( info, RTCmd_PurgeTxFifo );
  1538. /* Program the address of the 1st DMA Buffer Entry in linked list */
  1539. phys_addr = info->tx_buffer_list[info->start_tx_dma_buffer].phys_entry;
  1540. usc_OutDmaReg( info, NTARL, (u16)phys_addr );
  1541. usc_OutDmaReg( info, NTARU, (u16)(phys_addr >> 16) );
  1542. usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
  1543. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
  1544. usc_EnableInterrupts( info, TRANSMIT_STATUS );
  1545. if ( info->params.mode == MGSL_MODE_RAW &&
  1546. info->num_tx_dma_buffers > 1 ) {
  1547.    /* When running external sync mode, attempt to 'stream' transmit  */
  1548.    /* by filling tx dma buffers as they become available. To do this */
  1549.    /* we need to enable Tx DMA EOB Status interrupts :               */
  1550.    /*                                                                */
  1551.    /* 1. Arm End of Buffer (EOB) Transmit DMA Interrupt (BIT2 of TDIAR) */
  1552.    /* 2. Enable Transmit DMA Interrupts (BIT0 of DICR) */
  1553.    usc_OutDmaReg( info, TDIAR, BIT2|BIT3 );
  1554.    usc_OutDmaReg( info, DICR, (u16)(usc_InDmaReg(info,DICR) | BIT0) );
  1555. }
  1556. /* Initialize Transmit DMA Channel */
  1557. usc_DmaCmd( info, DmaCmd_InitTxChannel );
  1558. usc_TCmd( info, TCmd_SendFrame );
  1559. info->tx_timer.expires = jiffies + jiffies_from_ms(5000);
  1560. add_timer(&info->tx_timer);
  1561. }
  1562. info->tx_active = 1;
  1563. }
  1564. if ( !info->tx_enabled ) {
  1565. info->tx_enabled = 1;
  1566. if ( info->params.flags & HDLC_FLAG_AUTO_CTS )
  1567. usc_EnableTransmitter(info,ENABLE_AUTO_CTS);
  1568. else
  1569. usc_EnableTransmitter(info,ENABLE_UNCONDITIONAL);
  1570. }
  1571. } /* end of usc_start_transmitter() */
  1572. /* usc_stop_transmitter()
  1573.  *
  1574.  * Stops the transmitter and DMA
  1575.  *
  1576.  * Arguments: info pointer to device isntance data
  1577.  * Return Value: None
  1578.  */
  1579. void usc_stop_transmitter( struct mgsl_struct *info )
  1580. {
  1581. if (debug_level >= DEBUG_LEVEL_ISR)
  1582. printk("%s(%d):usc_stop_transmitter(%s)n",
  1583.  __FILE__,__LINE__, info->device_name );
  1584.  
  1585. del_timer(&info->tx_timer);
  1586.  
  1587. usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
  1588. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS + TRANSMIT_DATA );
  1589. usc_DisableInterrupts( info, TRANSMIT_STATUS + TRANSMIT_DATA );
  1590. usc_EnableTransmitter(info,DISABLE_UNCONDITIONAL);
  1591. usc_DmaCmd( info, DmaCmd_ResetTxChannel );
  1592. usc_RTCmd( info, RTCmd_PurgeTxFifo );
  1593. info->tx_enabled = 0;
  1594. info->tx_active  = 0;
  1595. } /* end of usc_stop_transmitter() */
  1596. /* usc_load_txfifo()
  1597.  *
  1598.  * Fill the transmit FIFO until the FIFO is full or
  1599.  * there is no more data to load.
  1600.  *
  1601.  * Arguments: info pointer to device extension (instance data)
  1602.  * Return Value: None
  1603.  */
  1604. void usc_load_txfifo( struct mgsl_struct *info )
  1605. {
  1606. int Fifocount;
  1607. u8 TwoBytes[2];
  1608. if ( !info->xmit_cnt && !info->x_char )
  1609. return; 
  1610. /* Select transmit FIFO status readback in TICR */
  1611. usc_TCmd( info, TCmd_SelectTicrTxFifostatus );
  1612. /* load the Transmit FIFO until FIFOs full or all data sent */
  1613. while( (Fifocount = usc_InReg(info, TICR) >> 8) && info->xmit_cnt ) {
  1614. /* there is more space in the transmit FIFO and */
  1615. /* there is more data in transmit buffer */
  1616. if ( (info->xmit_cnt > 1) && (Fifocount > 1) && !info->x_char ) {
  1617.   /* write a 16-bit word from transmit buffer to 16C32 */
  1618. TwoBytes[0] = info->xmit_buf[info->xmit_tail++];
  1619. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  1620. TwoBytes[1] = info->xmit_buf[info->xmit_tail++];
  1621. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  1622. outw( *((u16 *)TwoBytes), info->io_base + DATAREG);
  1623. info->xmit_cnt -= 2;
  1624. info->icount.tx += 2;
  1625. } else {
  1626. /* only 1 byte left to transmit or 1 FIFO slot left */
  1627. outw( (inw( info->io_base + CCAR) & 0x0780) | (TDR+LSBONLY),
  1628. info->io_base + CCAR );
  1629. if (info->x_char) {
  1630. /* transmit pending high priority char */
  1631. outw( info->x_char,info->io_base + CCAR );
  1632. info->x_char = 0;
  1633. } else {
  1634. outw( info->xmit_buf[info->xmit_tail++],info->io_base + CCAR );
  1635. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  1636. info->xmit_cnt--;
  1637. }
  1638. info->icount.tx++;
  1639. }
  1640. }
  1641. } /* end of usc_load_txfifo() */
  1642. /* usc_reset()
  1643.  *
  1644.  * Reset the adapter to a known state and prepare it for further use.
  1645.  *
  1646.  * Arguments: info pointer to device instance data
  1647.  * Return Value: None
  1648.  */
  1649. void usc_reset( struct mgsl_struct *info )
  1650. {
  1651. if ( info->bus_type == MGSL_BUS_TYPE_PCI ) {
  1652. int i;
  1653. u32 readval;
  1654. /* Set BIT30 of Misc Control Register */
  1655. /* (Local Control Register 0x50) to force reset of USC. */
  1656. volatile u32 *MiscCtrl = (u32 *)(info->lcr_base + 0x50);
  1657. u32 *LCR0BRDR = (u32 *)(info->lcr_base + 0x28);
  1658. info->misc_ctrl_value |= BIT30;
  1659. *MiscCtrl = info->misc_ctrl_value;
  1660. /*
  1661.  * Force at least 170ns delay before clearing 
  1662.  * reset bit. Each read from LCR takes at least 
  1663.  * 30ns so 10 times for 300ns to be safe.
  1664.  */
  1665. for(i=0;i<10;i++)
  1666. readval = *MiscCtrl;
  1667. info->misc_ctrl_value &= ~BIT30;
  1668. *MiscCtrl = info->misc_ctrl_value;
  1669. *LCR0BRDR = BUS_DESCRIPTOR(
  1670. 1, // Write Strobe Hold (0-3)
  1671. 2, // Write Strobe Delay (0-3)
  1672. 2, // Read Strobe Delay  (0-3)
  1673. 0, // NWDD (Write data-data) (0-3)
  1674. 4, // NWAD (Write Addr-data) (0-31)
  1675. 0, // NXDA (Read/Write Data-Addr) (0-3)
  1676. 0, // NRDD (Read Data-Data) (0-3)
  1677. 5 // NRAD (Read Addr-Data) (0-31)
  1678. );
  1679. } else {
  1680. /* do HW reset */
  1681. outb( 0,info->io_base + 8 );
  1682. }
  1683. info->mbre_bit = 0;
  1684. info->loopback_bits = 0;
  1685. info->usc_idle_mode = 0;
  1686. /*
  1687.  * Program the Bus Configuration Register (BCR)
  1688.  *
  1689.  * <15> 0 Don't use seperate address
  1690.  * <14..6> 0 reserved
  1691.  * <5..4> 00 IAckmode = Default, don't care
  1692.  * <3> 1 Bus Request Totem Pole output
  1693.  * <2> 1 Use 16 Bit data bus
  1694.  * <1> 0 IRQ Totem Pole output
  1695.  * <0> 0 Don't Shift Right Addr
  1696.  *
  1697.  * 0000 0000 0000 1100 = 0x000c
  1698.  *
  1699.  * By writing to io_base + SDPIN the Wait/Ack pin is
  1700.  * programmed to work as a Wait pin.
  1701.  */
  1702. outw( 0x000c,info->io_base + SDPIN );
  1703. outw( 0,info->io_base );
  1704. outw( 0,info->io_base + CCAR );
  1705. /* select little endian byte ordering */
  1706. usc_RTCmd( info, RTCmd_SelectLittleEndian );
  1707. /* Port Control Register (PCR)
  1708.  *
  1709.  * <15..14> 11 Port 7 is Output (~DMAEN, Bit 14 : 0 = Enabled)
  1710.  * <13..12> 11 Port 6 is Output (~INTEN, Bit 12 : 0 = Enabled)
  1711.  * <11..10>  00 Port 5 is Input (No Connect, Don't Care)
  1712.  * <9..8>  00 Port 4 is Input (No Connect, Don't Care)
  1713.  * <7..6> 11 Port 3 is Output (~RTS, Bit 6 : 0 = Enabled )
  1714.  * <5..4> 11 Port 2 is Output (~DTR, Bit 4 : 0 = Enabled )
  1715.  * <3..2> 01 Port 1 is Input (Dedicated RxC)
  1716.  * <1..0> 01 Port 0 is Input (Dedicated TxC)
  1717.  *
  1718.  * 1111 0000 1111 0101 = 0xf0f5
  1719.  */
  1720. usc_OutReg( info, PCR, 0xf0f5 );
  1721. /*
  1722.  * Input/Output Control Register
  1723.  *
  1724.  * <15..14> 00 CTS is active low input
  1725.  * <13..12> 00 DCD is active low input
  1726.  * <11..10> 00 TxREQ pin is input (DSR)
  1727.  * <9..8> 00 RxREQ pin is input (RI)
  1728.  * <7..6> 00 TxD is output (Transmit Data)
  1729.  * <5..3> 000 TxC Pin in Input (14.7456MHz Clock)
  1730.  * <2..0> 100 RxC is Output (drive with BRG0)
  1731.  *
  1732.  * 0000 0000 0000 0100 = 0x0004
  1733.  */
  1734. usc_OutReg( info, IOCR, 0x0004 );
  1735. } /* end of usc_reset() */
  1736. /* usc_set_async_mode()
  1737.  *
  1738.  * Program adapter for asynchronous communications.
  1739.  *
  1740.  * Arguments: info pointer to device instance data
  1741.  * Return Value: None
  1742.  */
  1743. void usc_set_async_mode( struct mgsl_struct *info )
  1744. {
  1745. u16 RegValue;
  1746. /* disable interrupts while programming USC */
  1747. usc_DisableMasterIrqBit( info );
  1748. outw( 0, info->io_base );  /* clear Master Bus Enable (DCAR) */
  1749. usc_DmaCmd( info, DmaCmd_ResetAllChannels ); /* disable both DMA channels */
  1750. usc_loopback_frame( info );
  1751. /* Channel mode Register (CMR)
  1752.  *
  1753.  * <15..14> 00 Tx Sub modes, 00 = 1 Stop Bit
  1754.  * <13..12> 00               00 = 16X Clock
  1755.  * <11..8> 0000 Transmitter mode = Asynchronous
  1756.  * <7..6> 00 reserved?
  1757.  * <5..4> 00 Rx Sub modes, 00 = 16X Clock
  1758.  * <3..0> 0000 Receiver mode = Asynchronous
  1759.  *
  1760.  * 0000 0000 0000 0000 = 0x0
  1761.  */
  1762. RegValue = 0;
  1763. if ( info->params.stop_bits != 1 )
  1764. RegValue |= BIT14;
  1765. usc_OutReg( info, CMR, RegValue );
  1766. /* Receiver mode Register (RMR)
  1767.  *
  1768.  * <15..13> 000 encoding = None
  1769.  * <12..08> 00000 reserved (Sync Only)
  1770.  * <7..6>    00 Even parity
  1771.  * <5> 0 parity disabled
  1772.  * <4..2> 000 Receive Char Length = 8 bits
  1773.  * <1..0> 00 Disable Receiver
  1774.  *
  1775.  * 0000 0000 0000 0000 = 0x0
  1776.  */
  1777. RegValue = 0;
  1778. if ( info->params.data_bits != 8 )
  1779. RegValue |= BIT4+BIT3+BIT2;
  1780. if ( info->params.parity != ASYNC_PARITY_NONE ) {
  1781. RegValue |= BIT5;
  1782. if ( info->params.parity != ASYNC_PARITY_ODD )
  1783. RegValue |= BIT6;
  1784. }
  1785. usc_OutReg( info, RMR, RegValue );
  1786. /* Set IRQ trigger level */
  1787. usc_RCmd( info, RCmd_SelectRicrIntLevel );
  1788. /* Receive Interrupt Control Register (RICR)
  1789.  *
  1790.  * <15..8> ? RxFIFO IRQ Request Level
  1791.  *
  1792.  * Note: For async mode the receive FIFO level must be set
  1793.  * to 0 to aviod the situation where the FIFO contains fewer bytes
  1794.  * than the trigger level and no more data is expected.
  1795.  *
  1796.  * <7> 0 Exited Hunt IA (Interrupt Arm)
  1797.  * <6> 0 Idle Received IA
  1798.  * <5> 0 Break/Abort IA
  1799.  * <4> 0 Rx Bound IA
  1800.  * <3> 0 Queued status reflects oldest byte in FIFO
  1801.  * <2> 0 Abort/PE IA
  1802.  * <1> 0 Rx Overrun IA
  1803.  * <0> 0 Select TC0 value for readback
  1804.  *
  1805.  * 0000 0000 0100 0000 = 0x0000 + (FIFOLEVEL in MSB)
  1806.  */
  1807. usc_OutReg( info, RICR, 0x0000 );
  1808. usc_UnlatchRxstatusBits( info, RXSTATUS_ALL );
  1809. usc_ClearIrqPendingBits( info, RECEIVE_STATUS );
  1810. /* Transmit mode Register (TMR)
  1811.  *
  1812.  * <15..13> 000 encoding = None
  1813.  * <12..08> 00000 reserved (Sync Only)
  1814.  * <7..6> 00 Transmit parity Even
  1815.  * <5> 0 Transmit parity Disabled
  1816.  * <4..2> 000 Tx Char Length = 8 bits
  1817.  * <1..0> 00 Disable Transmitter
  1818.  *
  1819.  * 0000 0000 0000 0000 = 0x0
  1820.  */
  1821. RegValue = 0;
  1822. if ( info->params.data_bits != 8 )
  1823. RegValue |= BIT4+BIT3+BIT2;
  1824. if ( info->params.parity != ASYNC_PARITY_NONE ) {
  1825. RegValue |= BIT5;
  1826. if ( info->params.parity != ASYNC_PARITY_ODD )
  1827. RegValue |= BIT6;
  1828. }
  1829. usc_OutReg( info, TMR, RegValue );
  1830. usc_set_txidle( info );
  1831. /* Set IRQ trigger level */
  1832. usc_TCmd( info, TCmd_SelectTicrIntLevel );
  1833. /* Transmit Interrupt Control Register (TICR)
  1834.  *
  1835.  * <15..8> ? Transmit FIFO IRQ Level
  1836.  * <7> 0 Present IA (Interrupt Arm)
  1837.  * <6> 1 Idle Sent IA
  1838.  * <5> 0 Abort Sent IA
  1839.  * <4> 0 EOF/EOM Sent IA
  1840.  * <3> 0 CRC Sent IA
  1841.  * <2> 0 1 = Wait for SW Trigger to Start Frame
  1842.  * <1> 0 Tx Underrun IA
  1843.  * <0> 0 TC0 constant on read back
  1844.  *
  1845.  * 0000 0000 0100 0000 = 0x0040
  1846.  */
  1847. usc_OutReg( info, TICR, 0x1f40 );
  1848. usc_UnlatchTxstatusBits( info, TXSTATUS_ALL );
  1849. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS );
  1850. usc_enable_async_clock( info, info->params.data_rate );
  1851. /* Channel Control/status Register (CCSR)
  1852.  *
  1853.  * <15> X RCC FIFO Overflow status (RO)
  1854.  * <14> X RCC FIFO Not Empty status (RO)
  1855.  * <13> 0 1 = Clear RCC FIFO (WO)
  1856.  * <12> X DPLL in Sync status (RO)
  1857.  * <11> X DPLL 2 Missed Clocks status (RO)
  1858.  * <10> X DPLL 1 Missed Clock status (RO)
  1859.  * <9..8> 00 DPLL Resync on rising and falling edges (RW)
  1860.  * <7> X SDLC Loop On status (RO)
  1861.  * <6> X SDLC Loop Send status (RO)
  1862.  * <5> 1 Bypass counters for TxClk and RxClk (RW)
  1863.  * <4..2>    000 Last Char of SDLC frame has 8 bits (RW)
  1864.  * <1..0>    00 reserved
  1865.  *
  1866.  * 0000 0000 0010 0000 = 0x0020
  1867.  */
  1868. usc_OutReg( info, CCSR, 0x0020 );
  1869. usc_DisableInterrupts( info, TRANSMIT_STATUS + TRANSMIT_DATA +
  1870.       RECEIVE_DATA + RECEIVE_STATUS );
  1871. usc_ClearIrqPendingBits( info, TRANSMIT_STATUS + TRANSMIT_DATA +
  1872. RECEIVE_DATA + RECEIVE_STATUS );
  1873. usc_EnableMasterIrqBit( info );
  1874. /* Enable INTEN (Port 6, Bit12) */
  1875. /* This connects the IRQ request signal to the ISA bus */
  1876. /* on the ISA adapter. This has no effect for the PCI adapter */
  1877. usc_OutReg( info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) & ~BIT12) );
  1878. } /* end of usc_set_async_mode() */
  1879. /* usc_loopback_frame()
  1880.  *
  1881.  * Loop back a small (2 byte) dummy SDLC frame.
  1882.  * Interrupts and DMA are NOT used. The purpose of this is to
  1883.  * clear any 'stale' status info left over from running in async mode.
  1884.  *
  1885.  * The 16C32 shows the strange behaviour of marking the 1st
  1886.  * received SDLC frame with a CRC error even when there is no
  1887.  * CRC error. To get around this a small dummy from of 2 bytes
  1888.  * is looped back when switching from async to sync mode.
  1889.  *
  1890.  * Arguments: info pointer to device instance data
  1891.  * Return Value: None
  1892.  */
  1893. void usc_loopback_frame( struct mgsl_struct *info )
  1894. {
  1895. int i;
  1896. unsigned long oldmode = info->params.mode;
  1897. info->params.mode = MGSL_MODE_HDLC;
  1898. usc_DisableMasterIrqBit( info );
  1899. usc_set_sdlc_mode( info );
  1900. usc_enable_loopback( info, 1 );
  1901. /* Write 16-bit Time Constant for BRG0 */
  1902. usc_OutReg( info, TC0R, 0 );
  1903. /* Channel Control Register (CCR)
  1904.  *
  1905.  * <15..14> 00 Don't use 32-bit Tx Control Blocks (TCBs)
  1906.  * <13> 0 Trigger Tx on SW Command Disabled
  1907.  * <12> 0 Flag Preamble Disabled
  1908.  * <11..10> 00 Preamble Length = 8-Bits
  1909.  * <9..8> 01 Preamble Pattern = flags
  1910.  * <7..6> 10 Don't use 32-bit Rx status Blocks (RSBs)
  1911.  * <5> 0 Trigger Rx on SW Command Disabled
  1912.  * <4..0> 0 reserved
  1913.  *
  1914.  * 0000 0001 0000 0000 = 0x0100
  1915.  */
  1916. usc_OutReg( info, CCR, 0x0100 );
  1917. /* SETUP RECEIVER */
  1918. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  1919. usc_EnableReceiver(info,ENABLE_UNCONDITIONAL);
  1920. /* SETUP TRANSMITTER */
  1921. /* Program the Transmit Character Length Register (TCLR) */
  1922. /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
  1923. usc_OutReg( info, TCLR, 2 );
  1924. usc_RTCmd( info, RTCmd_PurgeTxFifo );
  1925. /* unlatch Tx status bits, and start transmit channel. */
  1926. usc_UnlatchTxstatusBits(info,TXSTATUS_ALL);
  1927. outw(0,info->io_base + DATAREG);
  1928. /* ENABLE TRANSMITTER */
  1929. usc_TCmd( info, TCmd_SendFrame );
  1930. usc_EnableTransmitter(info,ENABLE_UNCONDITIONAL);
  1931. /* WAIT FOR RECEIVE COMPLETE */
  1932. for (i=0 ; i<1000 ; i++)
  1933. if (usc_InReg( info, RCSR ) & (BIT8 + BIT4 + BIT3 + BIT1))
  1934. break;
  1935. /* clear Internal Data loopback mode */
  1936. usc_enable_loopback(info, 0);
  1937. usc_EnableMasterIrqBit(info);
  1938. info->params.mode = oldmode;
  1939. } /* end of usc_loopback_frame() */
  1940. /* usc_set_sync_mode() Programs the USC for SDLC communications.
  1941.  *
  1942.  * Arguments: info pointer to adapter info structure
  1943.  * Return Value: None
  1944.  */
  1945. void usc_set_sync_mode( struct mgsl_struct *info )
  1946. {
  1947. usc_loopback_frame( info );
  1948. usc_set_sdlc_mode( info );
  1949. /* Enable INTEN (Port 6, Bit12) */
  1950. /* This connects the IRQ request signal to the ISA bus */
  1951. /* on the ISA adapter. This has no effect for the PCI adapter */
  1952. usc_OutReg(info, PCR, (u16)((usc_InReg(info, PCR) | BIT13) & ~BIT12));
  1953. usc_enable_aux_clock(info, info->params.clock_speed);
  1954. if (info->params.loopback)
  1955. usc_enable_loopback(info,1);
  1956. } /* end of mgsl_set_sync_mode() */
  1957. /* usc_set_txidle() Set the HDLC idle mode for the transmitter.
  1958.  *
  1959.  * Arguments: info pointer to device instance data
  1960.  * Return Value: None
  1961.  */
  1962. void usc_set_txidle( struct mgsl_struct *info )
  1963. {
  1964. u16 usc_idle_mode = IDLEMODE_FLAGS;
  1965. /* Map API idle mode to USC register bits */
  1966. switch( info->idle_mode ){
  1967. case HDLC_TXIDLE_FLAGS: usc_idle_mode = IDLEMODE_FLAGS; break;
  1968. case HDLC_TXIDLE_ALT_ZEROS_ONES: usc_idle_mode = IDLEMODE_ALT_ONE_ZERO; break;
  1969. case HDLC_TXIDLE_ZEROS: usc_idle_mode = IDLEMODE_ZERO; break;
  1970. case HDLC_TXIDLE_ONES: usc_idle_mode = IDLEMODE_ONE; break;
  1971. case HDLC_TXIDLE_ALT_MARK_SPACE: usc_idle_mode = IDLEMODE_ALT_MARK_SPACE; break;
  1972. case HDLC_TXIDLE_SPACE: usc_idle_mode = IDLEMODE_SPACE; break;
  1973. case HDLC_TXIDLE_MARK: usc_idle_mode = IDLEMODE_MARK; break;
  1974. }
  1975. info->usc_idle_mode = usc_idle_mode;
  1976. //usc_OutReg(info, TCSR, usc_idle_mode);
  1977. info->tcsr_value &= ~IDLEMODE_MASK; /* clear idle mode bits */
  1978. info->tcsr_value += usc_idle_mode;
  1979. usc_OutReg(info, TCSR, info->tcsr_value);
  1980. /*
  1981.  * if SyncLink WAN adapter is running in external sync mode, the
  1982.  * transmitter has been set to Monosync in order to try to mimic
  1983.  * a true raw outbound bit stream. Monosync still sends an open/close
  1984.  * sync char at the start/end of a frame. Try to match those sync
  1985.  * patterns to the idle mode set here
  1986.  */
  1987. if ( info->params.mode == MGSL_MODE_RAW ) {
  1988. unsigned char syncpat = 0;
  1989. switch( info->idle_mode ) {
  1990. case HDLC_TXIDLE_FLAGS:
  1991. syncpat = 0x7e;
  1992. break;
  1993. case HDLC_TXIDLE_ALT_ZEROS_ONES:
  1994. syncpat = 0x55;
  1995. break;
  1996. case HDLC_TXIDLE_ZEROS:
  1997. case HDLC_TXIDLE_SPACE:
  1998. syncpat = 0x00;
  1999. break;
  2000. case HDLC_TXIDLE_ONES:
  2001. case HDLC_TXIDLE_MARK:
  2002. syncpat = 0xff;
  2003. break;
  2004. case HDLC_TXIDLE_ALT_MARK_SPACE:
  2005. syncpat = 0xaa;
  2006. break;
  2007. }
  2008. usc_SetTransmitSyncChars(info,syncpat,syncpat);
  2009. }
  2010. } /* end of usc_set_txidle() */
  2011. /* usc_get_serial_signals()
  2012.  *
  2013.  * Query the adapter for the state of the V24 status (input) signals.
  2014.  *
  2015.  * Arguments: info pointer to device instance data
  2016.  * Return Value: None
  2017.  */
  2018. void usc_get_serial_signals( struct mgsl_struct *info )
  2019. {
  2020. u16 status;
  2021. /* clear all serial signals except DTR and RTS */
  2022. info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
  2023. /* Read the Misc Interrupt status Register (MISR) to get */
  2024. /* the V24 status signals. */
  2025. status = usc_InReg( info, MISR );
  2026. /* set serial signal bits to reflect MISR */
  2027. if ( status & MISCSTATUS_CTS )
  2028. info->serial_signals |= SerialSignal_CTS;
  2029. if ( status & MISCSTATUS_DCD )
  2030. info->serial_signals |= SerialSignal_DCD;
  2031. if ( status & MISCSTATUS_RI )
  2032. info->serial_signals |= SerialSignal_RI;
  2033. if ( status & MISCSTATUS_DSR )
  2034. info->serial_signals |= SerialSignal_DSR;
  2035. } /* end of usc_get_serial_signals() */
  2036. /* usc_set_serial_signals()
  2037.  *
  2038.  * Set the state of DTR and RTS based on contents of
  2039.  * serial_signals member of device extension.
  2040.  *
  2041.  * Arguments: info pointer to device instance data
  2042.  * Return Value: None
  2043.  */
  2044. void usc_set_serial_signals( struct mgsl_struct *info )
  2045. {
  2046. u16 Control;
  2047. unsigned char V24Out = info->serial_signals;
  2048. /* get the current value of the Port Control Register (PCR) */
  2049. Control = usc_InReg( info, PCR );
  2050. if ( V24Out & SerialSignal_RTS )
  2051. Control &= ~(BIT6);
  2052. else
  2053. Control |= BIT6;
  2054. if ( V24Out & SerialSignal_DTR )
  2055. Control &= ~(BIT4);
  2056. else
  2057. Control |= BIT4;
  2058. usc_OutReg( info, PCR, Control );
  2059. } /* end of usc_set_serial_signals() */
  2060. /* usc_enable_async_clock()
  2061.  *
  2062.  * Enable the async clock at the specified frequency.
  2063.  *
  2064.  * Arguments: info pointer to device instance data
  2065.  * data_rate data rate of clock in bps
  2066.  * 0 disables the AUX clock.
  2067.  * Return Value: None
  2068.  */
  2069. void usc_enable_async_clock( struct mgsl_struct *info, u32 data_rate )
  2070. {
  2071. if ( data_rate ) {
  2072. /*
  2073.  * Clock mode Control Register (CMCR)
  2074.  * 
  2075.  * <15..14>     00      counter 1 Disabled
  2076.  * <13..12>     00      counter 0 Disabled
  2077.  * <11..10>     11      BRG1 Input is TxC Pin
  2078.  * <9..8>       11      BRG0 Input is TxC Pin
  2079.  * <7..6>       01      DPLL Input is BRG1 Output
  2080.  * <5..3>       100     TxCLK comes from BRG0
  2081.  * <2..0>       100     RxCLK comes from BRG0
  2082.  *
  2083.  * 0000 1111 0110 0100 = 0x0f64
  2084.  */
  2085. usc_OutReg( info, CMCR, 0x0f64 );
  2086. /*
  2087.  * Write 16-bit Time Constant for BRG0
  2088.  * Time Constant = (ClkSpeed / data_rate) - 1
  2089.  * ClkSpeed = 921600 (ISA), 691200 (PCI)
  2090.  */
  2091. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  2092. usc_OutReg( info, TC0R, (u16)((691200/data_rate) - 1) );
  2093. else
  2094. usc_OutReg( info, TC0R, (u16)((921600/data_rate) - 1) );
  2095. /*
  2096.  * Hardware Configuration Register (HCR)
  2097.  * Clear Bit 1, BRG0 mode = Continuous
  2098.  * Set Bit 0 to enable BRG0.
  2099.  */
  2100. usc_OutReg( info, HCR,
  2101.     (u16)((usc_InReg( info, HCR ) & ~BIT1) | BIT0) );
  2102. /* Input/Output Control Reg, <2..0> = 100, Drive RxC pin with BRG0 */
  2103. usc_OutReg( info, IOCR,
  2104.     (u16)((usc_InReg(info, IOCR) & 0xfff8) | 0x0004) );
  2105. } else {
  2106. /* data rate == 0 so turn off BRG0 */
  2107. usc_OutReg( info, HCR, (u16)(usc_InReg( info, HCR ) & ~BIT0) );
  2108. }
  2109. } /* end of usc_enable_async_clock() */
  2110. /*
  2111.  * Buffer Structures:
  2112.  *
  2113.  * Normal memory access uses virtual addresses that can make discontiguous
  2114.  * physical memory pages appear to be contiguous in the virtual address
  2115.  * space (the processors memory mapping handles the conversions).
  2116.  *
  2117.  * DMA transfers require physically contiguous memory. This is because
  2118.  * the DMA system controller and DMA bus masters deal with memory using
  2119.  * only physical addresses.
  2120.  *
  2121.  * This causes a problem under Windows NT when large DMA buffers are
  2122.  * needed. Fragmentation of the nonpaged pool prevents allocations of
  2123.  * physically contiguous buffers larger than the PAGE_SIZE.
  2124.  *
  2125.  * However the 16C32 supports Bus Master Scatter/Gather DMA which
  2126.  * allows DMA transfers to physically discontiguous buffers. Information
  2127.  * about each data transfer buffer is contained in a memory structure
  2128.  * called a 'buffer entry'. A list of buffer entries is maintained
  2129.  * to track and control the use of the data transfer buffers.
  2130.  *
  2131.  * To support this strategy we will allocate sufficient PAGE_SIZE
  2132.  * contiguous memory buffers to allow for the total required buffer
  2133.  * space.
  2134.  *
  2135.  * The 16C32 accesses the list of buffer entries using Bus Master
  2136.  * DMA. Control information is read from the buffer entries by the
  2137.  * 16C32 to control data transfers. status information is written to
  2138.  * the buffer entries by the 16C32 to indicate the status of completed
  2139.  * transfers.
  2140.  *
  2141.  * The CPU writes control information to the buffer entries to control
  2142.  * the 16C32 and reads status information from the buffer entries to
  2143.  * determine information about received and transmitted frames.
  2144.  *
  2145.  * Because the CPU and 16C32 (adapter) both need simultaneous access
  2146.  * to the buffer entries, the buffer entry memory is allocated with
  2147.  * HalAllocateCommonBuffer(). This restricts the size of the buffer
  2148.  * entry list to PAGE_SIZE.
  2149.  *
  2150.  * The actual data buffers on the other hand will only be accessed
  2151.  * by the CPU or the adapter but not by both simultaneously. This allows
  2152.  * Scatter/Gather packet based DMA procedures for using physically
  2153.  * discontiguous pages.
  2154.  */
  2155. /*
  2156.  * mgsl_reset_tx_dma_buffers()
  2157.  *
  2158.  *  Set the count for all transmit buffers to 0 to indicate the
  2159.  *  buffer is available for use and set the current buffer to the
  2160.  *  first buffer. This effectively makes all buffers free and
  2161.  *  discards any data in buffers.
  2162.  *
  2163.  * Arguments: info pointer to device instance data
  2164.  * Return Value: None
  2165.  */
  2166. void mgsl_reset_tx_dma_buffers( struct mgsl_struct *info )
  2167. {
  2168. unsigned int i;
  2169. for ( i = 0; i < info->tx_buffer_count; i++ ) {
  2170. *((unsigned long *)&(info->tx_buffer_list[i].count)) = 0;
  2171. }
  2172. info->current_tx_buffer = 0;
  2173. info->start_tx_dma_buffer = 0;
  2174. info->tx_dma_buffers_used = 0;
  2175. info->get_tx_holding_index = 0;
  2176. info->put_tx_holding_index = 0;
  2177. info->tx_holding_count = 0;
  2178. } /* end of mgsl_reset_tx_dma_buffers() */
  2179. /*
  2180.  * num_free_tx_dma_buffers()
  2181.  *
  2182.  *  returns the number of free tx dma buffers available
  2183.  *
  2184.  * Arguments: info pointer to device instance data
  2185.  * Return Value: number of free tx dma buffers
  2186.  */
  2187. int num_free_tx_dma_buffers(struct mgsl_struct *info)
  2188. {
  2189. return info->tx_buffer_count - info->tx_dma_buffers_used;
  2190. }
  2191. /*
  2192.  * mgsl_reset_rx_dma_buffers()
  2193.  * 
  2194.  *  Set the count for all receive buffers to DMABUFFERSIZE
  2195.  *  and set the current buffer to the first buffer. This effectively
  2196.  *  makes all buffers free and discards any data in buffers.
  2197.  * 
  2198.  * Arguments: info pointer to device instance data
  2199.  * Return Value: None
  2200.  */
  2201. void mgsl_reset_rx_dma_buffers( struct mgsl_struct *info )
  2202. {
  2203. unsigned int i;
  2204. for ( i = 0; i < info->rx_buffer_count; i++ ) {
  2205. *((unsigned long *)&(info->rx_buffer_list[i].count)) = DMABUFFERSIZE;
  2206. // info->rx_buffer_list[i].count = DMABUFFERSIZE;
  2207. // info->rx_buffer_list[i].status = 0;
  2208. }
  2209. info->current_rx_buffer = 0;
  2210. } /* end of mgsl_reset_rx_dma_buffers() */
  2211. /*
  2212.  * mgsl_free_rx_frame_buffers()
  2213.  * 
  2214.  *  Free the receive buffers used by a received SDLC
  2215.  *  frame such that the buffers can be reused.
  2216.  * 
  2217.  * Arguments:
  2218.  * 
  2219.  *  info pointer to device instance data
  2220.  *  StartIndex index of 1st receive buffer of frame
  2221.  *  EndIndex index of last receive buffer of frame
  2222.  * 
  2223.  * Return Value: None
  2224.  */
  2225. void mgsl_free_rx_frame_buffers( struct mgsl_struct *info, unsigned int StartIndex, unsigned int EndIndex )
  2226. {
  2227. int Done = 0;
  2228. DMABUFFERENTRY *pBufEntry;
  2229. unsigned int Index;
  2230. /* Starting with 1st buffer entry of the frame clear the status */
  2231. /* field and set the count field to DMA Buffer Size. */
  2232. Index = StartIndex;
  2233. while( !Done ) {
  2234. pBufEntry = &(info->rx_buffer_list[Index]);
  2235. if ( Index == EndIndex ) {
  2236. /* This is the last buffer of the frame! */
  2237. Done = 1;
  2238. }
  2239. /* reset current buffer for reuse */
  2240. // pBufEntry->status = 0;
  2241. // pBufEntry->count = DMABUFFERSIZE;
  2242. *((unsigned long *)&(pBufEntry->count)) = DMABUFFERSIZE;
  2243. /* advance to next buffer entry in linked list */
  2244. Index++;
  2245. if ( Index == info->rx_buffer_count )
  2246. Index = 0;
  2247. }
  2248. /* set current buffer to next buffer after last buffer of frame */
  2249. info->current_rx_buffer = Index;
  2250. } /* end of free_rx_frame_buffers() */
  2251. /* mgsl_get_rx_frame()
  2252.  * 
  2253.  *  This function attempts to return a received SDLC frame from the
  2254.  *  receive DMA buffers. Only frames received without errors are returned.
  2255.  *
  2256.  * Arguments:   info pointer to device extension
  2257.  * Return Value: 1 if frame returned, otherwise 0
  2258.  */
  2259. int mgsl_get_rx_frame(struct mgsl_struct *info)
  2260. {
  2261. unsigned int StartIndex, EndIndex; /* index of 1st and last buffers of Rx frame */
  2262. unsigned short status;
  2263. DMABUFFERENTRY *pBufEntry;
  2264. unsigned int framesize = 0;
  2265. int ReturnCode = 0;
  2266. unsigned long flags;
  2267. struct tty_struct *tty = info->tty;
  2268. int return_frame = 0;
  2269. /*
  2270.  * current_rx_buffer points to the 1st buffer of the next available
  2271.  * receive frame. To find the last buffer of the frame look for
  2272.  * a non-zero status field in the buffer entries. (The status
  2273.  * field is set by the 16C32 after completing a receive frame.
  2274.  */
  2275. StartIndex = EndIndex = info->current_rx_buffer;
  2276. while( !info->rx_buffer_list[EndIndex].status ) {
  2277. /*
  2278.  * If the count field of the buffer entry is non-zero then
  2279.  * this buffer has not been used. (The 16C32 clears the count
  2280.  * field when it starts using the buffer.) If an unused buffer
  2281.  * is encountered then there are no frames available.
  2282.  */
  2283. if ( info->rx_buffer_list[EndIndex].count )
  2284. goto Cleanup;
  2285. /* advance to next buffer entry in linked list */
  2286. EndIndex++;
  2287. if ( EndIndex == info->rx_buffer_count )
  2288. EndIndex = 0;
  2289. /* if entire list searched then no frame available */
  2290. if ( EndIndex == StartIndex ) {
  2291. /* If this occurs then something bad happened,
  2292.  * all buffers have been 'used' but none mark
  2293.  * the end of a frame. Reset buffers and receiver.
  2294.  */
  2295. if ( info->rx_enabled ){
  2296. spin_lock_irqsave(&info->irq_spinlock,flags);
  2297. usc_start_receiver(info);
  2298. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2299. }
  2300. goto Cleanup;
  2301. }
  2302. }
  2303. /* check status of receive frame */
  2304. status = info->rx_buffer_list[EndIndex].status;
  2305. if ( status & (RXSTATUS_SHORT_FRAME + RXSTATUS_OVERRUN +
  2306. RXSTATUS_CRC_ERROR + RXSTATUS_ABORT) ) {
  2307. if ( status & RXSTATUS_SHORT_FRAME )
  2308. info->icount.rxshort++;
  2309. else if ( status & RXSTATUS_ABORT )
  2310. info->icount.rxabort++;
  2311. else if ( status & RXSTATUS_OVERRUN )
  2312. info->icount.rxover++;
  2313. else {
  2314. info->icount.rxcrc++;
  2315. if ( info->params.crc_type & HDLC_CRC_RETURN_EX )
  2316. return_frame = 1;
  2317. }
  2318. framesize = 0;
  2319. #ifdef CONFIG_SYNCLINK_SYNCPPP
  2320. info->netstats.rx_errors++;
  2321. info->netstats.rx_frame_errors++;
  2322. #endif
  2323. } else
  2324. return_frame = 1;
  2325. if ( return_frame ) {
  2326. /* receive frame has no errors, get frame size.
  2327.  * The frame size is the starting value of the RCC (which was
  2328.  * set to 0xffff) minus the ending value of the RCC (decremented
  2329.  * once for each receive character) minus 2 for the 16-bit CRC.
  2330.  */
  2331. framesize = RCLRVALUE - info->rx_buffer_list[EndIndex].rcc;
  2332. /* adjust frame size for CRC if any */
  2333. if ( info->params.crc_type == HDLC_CRC_16_CCITT )
  2334. framesize -= 2;
  2335. else if ( info->params.crc_type == HDLC_CRC_32_CCITT )
  2336. framesize -= 4;
  2337. }
  2338. if ( debug_level >= DEBUG_LEVEL_BH )
  2339. printk("%s(%d):mgsl_get_rx_frame(%s) status=%04X size=%dn",
  2340. __FILE__,__LINE__,info->device_name,status,framesize);
  2341. if ( debug_level >= DEBUG_LEVEL_DATA )
  2342. mgsl_trace_block(info,info->rx_buffer_list[StartIndex].virt_addr,
  2343. MIN(framesize,DMABUFFERSIZE),0);
  2344. if (framesize) {
  2345. if ( ( (info->params.crc_type & HDLC_CRC_RETURN_EX) &&
  2346. ((framesize+1) > info->max_frame_size) ) ||
  2347. (framesize > info->max_frame_size) )
  2348. info->icount.rxlong++;
  2349. else {
  2350. /* copy dma buffer(s) to contiguous intermediate buffer */
  2351. int copy_count = framesize;
  2352. int index = StartIndex;
  2353. unsigned char *ptmp = info->intermediate_rxbuffer;
  2354. if ( !(status & RXSTATUS_CRC_ERROR))
  2355. info->icount.rxok++;
  2356. while(copy_count) {
  2357. int partial_count;
  2358. if ( copy_count > DMABUFFERSIZE )
  2359. partial_count = DMABUFFERSIZE;
  2360. else
  2361. partial_count = copy_count;
  2362. pBufEntry = &(info->rx_buffer_list[index]);
  2363. memcpy( ptmp, pBufEntry->virt_addr, partial_count );
  2364. ptmp += partial_count;
  2365. copy_count -= partial_count;
  2366. if ( ++index == info->rx_buffer_count )
  2367. index = 0;
  2368. }
  2369. if ( info->params.crc_type & HDLC_CRC_RETURN_EX ) {
  2370. ++framesize;
  2371. *ptmp = (status & RXSTATUS_CRC_ERROR ?
  2372. RX_CRC_ERROR :
  2373. RX_OK);
  2374. if ( debug_level >= DEBUG_LEVEL_DATA )
  2375. printk("%s(%d):mgsl_get_rx_frame(%s) rx frame status=%dn",
  2376. __FILE__,__LINE__,info->device_name,
  2377. *ptmp);
  2378. }
  2379. #ifdef CONFIG_SYNCLINK_SYNCPPP
  2380. if (info->netcount) {
  2381. /* pass frame to syncppp device */
  2382. mgsl_sppp_rx_done(info,info->intermediate_rxbuffer,framesize);
  2383. else
  2384. #endif
  2385. {
  2386. /* Call the line discipline receive callback directly. */
  2387. if ( tty && tty->ldisc.receive_buf )
  2388. tty->ldisc.receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);
  2389. }
  2390. }
  2391. }
  2392. /* Free the buffers used by this frame. */
  2393. mgsl_free_rx_frame_buffers( info, StartIndex, EndIndex );
  2394. ReturnCode = 1;
  2395. Cleanup:
  2396. if ( info->rx_enabled && info->rx_overflow ) {
  2397. /* The receiver needs to restarted because of 
  2398.  * a receive overflow (buffer or FIFO). If the 
  2399.  * receive buffers are now empty, then restart receiver.
  2400.  */
  2401. if ( !info->rx_buffer_list[EndIndex].status &&
  2402. info->rx_buffer_list[EndIndex].count ) {
  2403. spin_lock_irqsave(&info->irq_spinlock,flags);
  2404. usc_start_receiver(info);
  2405. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2406. }
  2407. }
  2408. return ReturnCode;
  2409. } /* end of mgsl_get_rx_frame() */
  2410. /* mgsl_get_raw_rx_frame()
  2411.  *
  2412.  *      This function attempts to return a received frame from the
  2413.  * receive DMA buffers when running in external loop mode. In this mode,
  2414.  * we will return at most one DMABUFFERSIZE frame to the application.
  2415.  * The USC receiver is triggering off of DCD going active to start a new
  2416.  * frame, and DCD going inactive to terminate the frame (similar to
  2417.  * processing a closing flag character).
  2418.  *
  2419.  * In this routine, we will return DMABUFFERSIZE "chunks" at a time.
  2420.  * If DCD goes inactive, the last Rx DMA Buffer will have a non-zero
  2421.  *  status field and the RCC field will indicate the length of the
  2422.  * entire received frame. We take this RCC field and get the modulus
  2423.  * of RCC and DMABUFFERSIZE to determine if number of bytes in the
  2424.  * last Rx DMA buffer and return that last portion of the frame.
  2425.  *
  2426.  * Arguments:   info pointer to device extension
  2427.  * Return Value: 1 if frame returned, otherwise 0
  2428.  */
  2429. int mgsl_get_raw_rx_frame(struct mgsl_struct *info)
  2430. {
  2431. unsigned int CurrentIndex, NextIndex;
  2432. unsigned short status;
  2433. DMABUFFERENTRY *pBufEntry;
  2434. unsigned int framesize = 0;
  2435. int ReturnCode = 0;
  2436. unsigned long flags;
  2437. struct tty_struct *tty = info->tty;
  2438. /*
  2439.    * current_rx_buffer points to the 1st buffer of the next available
  2440.  * receive frame. The status field is set by the 16C32 after
  2441.  * completing a receive frame. If the status field of this buffer
  2442.  * is zero, either the USC is still filling this buffer or this
  2443.  * is one of a series of buffers making up a received frame.
  2444.  *
  2445.  * If the count field of this buffer is zero, the USC is either
  2446.  * using this buffer or has used this buffer. Look at the count
  2447.  * field of the next buffer. If that next buffer's count is
  2448.  * non-zero, the USC is still actively using the current buffer.
  2449.  * Otherwise, if the next buffer's count field is zero, the
  2450.  * current buffer is complete and the USC is using the next
  2451.  * buffer.
  2452.  */
  2453. CurrentIndex = NextIndex = info->current_rx_buffer;
  2454. ++NextIndex;
  2455. if ( NextIndex == info->rx_buffer_count )
  2456. NextIndex = 0;
  2457. if ( info->rx_buffer_list[CurrentIndex].status != 0 ||
  2458. (info->rx_buffer_list[CurrentIndex].count == 0 &&
  2459. info->rx_buffer_list[NextIndex].count == 0)) {
  2460. /*
  2461.    * Either the status field of this dma buffer is non-zero
  2462.  * (indicating the last buffer of a receive frame) or the next
  2463.    * buffer is marked as in use -- implying this buffer is complete
  2464.  * and an intermediate buffer for this received frame.
  2465.    */
  2466. status = info->rx_buffer_list[CurrentIndex].status;
  2467. if ( status & (RXSTATUS_SHORT_FRAME + RXSTATUS_OVERRUN +
  2468. RXSTATUS_CRC_ERROR + RXSTATUS_ABORT) ) {
  2469. if ( status & RXSTATUS_SHORT_FRAME )
  2470. info->icount.rxshort++;
  2471. else if ( status & RXSTATUS_ABORT )
  2472. info->icount.rxabort++;
  2473. else if ( status & RXSTATUS_OVERRUN )
  2474. info->icount.rxover++;
  2475. else
  2476. info->icount.rxcrc++;
  2477. framesize = 0;
  2478. } else {
  2479. /*
  2480.  * A receive frame is available, get frame size and status.
  2481.  *
  2482.  * The frame size is the starting value of the RCC (which was
  2483.  * set to 0xffff) minus the ending value of the RCC (decremented
  2484.  * once for each receive character) minus 2 or 4 for the 16-bit
  2485.  * or 32-bit CRC.
  2486.  *
  2487.  * If the status field is zero, this is an intermediate buffer.
  2488.  * It's size is 4K.
  2489.  *
  2490.  * If the DMA Buffer Entry's Status field is non-zero, the
  2491.  * receive operation completed normally (ie: DCD dropped). The
  2492.  * RCC field is valid and holds the received frame size.
  2493.  * It is possible that the RCC field will be zero on a DMA buffer
  2494.  * entry with a non-zero status. This can occur if the total
  2495.  * frame size (number of bytes between the time DCD goes active
  2496.  * to the time DCD goes inactive) exceeds 65535 bytes. In this
  2497.  * case the 16C32 has underrun on the RCC count and appears to
  2498.  * stop updating this counter to let us know the actual received
  2499.  * frame size. If this happens (non-zero status and zero RCC),
  2500.  * simply return the entire RxDMA Buffer
  2501.  */
  2502. if ( status ) {
  2503. /*
  2504.  * In the event that the final RxDMA Buffer is
  2505.  * terminated with a non-zero status and the RCC
  2506.  * field is zero, we interpret this as the RCC
  2507.  * having underflowed (received frame > 65535 bytes).
  2508.  *
  2509.  * Signal the event to the user by passing back
  2510.  * a status of RxStatus_CrcError returning the full
  2511.  * buffer and let the app figure out what data is
  2512.  * actually valid
  2513.  */
  2514. if ( info->rx_buffer_list[CurrentIndex].rcc )
  2515. framesize = RCLRVALUE - info->rx_buffer_list[CurrentIndex].rcc;
  2516. else
  2517. framesize = DMABUFFERSIZE;
  2518. }
  2519. else
  2520. framesize = DMABUFFERSIZE;
  2521. }
  2522. if ( framesize > DMABUFFERSIZE ) {
  2523. /*
  2524.  * if running in raw sync mode, ISR handler for
  2525.  * End Of Buffer events terminates all buffers at 4K.
  2526.  * If this frame size is said to be >4K, get the
  2527.  * actual number of bytes of the frame in this buffer.
  2528.  */
  2529. framesize = framesize % DMABUFFERSIZE;
  2530. }
  2531. if ( debug_level >= DEBUG_LEVEL_BH )
  2532. printk("%s(%d):mgsl_get_raw_rx_frame(%s) status=%04X size=%dn",
  2533. __FILE__,__LINE__,info->device_name,status,framesize);
  2534. if ( debug_level >= DEBUG_LEVEL_DATA )
  2535. mgsl_trace_block(info,info->rx_buffer_list[CurrentIndex].virt_addr,
  2536. MIN(framesize,DMABUFFERSIZE),0);
  2537. if (framesize) {
  2538. /* copy dma buffer(s) to contiguous intermediate buffer */
  2539. /* NOTE: we never copy more than DMABUFFERSIZE bytes */
  2540. pBufEntry = &(info->rx_buffer_list[CurrentIndex]);
  2541. memcpy( info->intermediate_rxbuffer, pBufEntry->virt_addr, framesize);
  2542. info->icount.rxok++;
  2543. /* Call the line discipline receive callback directly. */
  2544. if ( tty && tty->ldisc.receive_buf )
  2545. tty->ldisc.receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);
  2546. }
  2547. /* Free the buffers used by this frame. */
  2548. mgsl_free_rx_frame_buffers( info, CurrentIndex, CurrentIndex );
  2549. ReturnCode = 1;
  2550. }
  2551. if ( info->rx_enabled && info->rx_overflow ) {
  2552. /* The receiver needs to restarted because of
  2553.  * a receive overflow (buffer or FIFO). If the
  2554.  * receive buffers are now empty, then restart receiver.
  2555.  */
  2556. if ( !info->rx_buffer_list[CurrentIndex].status &&
  2557. info->rx_buffer_list[CurrentIndex].count ) {
  2558. spin_lock_irqsave(&info->irq_spinlock,flags);
  2559. usc_start_receiver(info);
  2560. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2561. }
  2562. }
  2563. return ReturnCode;
  2564. } /* end of mgsl_get_raw_rx_frame() */
  2565. /* mgsl_load_tx_dma_buffer()
  2566.  * 
  2567.  *  Load the transmit DMA buffer with the specified data.
  2568.  * 
  2569.  * Arguments:
  2570.  * 
  2571.  *  info pointer to device extension
  2572.  *  Buffer pointer to buffer containing frame to load
  2573.  *  BufferSize size in bytes of frame in Buffer
  2574.  * 
  2575.  * Return Value:  None
  2576.  */
  2577. void mgsl_load_tx_dma_buffer(struct mgsl_struct *info, const char *Buffer,
  2578.  unsigned int BufferSize)
  2579. {
  2580. unsigned short Copycount;
  2581. unsigned int i = 0;
  2582. DMABUFFERENTRY *pBufEntry;
  2583. if ( debug_level >= DEBUG_LEVEL_DATA )
  2584. mgsl_trace_block(info,Buffer, MIN(BufferSize,DMABUFFERSIZE), 1);
  2585. if (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) {
  2586. /* set CMR:13 to start transmit when
  2587.  * next GoAhead (abort) is received
  2588.  */
  2589.   info->cmr_value |= BIT13;   
  2590. }
  2591. /* begin loading the frame in the next available tx dma
  2592.  * buffer, remember it's starting location for setting
  2593.  * up tx dma operation
  2594.  */
  2595. i = info->current_tx_buffer;
  2596. info->start_tx_dma_buffer = i;
  2597. /* Setup the status and RCC (Frame Size) fields of the 1st */
  2598. /* buffer entry in the transmit DMA buffer list. */
  2599. info->tx_buffer_list[i].status = info->cmr_value & 0xf000;
  2600. info->tx_buffer_list[i].rcc    = BufferSize;
  2601. info->tx_buffer_list[i].count  = BufferSize;
  2602. /* Copy frame data from 1st source buffer to the DMA buffers. */
  2603. /* The frame data may span multiple DMA buffers. */
  2604. while( BufferSize ){
  2605. /* Get a pointer to next DMA buffer entry. */
  2606. pBufEntry = &info->tx_buffer_list[i++];
  2607. if ( i == info->tx_buffer_count )
  2608. i=0;
  2609. /* Calculate the number of bytes that can be copied from */
  2610. /* the source buffer to this DMA buffer. */
  2611. if ( BufferSize > DMABUFFERSIZE )
  2612. Copycount = DMABUFFERSIZE;
  2613. else
  2614. Copycount = BufferSize;
  2615. /* Actually copy data from source buffer to DMA buffer. */
  2616. /* Also set the data count for this individual DMA buffer. */
  2617. if ( info->bus_type == MGSL_BUS_TYPE_PCI )
  2618. mgsl_load_pci_memory(pBufEntry->virt_addr, Buffer,Copycount);
  2619. else
  2620. memcpy(pBufEntry->virt_addr, Buffer, Copycount);
  2621. pBufEntry->count = Copycount;
  2622. /* Advance source pointer and reduce remaining data count. */
  2623. Buffer += Copycount;
  2624. BufferSize -= Copycount;
  2625. ++info->tx_dma_buffers_used;
  2626. }
  2627. /* remember next available tx dma buffer */
  2628. info->current_tx_buffer = i;
  2629. } /* end of mgsl_load_tx_dma_buffer() */
  2630. /*
  2631.  * mgsl_register_test()
  2632.  * 
  2633.  *  Performs a register test of the 16C32.
  2634.  * 
  2635.  * Arguments: info pointer to device instance data
  2636.  * Return Value: TRUE if test passed, otherwise FALSE
  2637.  */
  2638. BOOLEAN mgsl_register_test( struct mgsl_struct *info )
  2639. {
  2640. static unsigned short BitPatterns[] =
  2641. { 0x0000, 0xffff, 0xaaaa, 0x5555, 0x1234, 0x6969, 0x9696, 0x0f0f };
  2642. static unsigned int Patterncount = sizeof(BitPatterns)/sizeof(unsigned short);
  2643. unsigned int i;
  2644. BOOLEAN rc = TRUE;
  2645. unsigned long flags;
  2646. spin_lock_irqsave(&info->irq_spinlock,flags);
  2647. usc_reset(info);
  2648. /* Verify the reset state of some registers. */
  2649. if ( (usc_InReg( info, SICR ) != 0) ||
  2650.   (usc_InReg( info, IVR  ) != 0) ||
  2651.   (usc_InDmaReg( info, DIVR ) != 0) ){
  2652. rc = FALSE;
  2653. }
  2654. if ( rc == TRUE ){
  2655. /* Write bit patterns to various registers but do it out of */
  2656. /* sync, then read back and verify values. */
  2657. for ( i = 0 ; i < Patterncount ; i++ ) {
  2658. usc_OutReg( info, TC0R, BitPatterns[i] );
  2659. usc_OutReg( info, TC1R, BitPatterns[(i+1)%Patterncount] );
  2660. usc_OutReg( info, TCLR, BitPatterns[(i+2)%Patterncount] );
  2661. usc_OutReg( info, RCLR, BitPatterns[(i+3)%Patterncount] );
  2662. usc_OutReg( info, RSR,  BitPatterns[(i+4)%Patterncount] );
  2663. usc_OutDmaReg( info, TBCR, BitPatterns[(i+5)%Patterncount] );
  2664. if ( (usc_InReg( info, TC0R ) != BitPatterns[i]) ||
  2665.   (usc_InReg( info, TC1R ) != BitPatterns[(i+1)%Patterncount]) ||
  2666.   (usc_InReg( info, TCLR ) != BitPatterns[(i+2)%Patterncount]) ||
  2667.   (usc_InReg( info, RCLR ) != BitPatterns[(i+3)%Patterncount]) ||
  2668.   (usc_InReg( info, RSR )  != BitPatterns[(i+4)%Patterncount]) ||
  2669.   (usc_InDmaReg( info, TBCR ) != BitPatterns[(i+5)%Patterncount]) ){
  2670. rc = FALSE;
  2671. break;
  2672. }
  2673. }
  2674. }
  2675. usc_reset(info);
  2676. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2677. return rc;
  2678. } /* end of mgsl_register_test() */
  2679. /* mgsl_irq_test()  Perform interrupt test of the 16C32.
  2680.  * 
  2681.  * Arguments: info pointer to device instance data
  2682.  * Return Value: TRUE if test passed, otherwise FALSE
  2683.  */
  2684. BOOLEAN mgsl_irq_test( struct mgsl_struct *info )
  2685. {
  2686. unsigned long EndTime;
  2687. unsigned long flags;
  2688. spin_lock_irqsave(&info->irq_spinlock,flags);
  2689. usc_reset(info);
  2690. /*
  2691.  * Setup 16C32 to interrupt on TxC pin (14MHz clock) transition. 
  2692.  * The ISR sets irq_occurred to 1. 
  2693.  */
  2694. info->irq_occurred = FALSE;
  2695. /* Enable INTEN gate for ISA adapter (Port 6, Bit12) */
  2696. /* Enable INTEN (Port 6, Bit12) */
  2697. /* This connects the IRQ request signal to the ISA bus */
  2698. /* on the ISA adapter. This has no effect for the PCI adapter */
  2699. usc_OutReg( info, PCR, (unsigned short)((usc_InReg(info, PCR) | BIT13) & ~BIT12) );
  2700. usc_EnableMasterIrqBit(info);
  2701. usc_EnableInterrupts(info, IO_PIN);
  2702. usc_ClearIrqPendingBits(info, IO_PIN);
  2703. usc_UnlatchIostatusBits(info, MISCSTATUS_TXC_LATCHED);
  2704. usc_EnableStatusIrqs(info, SICR_TXC_ACTIVE + SICR_TXC_INACTIVE);
  2705. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2706. EndTime=100;
  2707. while( EndTime-- && !info->irq_occurred ) {
  2708. set_current_state(TASK_INTERRUPTIBLE);
  2709. schedule_timeout(jiffies_from_ms(10));
  2710. }
  2711. spin_lock_irqsave(&info->irq_spinlock,flags);
  2712. usc_reset(info);
  2713. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2714. if ( !info->irq_occurred ) 
  2715. return FALSE;
  2716. else
  2717. return TRUE;
  2718. } /* end of mgsl_irq_test() */
  2719. /* mgsl_dma_test()
  2720.  * 
  2721.  *  Perform a DMA test of the 16C32. A small frame is
  2722.  *  transmitted via DMA from a transmit buffer to a receive buffer
  2723.  *  using single buffer DMA mode.
  2724.  * 
  2725.  * Arguments: info pointer to device instance data
  2726.  * Return Value: TRUE if test passed, otherwise FALSE
  2727.  */
  2728. BOOLEAN mgsl_dma_test( struct mgsl_struct *info )
  2729. {
  2730. unsigned short FifoLevel;
  2731. unsigned long phys_addr;
  2732. unsigned int FrameSize;
  2733. unsigned int i;
  2734. char *TmpPtr;
  2735. BOOLEAN rc = TRUE;
  2736. unsigned short status=0;
  2737. unsigned long EndTime;
  2738. unsigned long flags;
  2739. MGSL_PARAMS tmp_params;
  2740. /* save current port options */
  2741. memcpy(&tmp_params,&info->params,sizeof(MGSL_PARAMS));
  2742. /* load default port options */
  2743. memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
  2744. #define TESTFRAMESIZE 40
  2745. spin_lock_irqsave(&info->irq_spinlock,flags);
  2746. /* setup 16C32 for SDLC DMA transfer mode */
  2747. usc_reset(info);
  2748. usc_set_sdlc_mode(info);
  2749. usc_enable_loopback(info,1);
  2750. /* Reprogram the RDMR so that the 16C32 does NOT clear the count
  2751.  * field of the buffer entry after fetching buffer address. This
  2752.  * way we can detect a DMA failure for a DMA read (which should be
  2753.  * non-destructive to system memory) before we try and write to
  2754.  * memory (where a failure could corrupt system memory).
  2755.  */
  2756. /* Receive DMA mode Register (RDMR)
  2757.  * 
  2758.  * <15..14> 11 DMA mode = Linked List Buffer mode
  2759.  * <13> 1 RSBinA/L = store Rx status Block in List entry
  2760.  * <12> 0 1 = Clear count of List Entry after fetching
  2761.  * <11..10> 00 Address mode = Increment
  2762.  * <9> 1 Terminate Buffer on RxBound
  2763.  * <8> 0 Bus Width = 16bits
  2764.  * <7..0> ? status Bits (write as 0s)
  2765.  * 
  2766.  * 1110 0010 0000 0000 = 0xe200
  2767.  */
  2768. usc_OutDmaReg( info, RDMR, 0xe200 );
  2769. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2770. /* SETUP TRANSMIT AND RECEIVE DMA BUFFERS */
  2771. FrameSize = TESTFRAMESIZE;
  2772. /* setup 1st transmit buffer entry: */
  2773. /* with frame size and transmit control word */
  2774. info->tx_buffer_list[0].count  = FrameSize;
  2775. info->tx_buffer_list[0].rcc    = FrameSize;
  2776. info->tx_buffer_list[0].status = 0x4000;
  2777. /* build a transmit frame in 1st transmit DMA buffer */
  2778. TmpPtr = info->tx_buffer_list[0].virt_addr;
  2779. for (i = 0; i < FrameSize; i++ )
  2780. *TmpPtr++ = i;
  2781. /* setup 1st receive buffer entry: */
  2782. /* clear status, set max receive buffer size */
  2783. info->rx_buffer_list[0].status = 0;
  2784. info->rx_buffer_list[0].count = FrameSize + 4;
  2785. /* zero out the 1st receive buffer */
  2786. memset( info->rx_buffer_list[0].virt_addr, 0, FrameSize + 4 );
  2787. /* Set count field of next buffer entries to prevent */
  2788. /* 16C32 from using buffers after the 1st one. */
  2789. info->tx_buffer_list[1].count = 0;
  2790. info->rx_buffer_list[1].count = 0;
  2791. /***************************/
  2792. /* Program 16C32 receiver. */
  2793. /***************************/
  2794. spin_lock_irqsave(&info->irq_spinlock,flags);
  2795. /* setup DMA transfers */
  2796. usc_RTCmd( info, RTCmd_PurgeRxFifo );
  2797. /* program 16C32 receiver with physical address of 1st DMA buffer entry */
  2798. phys_addr = info->rx_buffer_list[0].phys_entry;
  2799. usc_OutDmaReg( info, NRARL, (unsigned short)phys_addr );
  2800. usc_OutDmaReg( info, NRARU, (unsigned short)(phys_addr >> 16) );
  2801. /* Clear the Rx DMA status bits (read RDMR) and start channel */
  2802. usc_InDmaReg( info, RDMR );
  2803. usc_DmaCmd( info, DmaCmd_InitRxChannel );
  2804. /* Enable Receiver (RMR <1..0> = 10) */
  2805. usc_OutReg( info, RMR, (unsigned short)((usc_InReg(info, RMR) & 0xfffc) | 0x0002) );
  2806. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2807. /*************************************************************/
  2808. /* WAIT FOR RECEIVER TO DMA ALL PARAMETERS FROM BUFFER ENTRY */
  2809. /*************************************************************/
  2810. /* Wait 100ms for interrupt. */
  2811. EndTime = jiffies + jiffies_from_ms(100);
  2812. for(;;) {
  2813. if ( jiffies > EndTime ) {
  2814. rc = FALSE;
  2815. break;
  2816. }
  2817. spin_lock_irqsave(&info->irq_spinlock,flags);
  2818. status = usc_InDmaReg( info, RDMR );
  2819. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2820. if ( !(status & BIT4) && (status & BIT5) ) {
  2821. /* INITG (BIT 4) is inactive (no entry read in progress) AND */
  2822. /* BUSY  (BIT 5) is active (channel still active). */
  2823. /* This means the buffer entry read has completed. */
  2824. break;
  2825. }
  2826. }
  2827. /******************************/
  2828. /* Program 16C32 transmitter. */
  2829. /******************************/
  2830. spin_lock_irqsave(&info->irq_spinlock,flags);
  2831. /* Program the Transmit Character Length Register (TCLR) */
  2832. /* and clear FIFO (TCC is loaded with TCLR on FIFO clear) */
  2833. usc_OutReg( info, TCLR, (unsigned short)info->tx_buffer_list[0].count );
  2834. usc_RTCmd( info, RTCmd_PurgeTxFifo );
  2835. /* Program the address of the 1st DMA Buffer Entry in linked list */
  2836. phys_addr = info->tx_buffer_list[0].phys_entry;
  2837. usc_OutDmaReg( info, NTARL, (unsigned short)phys_addr );
  2838. usc_OutDmaReg( info, NTARU, (unsigned short)(phys_addr >> 16) );
  2839. /* unlatch Tx status bits, and start transmit channel. */
  2840. usc_OutReg( info, TCSR, (unsigned short)(( usc_InReg(info, TCSR) & 0x0f00) | 0xfa) );
  2841. usc_DmaCmd( info, DmaCmd_InitTxChannel );
  2842. /* wait for DMA controller to fill transmit FIFO */
  2843. usc_TCmd( info, TCmd_SelectTicrTxFifostatus );
  2844. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2845. /**********************************/
  2846. /* WAIT FOR TRANSMIT FIFO TO FILL */
  2847. /**********************************/
  2848. /* Wait 100ms */
  2849. EndTime = jiffies + jiffies_from_ms(100);
  2850. for(;;) {
  2851. if ( jiffies > EndTime ) {
  2852. rc = FALSE;
  2853. break;
  2854. }
  2855. spin_lock_irqsave(&info->irq_spinlock,flags);
  2856. FifoLevel = usc_InReg(info, TICR) >> 8;
  2857. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2858. if ( FifoLevel < 16 )
  2859. break;
  2860. else
  2861. if ( FrameSize < 32 ) {
  2862. /* This frame is smaller than the entire transmit FIFO */
  2863. /* so wait for the entire frame to be loaded. */
  2864. if ( FifoLevel <= (32 - FrameSize) )
  2865. break;
  2866. }
  2867. }
  2868. if ( rc == TRUE )
  2869. {
  2870. /* Enable 16C32 transmitter. */
  2871. spin_lock_irqsave(&info->irq_spinlock,flags);
  2872. /* Transmit mode Register (TMR), <1..0> = 10, Enable Transmitter */
  2873. usc_TCmd( info, TCmd_SendFrame );
  2874. usc_OutReg( info, TMR, (unsigned short)((usc_InReg(info, TMR) & 0xfffc) | 0x0002) );
  2875. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2876. /******************************/
  2877. /* WAIT FOR TRANSMIT COMPLETE */
  2878. /******************************/
  2879. /* Wait 100ms */
  2880. EndTime = jiffies + jiffies_from_ms(100);
  2881. /* While timer not expired wait for transmit complete */
  2882. spin_lock_irqsave(&info->irq_spinlock,flags);
  2883. status = usc_InReg( info, TCSR );
  2884. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2885. while ( !(status & (BIT6+BIT5+BIT4+BIT2+BIT1)) ) {
  2886. if ( jiffies > EndTime ) {
  2887. rc = FALSE;
  2888. break;
  2889. }
  2890. spin_lock_irqsave(&info->irq_spinlock,flags);
  2891. status = usc_InReg( info, TCSR );
  2892. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2893. }
  2894. }
  2895. if ( rc == TRUE ){
  2896. /* CHECK FOR TRANSMIT ERRORS */
  2897. if ( status & (BIT5 + BIT1) ) 
  2898. rc = FALSE;
  2899. }
  2900. if ( rc == TRUE ) {
  2901. /* WAIT FOR RECEIVE COMPLETE */
  2902. /* Wait 100ms */
  2903. EndTime = jiffies + jiffies_from_ms(100);
  2904. /* Wait for 16C32 to write receive status to buffer entry. */
  2905. status=info->rx_buffer_list[0].status;
  2906. while ( status == 0 ) {
  2907. if ( jiffies > EndTime ) {
  2908. printk(KERN_ERR"mark 4n");
  2909. rc = FALSE;
  2910. break;
  2911. }
  2912. status=info->rx_buffer_list[0].status;
  2913. }
  2914. }
  2915. if ( rc == TRUE ) {
  2916. /* CHECK FOR RECEIVE ERRORS */
  2917. status = info->rx_buffer_list[0].status;
  2918. if ( status & (BIT8 + BIT3 + BIT1) ) {
  2919. /* receive error has occured */
  2920. rc = FALSE;
  2921. } else {
  2922. if ( memcmp( info->tx_buffer_list[0].virt_addr ,
  2923. info->rx_buffer_list[0].virt_addr, FrameSize ) ){
  2924. rc = FALSE;
  2925. }
  2926. }
  2927. }
  2928. spin_lock_irqsave(&info->irq_spinlock,flags);
  2929. usc_reset( info );
  2930. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  2931. /* restore current port options */
  2932. memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
  2933. return rc;
  2934. } /* end of mgsl_dma_test() */
  2935. /* mgsl_adapter_test()
  2936.  * 
  2937.  *  Perform the register, IRQ, and DMA tests for the 16C32.
  2938.  * 
  2939.  * Arguments: info pointer to device instance data
  2940.  * Return Value: 0 if success, otherwise -ENODEV
  2941.  */
  2942. int mgsl_adapter_test( struct mgsl_struct *info )
  2943. {
  2944. if ( debug_level >= DEBUG_LEVEL_INFO )
  2945. printk( "%s(%d):Testing device %sn",
  2946. __FILE__,__LINE__,info->device_name );
  2947. if ( !mgsl_register_test( info ) ) {
  2948. info->init_error = DiagStatus_AddressFailure;
  2949. printk( "%s(%d):Register test failure for device %s Addr=%04Xn",
  2950. __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
  2951. return -ENODEV;
  2952. }
  2953. if ( !mgsl_irq_test( info ) ) {
  2954. info->init_error = DiagStatus_IrqFailure;
  2955. printk( "%s(%d):Interrupt test failure for device %s IRQ=%dn",
  2956. __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
  2957. return -ENODEV;
  2958. }
  2959. if ( !mgsl_dma_test( info ) ) {
  2960. info->init_error = DiagStatus_DmaFailure;
  2961. printk( "%s(%d):DMA test failure for device %s DMA=%dn",
  2962. __FILE__,__LINE__,info->device_name, (unsigned short)(info->dma_level) );
  2963. return -ENODEV;
  2964. }
  2965. if ( debug_level >= DEBUG_LEVEL_INFO )
  2966. printk( "%s(%d):device %s passed diagnosticsn",
  2967. __FILE__,__LINE__,info->device_name );
  2968. return 0;
  2969. } /* end of mgsl_adapter_test() */
  2970. /* mgsl_memory_test()
  2971.  * 
  2972.  *  Test the shared memory on a PCI adapter.
  2973.  * 
  2974.  * Arguments: info pointer to device instance data
  2975.  * Return Value: TRUE if test passed, otherwise FALSE
  2976.  */
  2977. BOOLEAN mgsl_memory_test( struct mgsl_struct *info )
  2978. {
  2979. static unsigned long BitPatterns[] = { 0x0, 0x55555555, 0xaaaaaaaa,
  2980. 0x66666666, 0x99999999, 0xffffffff, 0x12345678 };
  2981. unsigned long Patterncount = sizeof(BitPatterns)/sizeof(unsigned long);
  2982. unsigned long i;
  2983. unsigned long TestLimit = SHARED_MEM_ADDRESS_SIZE/sizeof(unsigned long);
  2984. unsigned long * TestAddr;
  2985. if ( info->bus_type != MGSL_BUS_TYPE_PCI )
  2986. return TRUE;
  2987. TestAddr = (unsigned long *)info->memory_base;
  2988. /* Test data lines with test pattern at one location. */
  2989. for ( i = 0 ; i < Patterncount ; i++ ) {
  2990. *TestAddr = BitPatterns[i];
  2991. if ( *TestAddr != BitPatterns[i] )
  2992. return FALSE;
  2993. }
  2994. /* Test address lines with incrementing pattern over */
  2995. /* entire address range. */
  2996. for ( i = 0 ; i < TestLimit ; i++ ) {
  2997. *TestAddr = i * 4;
  2998. TestAddr++;
  2999. }
  3000. TestAddr = (unsigned long *)info->memory_base;
  3001. for ( i = 0 ; i < TestLimit ; i++ ) {
  3002. if ( *TestAddr != i * 4 )
  3003. return FALSE;
  3004. TestAddr++;
  3005. }
  3006. memset( info->memory_base, 0, SHARED_MEM_ADDRESS_SIZE );
  3007. return TRUE;
  3008. } /* End Of mgsl_memory_test() */
  3009. /* mgsl_load_pci_memory()
  3010.  * 
  3011.  *  Load a large block of data into the PCI shared memory.
  3012.  *  Use this instead of memcpy() or memmove() to move data
  3013.  *  into the PCI shared memory.
  3014.  * 
  3015.  * Notes:
  3016.  * 
  3017.  *  This function prevents the PCI9050 interface chip from hogging
  3018.  *  the adapter local bus, which can starve the 16C32 by preventing
  3019.  *  16C32 bus master cycles.
  3020.  * 
  3021.  *  The PCI9050 documentation says that the 9050 will always release
  3022.  *  control of the local bus after completing the current read
  3023.  *  or write operation.
  3024.  * 
  3025.  *  It appears that as long as the PCI9050 write FIFO is full, the
  3026.  *  PCI9050 treats all of the writes as a single burst transaction
  3027.  *  and will not release the bus. This causes DMA latency problems
  3028.  *  at high speeds when copying large data blocks to the shared
  3029.  *  memory.
  3030.  * 
  3031.  *  This function in effect, breaks the a large shared memory write
  3032.  *  into multiple transations by interleaving a shared memory read
  3033.  *  which will flush the write FIFO and 'complete' the write
  3034.  *  transation. This allows any pending DMA request to gain control
  3035.  *  of the local bus in a timely fasion.
  3036.  * 
  3037.  * Arguments:
  3038.  * 
  3039.  *  TargetPtr pointer to target address in PCI shared memory
  3040.  *  SourcePtr pointer to source buffer for data
  3041.  *  count count in bytes of data to copy
  3042.  *
  3043.  * Return Value: None
  3044.  */
  3045. void mgsl_load_pci_memory( char* TargetPtr, const char* SourcePtr, 
  3046. unsigned short count )
  3047. {
  3048. /* 16 32-bit writes @ 60ns each = 960ns max latency on local bus */
  3049. #define PCI_LOAD_INTERVAL 64
  3050. unsigned short Intervalcount = count / PCI_LOAD_INTERVAL;
  3051. unsigned short Index;
  3052. unsigned long Dummy;
  3053. for ( Index = 0 ; Index < Intervalcount ; Index++ )
  3054. {
  3055. memcpy(TargetPtr, SourcePtr, PCI_LOAD_INTERVAL);
  3056. Dummy = *((volatile unsigned long *)TargetPtr);
  3057. TargetPtr += PCI_LOAD_INTERVAL;
  3058. SourcePtr += PCI_LOAD_INTERVAL;
  3059. }
  3060. memcpy( TargetPtr, SourcePtr, count % PCI_LOAD_INTERVAL );
  3061. } /* End Of mgsl_load_pci_memory() */
  3062. void mgsl_trace_block(struct mgsl_struct *info,const char* data, int count, int xmit)
  3063. {
  3064. int i;
  3065. int linecount;
  3066. if (xmit)
  3067. printk("%s tx data:n",info->device_name);
  3068. else
  3069. printk("%s rx data:n",info->device_name);
  3070. while(count) {
  3071. if (count > 16)
  3072. linecount = 16;
  3073. else
  3074. linecount = count;
  3075. for(i=0;i<linecount;i++)
  3076. printk("%02X ",(unsigned char)data[i]);
  3077. for(;i<17;i++)
  3078. printk("   ");
  3079. for(i=0;i<linecount;i++) {
  3080. if (data[i]>=040 && data[i]<=0176)
  3081. printk("%c",data[i]);
  3082. else
  3083. printk(".");
  3084. }
  3085. printk("n");
  3086. data  += linecount;
  3087. count -= linecount;
  3088. }
  3089. } /* end of mgsl_trace_block() */
  3090. /* mgsl_tx_timeout()
  3091.  * 
  3092.  *  called when HDLC frame times out
  3093.  *  update stats and do tx completion processing
  3094.  * 
  3095.  * Arguments: context pointer to device instance data
  3096.  * Return Value: None
  3097.  */
  3098. void mgsl_tx_timeout(unsigned long context)
  3099. {
  3100. struct mgsl_struct *info = (struct mgsl_struct*)context;
  3101. unsigned long flags;
  3102. if ( debug_level >= DEBUG_LEVEL_INFO )
  3103. printk( "%s(%d):mgsl_tx_timeout(%s)n",
  3104. __FILE__,__LINE__,info->device_name);
  3105. if(info->tx_active &&
  3106.    (info->params.mode == MGSL_MODE_HDLC ||
  3107.     info->params.mode == MGSL_MODE_RAW) ) {
  3108. info->icount.txtimeout++;
  3109. }
  3110. spin_lock_irqsave(&info->irq_spinlock,flags);
  3111. info->tx_active = 0;
  3112. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  3113. if ( info->params.flags & HDLC_FLAG_HDLC_LOOPMODE )
  3114. usc_loopmode_cancel_transmit( info );
  3115. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3116. #ifdef CONFIG_SYNCLINK_SYNCPPP
  3117. if (info->netcount)
  3118. mgsl_sppp_tx_done(info);
  3119. else
  3120. #endif
  3121. mgsl_bh_transmit(info);
  3122. } /* end of mgsl_tx_timeout() */
  3123. /* signal that there are no more frames to send, so that
  3124.  * line is 'released' by echoing RxD to TxD when current
  3125.  * transmission is complete (or immediately if no tx in progress).
  3126.  */
  3127. static int mgsl_loopmode_send_done( struct mgsl_struct * info )
  3128. {
  3129. unsigned long flags;
  3130. spin_lock_irqsave(&info->irq_spinlock,flags);
  3131. if (info->params.flags & HDLC_FLAG_HDLC_LOOPMODE) {
  3132. if (info->tx_active)
  3133. info->loopmode_send_done_requested = TRUE;
  3134. else
  3135. usc_loopmode_send_done(info);
  3136. }
  3137. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3138. return 0;
  3139. }
  3140. /* release the line by echoing RxD to TxD
  3141.  * upon completion of a transmit frame
  3142.  */
  3143. void usc_loopmode_send_done( struct mgsl_struct * info )
  3144. {
  3145.   info->loopmode_send_done_requested = FALSE;
  3146.   /* clear CMR:13 to 0 to start echoing RxData to TxData */
  3147.   info->cmr_value &= ~BIT13;   
  3148.   usc_OutReg(info, CMR, info->cmr_value);
  3149. }
  3150. /* abort a transmit in progress while in HDLC LoopMode
  3151.  */
  3152. void usc_loopmode_cancel_transmit( struct mgsl_struct * info )
  3153. {
  3154.   /* reset tx dma channel and purge TxFifo */
  3155.   usc_RTCmd( info, RTCmd_PurgeTxFifo );
  3156.   usc_DmaCmd( info, DmaCmd_ResetTxChannel );
  3157.    usc_loopmode_send_done( info );
  3158. }
  3159. /* for HDLC/SDLC LoopMode, setting CMR:13 after the transmitter is enabled
  3160.  * is an Insert Into Loop action. Upon receipt of a GoAhead sequence (RxAbort)
  3161.  * we must clear CMR:13 to begin repeating TxData to RxData
  3162.  */
  3163. void usc_loopmode_insert_request( struct mgsl_struct * info )
  3164. {
  3165.   info->loopmode_insert_requested = TRUE;
  3166.  
  3167.   /* enable RxAbort irq. On next RxAbort, clear CMR:13 to
  3168.    * begin repeating TxData on RxData (complete insertion)
  3169.  */
  3170.   usc_OutReg( info, RICR, 
  3171. (usc_InReg( info, RICR ) | RXSTATUS_ABORT_RECEIVED ) );
  3172. /* set CMR:13 to insert into loop on next GoAhead (RxAbort) */
  3173. info->cmr_value |= BIT13;
  3174.   usc_OutReg(info, CMR, info->cmr_value);
  3175. }
  3176. /* return 1 if station is inserted into the loop, otherwise 0
  3177.  */
  3178. int usc_loopmode_active( struct mgsl_struct * info)
  3179. {
  3180.   return usc_InReg( info, CCSR ) & BIT7 ? 1 : 0 ;
  3181. }
  3182. /* return 1 if USC is in loop send mode, otherwise 0
  3183.  */
  3184. int usc_loopmode_send_active( struct mgsl_struct * info )
  3185. {
  3186. return usc_InReg( info, CCSR ) & BIT6 ? 1 : 0 ;
  3187. }   
  3188. #ifdef CONFIG_SYNCLINK_SYNCPPP
  3189. /* syncppp net device routines
  3190.  */
  3191. void mgsl_sppp_init(struct mgsl_struct *info)
  3192. {
  3193. struct net_device *d;
  3194. sprintf(info->netname,"mgsl%d",info->line);
  3195. info->if_ptr = &info->pppdev;
  3196. info->netdev = info->pppdev.dev = &info->netdevice;
  3197. sppp_attach(&info->pppdev);
  3198. d = info->netdev;
  3199. strcpy(d->name,info->netname);
  3200. d->base_addr = info->io_base;
  3201. d->irq = info->irq_level;
  3202. d->dma = info->dma_level;
  3203. d->priv = info;
  3204. d->init = NULL;
  3205. d->open = mgsl_sppp_open;
  3206. d->stop = mgsl_sppp_close;
  3207. d->hard_start_xmit = mgsl_sppp_tx;
  3208. d->do_ioctl = mgsl_sppp_ioctl;
  3209. d->get_stats = mgsl_net_stats;
  3210. d->tx_timeout = mgsl_sppp_tx_timeout;
  3211. d->watchdog_timeo = 10*HZ;
  3212. #if LINUX_VERSION_CODE < VERSION(2,4,4) 
  3213. dev_init_buffers(d);
  3214. #endif
  3215. if (register_netdev(d) == -1) {
  3216. printk(KERN_WARNING "%s: register_netdev failed.n", d->name);
  3217. sppp_detach(info->netdev);
  3218. return;
  3219. }
  3220. if (debug_level >= DEBUG_LEVEL_INFO)
  3221. printk("mgsl_sppp_init()n");
  3222. }
  3223. void mgsl_sppp_delete(struct mgsl_struct *info)
  3224. {
  3225. if (debug_level >= DEBUG_LEVEL_INFO)
  3226. printk("mgsl_sppp_delete(%s)n",info->netname);
  3227. sppp_detach(info->netdev);
  3228. unregister_netdev(info->netdev);
  3229. }
  3230. int mgsl_sppp_open(struct net_device *d)
  3231. {
  3232. struct mgsl_struct *info = d->priv;
  3233. int err;
  3234. unsigned long flags;
  3235. if (debug_level >= DEBUG_LEVEL_INFO)
  3236. printk("mgsl_sppp_open(%s)n",info->netname);
  3237. spin_lock_irqsave(&info->netlock, flags);
  3238. if (info->count != 0 || info->netcount != 0) {
  3239. printk(KERN_WARNING "%s: sppp_open returning busyn", info->netname);
  3240. spin_unlock_irqrestore(&info->netlock, flags);
  3241. return -EBUSY;
  3242. }
  3243. info->netcount=1;
  3244. MOD_INC_USE_COUNT;
  3245. spin_unlock_irqrestore(&info->netlock, flags);
  3246. /* claim resources and init adapter */
  3247. if ((err = startup(info)) != 0)
  3248. goto open_fail;
  3249. /* allow syncppp module to do open processing */
  3250. if ((err = sppp_open(d)) != 0) {
  3251. shutdown(info);
  3252. goto open_fail;
  3253. }
  3254. info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
  3255. mgsl_program_hw(info);
  3256. d->trans_start = jiffies;
  3257. netif_start_queue(d);
  3258. return 0;
  3259. open_fail:
  3260. spin_lock_irqsave(&info->netlock, flags);
  3261. info->netcount=0;
  3262. MOD_DEC_USE_COUNT;
  3263. spin_unlock_irqrestore(&info->netlock, flags);
  3264. return err;
  3265. }
  3266. void mgsl_sppp_tx_timeout(struct net_device *dev)
  3267. {
  3268. struct mgsl_struct *info = dev->priv;
  3269. unsigned long flags;
  3270. if (debug_level >= DEBUG_LEVEL_INFO)
  3271. printk("mgsl_sppp_tx_timeout(%s)n",info->netname);
  3272. info->netstats.tx_errors++;
  3273. info->netstats.tx_aborted_errors++;
  3274. spin_lock_irqsave(&info->irq_spinlock,flags);
  3275. usc_stop_transmitter(info);
  3276. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3277. netif_wake_queue(dev);
  3278. }
  3279. int mgsl_sppp_tx(struct sk_buff *skb, struct net_device *dev)
  3280. {
  3281. struct mgsl_struct *info = dev->priv;
  3282. unsigned long flags;
  3283. if (debug_level >= DEBUG_LEVEL_INFO)
  3284. printk("mgsl_sppp_tx(%s)n",info->netname);
  3285. netif_stop_queue(dev);
  3286. info->xmit_cnt = skb->len;
  3287. mgsl_load_tx_dma_buffer(info, skb->data, skb->len);
  3288. info->netstats.tx_packets++;
  3289. info->netstats.tx_bytes += skb->len;
  3290. dev_kfree_skb(skb);
  3291. dev->trans_start = jiffies;
  3292. spin_lock_irqsave(&info->irq_spinlock,flags);
  3293. if (!info->tx_active)
  3294.   usc_start_transmitter(info);
  3295. spin_unlock_irqrestore(&info->irq_spinlock,flags);
  3296. return 0;
  3297. }
  3298. int mgsl_sppp_close(struct net_device *d)
  3299. {
  3300. struct mgsl_struct *info = d->priv;
  3301. unsigned long flags;
  3302. if (debug_level >= DEBUG_LEVEL_INFO)
  3303. printk("mgsl_sppp_close(%s)n",info->netname);
  3304. /* shutdown adapter and release resources */
  3305. shutdown(info);
  3306. /* allow syncppp to do close processing */
  3307. sppp_close(d);
  3308. netif_stop_queue(d);
  3309. spin_lock_irqsave(&info->netlock, flags);
  3310. info->netcount=0;
  3311. MOD_DEC_USE_COUNT;
  3312. spin_unlock_irqrestore(&info->netlock, flags);
  3313. return 0;
  3314. }
  3315. void mgsl_sppp_rx_done(struct mgsl_struct *info, char *buf, int size)
  3316. {
  3317. struct sk_buff *skb = dev_alloc_skb(size);
  3318. if (debug_level >= DEBUG_LEVEL_INFO)
  3319. printk("mgsl_sppp_rx_done(%s)n",info->netname);
  3320. if (skb == NULL) {
  3321. printk(KERN_NOTICE "%s: cant alloc skb, dropping packetn",
  3322. info->netname);
  3323. info->netstats.rx_dropped++;
  3324. return;
  3325. }
  3326. memcpy(skb_put(skb, size),buf,size);
  3327. skb->protocol = htons(ETH_P_WAN_PPP);
  3328. skb->dev = info->netdev;
  3329. skb->mac.raw = skb->data;
  3330. info->netstats.rx_packets++;
  3331. info->netstats.rx_bytes += size;
  3332. netif_rx(skb);
  3333. info->netdev->trans_start = jiffies;
  3334. }
  3335. void mgsl_sppp_tx_done(struct mgsl_struct *info)
  3336. {
  3337. if (netif_queue_stopped(info->netdev))
  3338.     netif_wake_queue(info->netdev);
  3339. }
  3340. struct net_device_stats *mgsl_net_stats(struct net_device *dev)
  3341. {
  3342. struct mgsl_struct *info = dev->priv;
  3343. if (debug_level >= DEBUG_LEVEL_INFO)
  3344. printk("mgsl_net_stats(%s)n",info->netname);
  3345. return &info->netstats;
  3346. }
  3347. int mgsl_sppp_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  3348. {
  3349. struct mgsl_struct *info = (struct mgsl_struct *)dev->priv;
  3350. if (debug_level >= DEBUG_LEVEL_INFO)
  3351. printk("%s(%d):mgsl_ioctl %s cmd=%08Xn", __FILE__,__LINE__,
  3352. info->netname, cmd );
  3353. return sppp_do_ioctl(dev, ifr, cmd);
  3354. }
  3355. #endif /* ifdef CONFIG_SYNCLINK_SYNCPPP */
  3356. static int __init synclink_init_one (struct pci_dev *dev,
  3357.      const struct pci_device_id *ent)
  3358. {
  3359. struct mgsl_struct *info;
  3360. if (pci_enable_device(dev)) {
  3361. printk("error enabling pci device %pn", dev);
  3362. return -EIO;
  3363. }
  3364. if (!(info = mgsl_allocate_device())) {
  3365. printk("can't allocate device instance data.n");
  3366. return -EIO;
  3367. }
  3368.         /* Copy user configuration info to device instance data */
  3369. info->io_base = pci_resource_start(dev, 2);
  3370. info->irq_level = dev->irq;
  3371. info->phys_memory_base = pci_resource_start(dev, 3);
  3372.         /* Because veremap only works on page boundaries we must map
  3373.  * a larger area than is actually implemented for the LCR
  3374.  * memory range. We map a full page starting at the page boundary.
  3375.  */
  3376. info->phys_lcr_base = pci_resource_start(dev, 0);
  3377. info->lcr_offset    = info->phys_lcr_base & (PAGE_SIZE-1);
  3378. info->phys_lcr_base &= ~(PAGE_SIZE-1);
  3379. info->bus_type = MGSL_BUS_TYPE_PCI;
  3380. info->io_addr_size = 8;
  3381. info->irq_flags = SA_SHIRQ;
  3382. /* Store the PCI9050 misc control register value because a flaw
  3383.  * in the PCI9050 prevents LCR registers from being read if 
  3384.  * BIOS assigns an LCR base address with bit 7 set.
  3385.  *  
  3386.  * Only the misc control register is accessed for which only 
  3387.  * write access is needed, so set an initial value and change 
  3388.  * bits to the device instance data as we write the value
  3389.  * to the actual misc control register.
  3390.  */
  3391. info->misc_ctrl_value = 0x087e4546;
  3392. mgsl_add_device(info);
  3393. return 0;
  3394. }
  3395. static void __devexit synclink_remove_one (struct pci_dev *dev)
  3396. {
  3397. }