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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * drivers/char/vme_scc.c: MVME147, MVME162, BVME6000 SCC serial ports
  3.  * implementation.
  4.  * Copyright 1999 Richard Hirst <richard@sleepie.demon.co.uk>
  5.  *
  6.  * Based on atari_SCC.c which was
  7.  *   Copyright 1994-95 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
  8.  *   Partially based on PC-Linux serial.c by Linus Torvalds and Theodore Ts'o
  9.  *
  10.  * This file is subject to the terms and conditions of the GNU General Public
  11.  * License.  See the file COPYING in the main directory of this archive
  12.  * for more details.
  13.  *
  14.  */
  15. #include <linux/module.h>
  16. #include <linux/config.h>
  17. #include <linux/kdev_t.h>
  18. #include <asm/io.h>
  19. #include <linux/kernel.h>
  20. #include <linux/sched.h>
  21. #include <linux/ioport.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/errno.h>
  24. #include <linux/tty.h>
  25. #include <linux/tty_flip.h>
  26. #include <linux/mm.h>
  27. #include <linux/serial.h>
  28. #include <linux/fcntl.h>
  29. #include <linux/major.h>
  30. #include <linux/delay.h>
  31. #include <linux/tqueue.h>
  32. #include <linux/version.h>
  33. #include <linux/slab.h>
  34. #include <linux/miscdevice.h>
  35. #include <linux/console.h>
  36. #include <linux/init.h>
  37. #include <asm/setup.h>
  38. #include <asm/bootinfo.h>
  39. #ifdef CONFIG_MVME147_SCC
  40. #include <asm/mvme147hw.h>
  41. #endif
  42. #ifdef CONFIG_MVME162_SCC
  43. #include <asm/mvme16xhw.h>
  44. #endif
  45. #ifdef CONFIG_BVME6000_SCC
  46. #include <asm/bvme6000hw.h>
  47. #endif
  48. #include <linux/generic_serial.h>
  49. #include "scc.h"
  50. #define CHANNEL_A 0
  51. #define CHANNEL_B 1
  52. #define SCC_MINOR_BASE 64
  53. /* Shadows for all SCC write registers */
  54. static unsigned char scc_shadow[2][16];
  55. /* Location to access for SCC register access delay */
  56. static volatile unsigned char *scc_del = NULL;
  57. /* To keep track of STATUS_REG state for detection of Ext/Status int source */
  58. static unsigned char scc_last_status_reg[2];
  59. /***************************** Prototypes *****************************/
  60. /* Function prototypes */
  61. static void scc_disable_tx_interrupts(void * ptr);
  62. static void scc_enable_tx_interrupts(void * ptr);
  63. static void scc_disable_rx_interrupts(void * ptr);
  64. static void scc_enable_rx_interrupts(void * ptr);
  65. static int  scc_get_CD(void * ptr);
  66. static void scc_shutdown_port(void * ptr);
  67. static int scc_set_real_termios(void  *ptr);
  68. static void scc_hungup(void  *ptr);
  69. static void scc_close(void  *ptr);
  70. static int scc_chars_in_buffer(void * ptr);
  71. static int scc_open(struct tty_struct * tty, struct file * filp);
  72. static int scc_ioctl(struct tty_struct * tty, struct file * filp,
  73.                      unsigned int cmd, unsigned long arg);
  74. static void scc_throttle(struct tty_struct *tty);
  75. static void scc_unthrottle(struct tty_struct *tty);
  76. static void scc_tx_int(int irq, void *data, struct pt_regs *fp);
  77. static void scc_rx_int(int irq, void *data, struct pt_regs *fp);
  78. static void scc_stat_int(int irq, void *data, struct pt_regs *fp);
  79. static void scc_spcond_int(int irq, void *data, struct pt_regs *fp);
  80. static void scc_setsignals(struct scc_port *port, int dtr, int rts);
  81. static void scc_break_ctl(struct tty_struct *tty, int break_state);
  82. static struct tty_driver scc_driver, scc_callout_driver;
  83. static struct tty_struct *scc_table[2] = { NULL, };
  84. static struct termios * scc_termios[2];
  85. static struct termios * scc_termios_locked[2];
  86. struct scc_port scc_ports[2];
  87. int scc_refcount;
  88. int scc_initialized = 0;
  89. /*---------------------------------------------------------------------------
  90.  * Interface from generic_serial.c back here
  91.  *--------------------------------------------------------------------------*/
  92. static struct real_driver scc_real_driver = {
  93.         scc_disable_tx_interrupts,
  94.         scc_enable_tx_interrupts,
  95.         scc_disable_rx_interrupts,
  96.         scc_enable_rx_interrupts,
  97.         scc_get_CD,
  98.         scc_shutdown_port,
  99.         scc_set_real_termios,
  100.         scc_chars_in_buffer,
  101.         scc_close,
  102.         scc_hungup,
  103.         NULL
  104. };
  105. /*----------------------------------------------------------------------------
  106.  * vme_scc_init() and support functions
  107.  *---------------------------------------------------------------------------*/
  108. static int scc_init_drivers(void)
  109. {
  110. int error;
  111. memset(&scc_driver, 0, sizeof(scc_driver));
  112. scc_driver.magic = TTY_DRIVER_MAGIC;
  113. scc_driver.driver_name = "scc";
  114. scc_driver.name = "ttyS";
  115. scc_driver.major = TTY_MAJOR;
  116. scc_driver.minor_start = SCC_MINOR_BASE;
  117. scc_driver.num = 2;
  118. scc_driver.type = TTY_DRIVER_TYPE_SERIAL;
  119. scc_driver.subtype = SERIAL_TYPE_NORMAL;
  120. scc_driver.init_termios = tty_std_termios;
  121. scc_driver.init_termios.c_cflag =
  122.   B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  123. scc_driver.flags = TTY_DRIVER_REAL_RAW;
  124. scc_driver.refcount = &scc_refcount;
  125. scc_driver.table = scc_table;
  126. scc_driver.termios = scc_termios;
  127. scc_driver.termios_locked = scc_termios_locked;
  128. scc_driver.open = scc_open;
  129. scc_driver.close = gs_close;
  130. scc_driver.write = gs_write;
  131. scc_driver.put_char = gs_put_char;
  132. scc_driver.flush_chars = gs_flush_chars;
  133. scc_driver.write_room = gs_write_room;
  134. scc_driver.chars_in_buffer = gs_chars_in_buffer;
  135. scc_driver.flush_buffer = gs_flush_buffer;
  136. scc_driver.ioctl = scc_ioctl;
  137. scc_driver.throttle = scc_throttle;
  138. scc_driver.unthrottle = scc_unthrottle;
  139. scc_driver.set_termios = gs_set_termios;
  140. scc_driver.stop = gs_stop;
  141. scc_driver.start = gs_start;
  142. scc_driver.hangup = gs_hangup;
  143. scc_driver.break_ctl = scc_break_ctl;
  144. scc_callout_driver = scc_driver;
  145. scc_callout_driver.name = "cua";
  146. scc_callout_driver.major = TTYAUX_MAJOR;
  147. scc_callout_driver.subtype = SERIAL_TYPE_CALLOUT;
  148. if ((error = tty_register_driver(&scc_driver))) {
  149. printk(KERN_ERR "scc: Couldn't register scc driver, error = %dn",
  150.        error);
  151. return 1;
  152. }
  153. if ((error = tty_register_driver(&scc_callout_driver))) {
  154. tty_unregister_driver(&scc_driver);
  155. printk(KERN_ERR "scc: Couldn't register scc callout driver, error = %dn",
  156.        error);
  157. return 1;
  158. }
  159. return 0;
  160. }
  161. /* ports[] array is indexed by line no (i.e. [0] for ttyS0, [1] for ttyS1).
  162.  */
  163. static void scc_init_portstructs(void)
  164. {
  165. struct scc_port *port;
  166. int i;
  167. for (i = 0; i < 2; i++) {
  168. port = scc_ports + i;
  169. port->gs.callout_termios = tty_std_termios;
  170. port->gs.normal_termios = tty_std_termios;
  171. port->gs.magic = SCC_MAGIC;
  172. port->gs.close_delay = HZ/2;
  173. port->gs.closing_wait = 30 * HZ;
  174. port->gs.rd = &scc_real_driver;
  175. #ifdef NEW_WRITE_LOCKING
  176. port->gs.port_write_sem = MUTEX;
  177. #endif
  178. init_waitqueue_head(&port->gs.open_wait);
  179. init_waitqueue_head(&port->gs.close_wait);
  180. }
  181. }
  182. #ifdef CONFIG_MVME147_SCC
  183. static int mvme147_scc_init(void)
  184. {
  185. struct scc_port *port;
  186. printk("SCC: MVME147 Serial Drivern");
  187. /* Init channel A */
  188. port = &scc_ports[0];
  189. port->channel = CHANNEL_A;
  190. port->ctrlp = (volatile unsigned char *)M147_SCC_A_ADDR;
  191. port->datap = port->ctrlp + 1;
  192. port->port_a = &scc_ports[0];
  193. port->port_b = &scc_ports[1];
  194. request_irq(MVME147_IRQ_SCCA_TX, scc_tx_int, SA_INTERRUPT,
  195.             "SCC-A TX", port);
  196. request_irq(MVME147_IRQ_SCCA_STAT, scc_stat_int, SA_INTERRUPT,
  197.             "SCC-A status", port);
  198. request_irq(MVME147_IRQ_SCCA_RX, scc_rx_int, SA_INTERRUPT,
  199.             "SCC-A RX", port);
  200. request_irq(MVME147_IRQ_SCCA_SPCOND, scc_spcond_int, SA_INTERRUPT,
  201.             "SCC-A special cond", port);
  202. {
  203. SCC_ACCESS_INIT(port);
  204. /* disable interrupts for this channel */
  205. SCCwrite(INT_AND_DMA_REG, 0);
  206. /* Set the interrupt vector */
  207. SCCwrite(INT_VECTOR_REG, MVME147_IRQ_SCC_BASE);
  208. /* Interrupt parameters: vector includes status, status low */
  209. SCCwrite(MASTER_INT_CTRL, MIC_VEC_INCL_STAT);
  210. SCCmod(MASTER_INT_CTRL, 0xff, MIC_MASTER_INT_ENAB);
  211. }
  212. /* Init channel B */
  213. port = &scc_ports[1];
  214. port->channel = CHANNEL_B;
  215. port->ctrlp = (volatile unsigned char *)M147_SCC_B_ADDR;
  216. port->datap = port->ctrlp + 1;
  217. port->port_a = &scc_ports[0];
  218. port->port_b = &scc_ports[1];
  219. request_irq(MVME147_IRQ_SCCB_TX, scc_tx_int, SA_INTERRUPT,
  220.             "SCC-B TX", port);
  221. request_irq(MVME147_IRQ_SCCB_STAT, scc_stat_int, SA_INTERRUPT,
  222.             "SCC-B status", port);
  223. request_irq(MVME147_IRQ_SCCB_RX, scc_rx_int, SA_INTERRUPT,
  224.             "SCC-B RX", port);
  225. request_irq(MVME147_IRQ_SCCB_SPCOND, scc_spcond_int, SA_INTERRUPT,
  226.             "SCC-B special cond", port);
  227. {
  228. SCC_ACCESS_INIT(port);
  229. /* disable interrupts for this channel */
  230. SCCwrite(INT_AND_DMA_REG, 0);
  231. }
  232.         /* Ensure interrupts are enabled in the PCC chip */
  233.         m147_pcc->serial_cntrl=PCC_LEVEL_SERIAL|PCC_INT_ENAB;
  234. /* Initialise the tty driver structures and register */
  235. scc_init_portstructs();
  236. scc_init_drivers();
  237. return 0;
  238. }
  239. #endif
  240. #ifdef CONFIG_MVME162_SCC
  241. static int mvme162_scc_init(void)
  242. {
  243. struct scc_port *port;
  244. if (!(mvme16x_config & MVME16x_CONFIG_GOT_SCCA))
  245. return (-ENODEV);
  246. printk("SCC: MVME162 Serial Drivern");
  247. /* Init channel A */
  248. port = &scc_ports[0];
  249. port->channel = CHANNEL_A;
  250. port->ctrlp = (volatile unsigned char *)MVME_SCC_A_ADDR;
  251. port->datap = port->ctrlp + 2;
  252. port->port_a = &scc_ports[0];
  253. port->port_b = &scc_ports[1];
  254. request_irq(MVME162_IRQ_SCCA_TX, scc_tx_int, SA_INTERRUPT,
  255.             "SCC-A TX", port);
  256. request_irq(MVME162_IRQ_SCCA_STAT, scc_stat_int, SA_INTERRUPT,
  257.             "SCC-A status", port);
  258. request_irq(MVME162_IRQ_SCCA_RX, scc_rx_int, SA_INTERRUPT,
  259.             "SCC-A RX", port);
  260. request_irq(MVME162_IRQ_SCCA_SPCOND, scc_spcond_int, SA_INTERRUPT,
  261.             "SCC-A special cond", port);
  262. {
  263. SCC_ACCESS_INIT(port);
  264. /* disable interrupts for this channel */
  265. SCCwrite(INT_AND_DMA_REG, 0);
  266. /* Set the interrupt vector */
  267. SCCwrite(INT_VECTOR_REG, MVME162_IRQ_SCC_BASE);
  268. /* Interrupt parameters: vector includes status, status low */
  269. SCCwrite(MASTER_INT_CTRL, MIC_VEC_INCL_STAT);
  270. SCCmod(MASTER_INT_CTRL, 0xff, MIC_MASTER_INT_ENAB);
  271. }
  272. /* Init channel B */
  273. port = &scc_ports[1];
  274. port->channel = CHANNEL_B;
  275. port->ctrlp = (volatile unsigned char *)MVME_SCC_B_ADDR;
  276. port->datap = port->ctrlp + 2;
  277. port->port_a = &scc_ports[0];
  278. port->port_b = &scc_ports[1];
  279. request_irq(MVME162_IRQ_SCCB_TX, scc_tx_int, SA_INTERRUPT,
  280.             "SCC-B TX", port);
  281. request_irq(MVME162_IRQ_SCCB_STAT, scc_stat_int, SA_INTERRUPT,
  282.             "SCC-B status", port);
  283. request_irq(MVME162_IRQ_SCCB_RX, scc_rx_int, SA_INTERRUPT,
  284.             "SCC-B RX", port);
  285. request_irq(MVME162_IRQ_SCCB_SPCOND, scc_spcond_int, SA_INTERRUPT,
  286.             "SCC-B special cond", port);
  287. {
  288. SCC_ACCESS_INIT(port); /* Either channel will do */
  289. /* disable interrupts for this channel */
  290. SCCwrite(INT_AND_DMA_REG, 0);
  291. }
  292.         /* Ensure interrupts are enabled in the MC2 chip */
  293.         *(volatile char *)0xfff4201d = 0x14;
  294. /* Initialise the tty driver structures and register */
  295. scc_init_portstructs();
  296. scc_init_drivers();
  297. return 0;
  298. }
  299. #endif
  300. #ifdef CONFIG_BVME6000_SCC
  301. static int bvme6000_scc_init(void)
  302. {
  303. struct scc_port *port;
  304. printk("SCC: BVME6000 Serial Drivern");
  305. /* Init channel A */
  306. port = &scc_ports[0];
  307. port->channel = CHANNEL_A;
  308. port->ctrlp = (volatile unsigned char *)BVME_SCC_A_ADDR;
  309. port->datap = port->ctrlp + 4;
  310. port->port_a = &scc_ports[0];
  311. port->port_b = &scc_ports[1];
  312. request_irq(BVME_IRQ_SCCA_TX, scc_tx_int, SA_INTERRUPT,
  313.             "SCC-A TX", port);
  314. request_irq(BVME_IRQ_SCCA_STAT, scc_stat_int, SA_INTERRUPT,
  315.             "SCC-A status", port);
  316. request_irq(BVME_IRQ_SCCA_RX, scc_rx_int, SA_INTERRUPT,
  317.             "SCC-A RX", port);
  318. request_irq(BVME_IRQ_SCCA_SPCOND, scc_spcond_int, SA_INTERRUPT,
  319.             "SCC-A special cond", port);
  320. {
  321. SCC_ACCESS_INIT(port);
  322. /* disable interrupts for this channel */
  323. SCCwrite(INT_AND_DMA_REG, 0);
  324. /* Set the interrupt vector */
  325. SCCwrite(INT_VECTOR_REG, BVME_IRQ_SCC_BASE);
  326. /* Interrupt parameters: vector includes status, status low */
  327. SCCwrite(MASTER_INT_CTRL, MIC_VEC_INCL_STAT);
  328. SCCmod(MASTER_INT_CTRL, 0xff, MIC_MASTER_INT_ENAB);
  329. }
  330. /* Init channel B */
  331. port = &scc_ports[1];
  332. port->channel = CHANNEL_B;
  333. port->ctrlp = (volatile unsigned char *)BVME_SCC_B_ADDR;
  334. port->datap = port->ctrlp + 4;
  335. port->port_a = &scc_ports[0];
  336. port->port_b = &scc_ports[1];
  337. request_irq(BVME_IRQ_SCCB_TX, scc_tx_int, SA_INTERRUPT,
  338.             "SCC-B TX", port);
  339. request_irq(BVME_IRQ_SCCB_STAT, scc_stat_int, SA_INTERRUPT,
  340.             "SCC-B status", port);
  341. request_irq(BVME_IRQ_SCCB_RX, scc_rx_int, SA_INTERRUPT,
  342.             "SCC-B RX", port);
  343. request_irq(BVME_IRQ_SCCB_SPCOND, scc_spcond_int, SA_INTERRUPT,
  344.             "SCC-B special cond", port);
  345. {
  346. SCC_ACCESS_INIT(port); /* Either channel will do */
  347. /* disable interrupts for this channel */
  348. SCCwrite(INT_AND_DMA_REG, 0);
  349. }
  350. /* Initialise the tty driver structures and register */
  351. scc_init_portstructs();
  352. scc_init_drivers();
  353. return 0;
  354. }
  355. #endif
  356. int vme_scc_init(void)
  357. {
  358. int res = -ENODEV;
  359. static int called = 0;
  360. if (called)
  361. return res;
  362. called = 1;
  363. #ifdef CONFIG_MVME147_SCC
  364. if (MACH_IS_MVME147)
  365. res = mvme147_scc_init();
  366. #endif
  367. #ifdef CONFIG_MVME162_SCC
  368. if (MACH_IS_MVME16x)
  369. res = mvme162_scc_init();
  370. #endif
  371. #ifdef CONFIG_BVME6000_SCC
  372. if (MACH_IS_BVME6000)
  373. res = bvme6000_scc_init();
  374. #endif
  375. return res;
  376. }
  377. /*---------------------------------------------------------------------------
  378.  * Interrupt handlers
  379.  *--------------------------------------------------------------------------*/
  380. static void scc_rx_int(int irq, void *data, struct pt_regs *fp)
  381. {
  382. unsigned char ch;
  383. struct scc_port *port = data;
  384. struct tty_struct *tty = port->gs.tty;
  385. SCC_ACCESS_INIT(port);
  386. ch = SCCread_NB(RX_DATA_REG);
  387. if (!tty) {
  388. printk ("scc_rx_int with NULL tty!n");
  389. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  390. return;
  391. }
  392. if (tty->flip.count < TTY_FLIPBUF_SIZE) {
  393. *tty->flip.char_buf_ptr = ch;
  394. *tty->flip.flag_buf_ptr = 0;
  395. tty->flip.flag_buf_ptr++;
  396. tty->flip.char_buf_ptr++;
  397. tty->flip.count++;
  398. }
  399. /* Check if another character is already ready; in that case, the
  400.  * spcond_int() function must be used, because this character may have an
  401.  * error condition that isn't signalled by the interrupt vector used!
  402.  */
  403. if (SCCread(INT_PENDING_REG) &
  404.     (port->channel == CHANNEL_A ? IPR_A_RX : IPR_B_RX)) {
  405. scc_spcond_int (irq, data, fp);
  406. return;
  407. }
  408. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  409. tty_flip_buffer_push(tty);
  410. }
  411. static void scc_spcond_int(int irq, void *data, struct pt_regs *fp)
  412. {
  413. struct scc_port *port = data;
  414. struct tty_struct *tty = port->gs.tty;
  415. unsigned char stat, ch, err;
  416. int int_pending_mask = port->channel == CHANNEL_A ?
  417.                    IPR_A_RX : IPR_B_RX;
  418. SCC_ACCESS_INIT(port);
  419. if (!tty) {
  420. printk ("scc_spcond_int with NULL tty!n");
  421. SCCwrite(COMMAND_REG, CR_ERROR_RESET);
  422. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  423. return;
  424. }
  425. do {
  426. stat = SCCread(SPCOND_STATUS_REG);
  427. ch = SCCread_NB(RX_DATA_REG);
  428. if (stat & SCSR_RX_OVERRUN)
  429. err = TTY_OVERRUN;
  430. else if (stat & SCSR_PARITY_ERR)
  431. err = TTY_PARITY;
  432. else if (stat & SCSR_CRC_FRAME_ERR)
  433. err = TTY_FRAME;
  434. else
  435. err = 0;
  436. if (tty->flip.count < TTY_FLIPBUF_SIZE) {
  437. *tty->flip.char_buf_ptr = ch;
  438. *tty->flip.flag_buf_ptr = err;
  439. tty->flip.flag_buf_ptr++;
  440. tty->flip.char_buf_ptr++;
  441. tty->flip.count++;
  442. }
  443. /* ++TeSche: *All* errors have to be cleared manually,
  444.  * else the condition persists for the next chars
  445.  */
  446. if (err)
  447.   SCCwrite(COMMAND_REG, CR_ERROR_RESET);
  448. } while(SCCread(INT_PENDING_REG) & int_pending_mask);
  449. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  450. tty_flip_buffer_push(tty);
  451. }
  452. static void scc_tx_int(int irq, void *data, struct pt_regs *fp)
  453. {
  454. struct scc_port *port = data;
  455. SCC_ACCESS_INIT(port);
  456. if (!port->gs.tty) {
  457. printk ("scc_tx_int with NULL tty!n");
  458. SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
  459. SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET);
  460. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  461. return;
  462. }
  463. while ((SCCread_NB(STATUS_REG) & SR_TX_BUF_EMPTY)) {
  464. if (port->x_char) {
  465. SCCwrite(TX_DATA_REG, port->x_char);
  466. port->x_char = 0;
  467. }
  468. else if ((port->gs.xmit_cnt <= 0) || port->gs.tty->stopped ||
  469. port->gs.tty->hw_stopped)
  470. break;
  471. else {
  472. SCCwrite(TX_DATA_REG, port->gs.xmit_buf[port->gs.xmit_tail++]);
  473. port->gs.xmit_tail = port->gs.xmit_tail & (SERIAL_XMIT_SIZE-1);
  474. if (--port->gs.xmit_cnt <= 0)
  475. break;
  476. }
  477. }
  478. if ((port->gs.xmit_cnt <= 0) || port->gs.tty->stopped ||
  479. port->gs.tty->hw_stopped) {
  480. /* disable tx interrupts */
  481. SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
  482. SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET);   /* disable tx_int on next tx underrun? */
  483. port->gs.flags &= ~GS_TX_INTEN;
  484. }
  485. if (port->gs.tty && port->gs.xmit_cnt <= port->gs.wakeup_chars) {
  486. if ((port->gs.tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  487. port->gs.tty->ldisc.write_wakeup)
  488. (port->gs.tty->ldisc.write_wakeup)(port->gs.tty);
  489. wake_up_interruptible(&port->gs.tty->write_wait);
  490. }
  491. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  492. }
  493. static void scc_stat_int(int irq, void *data, struct pt_regs *fp)
  494. {
  495. struct scc_port *port = data;
  496. unsigned channel = port->channel;
  497. unsigned char last_sr, sr, changed;
  498. SCC_ACCESS_INIT(port);
  499. last_sr = scc_last_status_reg[channel];
  500. sr = scc_last_status_reg[channel] = SCCread_NB(STATUS_REG);
  501. changed = last_sr ^ sr;
  502. if (changed & SR_DCD) {
  503. port->c_dcd = !!(sr & SR_DCD);
  504. if (!(port->gs.flags & ASYNC_CHECK_CD))
  505. ; /* Don't report DCD changes */
  506. else if (port->c_dcd) {
  507. if (~(port->gs.flags & ASYNC_NORMAL_ACTIVE) ||
  508. ~(port->gs.flags & ASYNC_CALLOUT_ACTIVE)) {
  509. /* Are we blocking in open?*/
  510. wake_up_interruptible(&port->gs.open_wait);
  511. }
  512. }
  513. else {
  514. if (!((port->gs.flags & ASYNC_CALLOUT_ACTIVE) &&
  515. (port->gs.flags & ASYNC_CALLOUT_NOHUP))) {
  516. if (port->gs.tty)
  517. tty_hangup (port->gs.tty);
  518. }
  519. }
  520. }
  521. SCCwrite(COMMAND_REG, CR_EXTSTAT_RESET);
  522. SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
  523. }
  524. /*---------------------------------------------------------------------------
  525.  * generic_serial.c callback funtions
  526.  *--------------------------------------------------------------------------*/
  527. static void scc_disable_tx_interrupts(void *ptr)
  528. {
  529. struct scc_port *port = ptr;
  530. unsigned long flags;
  531. SCC_ACCESS_INIT(port);
  532. save_flags(flags);
  533. cli();
  534. SCCmod(INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
  535. port->gs.flags &= ~GS_TX_INTEN;
  536. restore_flags(flags);
  537. }
  538. static void scc_enable_tx_interrupts(void *ptr)
  539. {
  540. struct scc_port *port = ptr;
  541. unsigned long flags;
  542. SCC_ACCESS_INIT(port);
  543. save_flags(flags);
  544. cli();
  545. SCCmod(INT_AND_DMA_REG, 0xff, IDR_TX_INT_ENAB);
  546. /* restart the transmitter */
  547. scc_tx_int (0, port, 0);
  548. restore_flags(flags);
  549. }
  550. static void scc_disable_rx_interrupts(void *ptr)
  551. {
  552. struct scc_port *port = ptr;
  553. unsigned long flags;
  554. SCC_ACCESS_INIT(port);
  555. save_flags(flags);
  556. cli();
  557. SCCmod(INT_AND_DMA_REG,
  558.     ~(IDR_RX_INT_MASK|IDR_PARERR_AS_SPCOND|IDR_EXTSTAT_INT_ENAB), 0);
  559. restore_flags(flags);
  560. }
  561. static void scc_enable_rx_interrupts(void *ptr)
  562. {
  563. struct scc_port *port = ptr;
  564. unsigned long flags;
  565. SCC_ACCESS_INIT(port);
  566. save_flags(flags);
  567. cli();
  568. SCCmod(INT_AND_DMA_REG, 0xff,
  569. IDR_EXTSTAT_INT_ENAB|IDR_PARERR_AS_SPCOND|IDR_RX_INT_ALL);
  570. restore_flags(flags);
  571. }
  572. static int scc_get_CD(void *ptr)
  573. {
  574. struct scc_port *port = ptr;
  575. unsigned channel = port->channel;
  576. return !!(scc_last_status_reg[channel] & SR_DCD);
  577. }
  578. static void scc_shutdown_port(void *ptr)
  579. {
  580. struct scc_port *port = ptr;
  581. port->gs.flags &= ~ GS_ACTIVE;
  582. if (port->gs.tty && port->gs.tty->termios->c_cflag & HUPCL) {
  583. scc_setsignals (port, 0, 0);
  584. }
  585. }
  586. static int scc_set_real_termios (void *ptr)
  587. {
  588. /* the SCC has char sizes 5,7,6,8 in that order! */
  589. static int chsize_map[4] = { 0, 2, 1, 3 };
  590. unsigned cflag, baud, chsize, channel, brgval = 0;
  591. unsigned long flags;
  592. struct scc_port *port = ptr;
  593. SCC_ACCESS_INIT(port);
  594. if (!port->gs.tty || !port->gs.tty->termios) return 0;
  595. channel = port->channel;
  596. if (channel == CHANNEL_A)
  597. return 0; /* Settings controlled by boot PROM */
  598. cflag  = port->gs.tty->termios->c_cflag;
  599. baud = port->gs.baud;
  600. chsize = (cflag & CSIZE) >> 4;
  601. if (baud == 0) {
  602. /* speed == 0 -> drop DTR */
  603. save_flags(flags);
  604. cli();
  605. SCCmod(TX_CTRL_REG, ~TCR_DTR, 0);
  606. restore_flags(flags);
  607. return 0;
  608. }
  609. else if ((MACH_IS_MVME16x && (baud < 50 || baud > 38400)) ||
  610.  (MACH_IS_MVME147 && (baud < 50 || baud > 19200)) ||
  611.  (MACH_IS_BVME6000 &&(baud < 50 || baud > 76800))) {
  612. printk("SCC: Bad speed requested, %dn", baud);
  613. return 0;
  614. }
  615. if (cflag & CLOCAL)
  616. port->gs.flags &= ~ASYNC_CHECK_CD;
  617. else
  618. port->gs.flags |= ASYNC_CHECK_CD;
  619. #ifdef CONFIG_MVME147_SCC
  620. if (MACH_IS_MVME147)
  621. brgval = (M147_SCC_PCLK + baud/2) / (16 * 2 * baud) - 2;
  622. else
  623. #endif
  624. #ifdef CONFIG_MVME162_SCC
  625. if (MACH_IS_MVME16x)
  626. brgval = (MVME_SCC_PCLK + baud/2) / (16 * 2 * baud) - 2;
  627. else
  628. #endif
  629. #ifdef CONFIG_BVME6000_SCC
  630. if (MACH_IS_BVME6000)
  631. brgval = (BVME_SCC_RTxC + baud/2) / (16 * 2 * baud) - 2;
  632. #endif
  633. /* Now we have all parameters and can go to set them: */
  634. save_flags(flags);
  635. cli();
  636. /* receiver's character size and auto-enables */
  637. SCCmod(RX_CTRL_REG, ~(RCR_CHSIZE_MASK|RCR_AUTO_ENAB_MODE),
  638. (chsize_map[chsize] << 6) |
  639. ((cflag & CRTSCTS) ? RCR_AUTO_ENAB_MODE : 0));
  640. /* parity and stop bits (both, Tx and Rx), clock mode never changes */
  641. SCCmod (AUX1_CTRL_REG,
  642. ~(A1CR_PARITY_MASK | A1CR_MODE_MASK),
  643. ((cflag & PARENB
  644.   ? (cflag & PARODD ? A1CR_PARITY_ODD : A1CR_PARITY_EVEN)
  645.   : A1CR_PARITY_NONE)
  646.  | (cflag & CSTOPB ? A1CR_MODE_ASYNC_2 : A1CR_MODE_ASYNC_1)));
  647. /* sender's character size, set DTR for valid baud rate */
  648. SCCmod(TX_CTRL_REG, ~TCR_CHSIZE_MASK, chsize_map[chsize] << 5 | TCR_DTR);
  649. /* clock sources never change */
  650. /* disable BRG before changing the value */
  651. SCCmod(DPLL_CTRL_REG, ~DCR_BRG_ENAB, 0);
  652. /* BRG value */
  653. SCCwrite(TIMER_LOW_REG, brgval & 0xff);
  654. SCCwrite(TIMER_HIGH_REG, (brgval >> 8) & 0xff);
  655. /* BRG enable, and clock source never changes */
  656. SCCmod(DPLL_CTRL_REG, 0xff, DCR_BRG_ENAB);
  657. restore_flags(flags);
  658. return 0;
  659. }
  660. static int scc_chars_in_buffer (void *ptr)
  661. {
  662. struct scc_port *port = ptr;
  663. SCC_ACCESS_INIT(port);
  664. return (SCCread (SPCOND_STATUS_REG) & SCSR_ALL_SENT) ? 0  : 1;
  665. }
  666. static void scc_hungup(void *ptr)
  667. {
  668. scc_disable_tx_interrupts(ptr);
  669. scc_disable_rx_interrupts(ptr);
  670. MOD_DEC_USE_COUNT;
  671. }
  672. static void scc_close(void *ptr)
  673. {
  674. scc_disable_tx_interrupts(ptr);
  675. scc_disable_rx_interrupts(ptr);
  676. }
  677. /*---------------------------------------------------------------------------
  678.  * Internal support functions
  679.  *--------------------------------------------------------------------------*/
  680. static void scc_setsignals(struct scc_port *port, int dtr, int rts)
  681. {
  682. unsigned long flags;
  683. unsigned char t;
  684. SCC_ACCESS_INIT(port);
  685. save_flags(flags);
  686. t = SCCread(TX_CTRL_REG);
  687. if (dtr >= 0) t = dtr? (t | TCR_DTR): (t & ~TCR_DTR);
  688. if (rts >= 0) t = rts? (t | TCR_RTS): (t & ~TCR_RTS);
  689. SCCwrite(TX_CTRL_REG, t);
  690. restore_flags(flags);
  691. }
  692. static void scc_send_xchar(struct tty_struct *tty, char ch)
  693. {
  694. struct scc_port *port = (struct scc_port *)tty->driver_data;
  695. port->x_char = ch;
  696. if (ch)
  697. scc_enable_tx_interrupts(port);
  698. }
  699. /*---------------------------------------------------------------------------
  700.  * Driver entrypoints referenced from above
  701.  *--------------------------------------------------------------------------*/
  702. static int scc_open (struct tty_struct * tty, struct file * filp)
  703. {
  704. int line = MINOR(tty->device) - SCC_MINOR_BASE;
  705. int retval;
  706. struct scc_port *port = &scc_ports[line];
  707. int i, channel = port->channel;
  708. unsigned long flags;
  709. SCC_ACCESS_INIT(port);
  710. #if defined(CONFIG_MVME162_SCC) || defined(CONFIG_MVME147_SCC)
  711. static const struct {
  712. unsigned reg, val;
  713. } mvme_init_tab[] = {
  714. /* Values for MVME162 and MVME147 */
  715. /* no parity, 1 stop bit, async, 1:16 */
  716. { AUX1_CTRL_REG, A1CR_PARITY_NONE|A1CR_MODE_ASYNC_1|A1CR_CLKMODE_x16 },
  717. /* parity error is special cond, ints disabled, no DMA */
  718. { INT_AND_DMA_REG, IDR_PARERR_AS_SPCOND | IDR_RX_INT_DISAB },
  719. /* Rx 8 bits/char, no auto enable, Rx off */
  720. { RX_CTRL_REG, RCR_CHSIZE_8 },
  721. /* DTR off, Tx 8 bits/char, RTS off, Tx off */
  722. { TX_CTRL_REG, TCR_CHSIZE_8 },
  723. /* special features off */
  724. { AUX2_CTRL_REG, 0 },
  725. { CLK_CTRL_REG, CCR_RXCLK_BRG | CCR_TXCLK_BRG },
  726. { DPLL_CTRL_REG, DCR_BRG_ENAB | DCR_BRG_USE_PCLK },
  727. /* Start Rx */
  728. { RX_CTRL_REG, RCR_RX_ENAB | RCR_CHSIZE_8 },
  729. /* Start Tx */
  730. { TX_CTRL_REG, TCR_TX_ENAB | TCR_RTS | TCR_DTR | TCR_CHSIZE_8 },
  731. /* Ext/Stat ints: DCD only */
  732. { INT_CTRL_REG, ICR_ENAB_DCD_INT },
  733. /* Reset Ext/Stat ints */
  734. { COMMAND_REG, CR_EXTSTAT_RESET },
  735. /* ...again */
  736. { COMMAND_REG, CR_EXTSTAT_RESET },
  737. };
  738. #endif
  739. #if defined(CONFIG_BVME6000_SCC)
  740. static const struct {
  741. unsigned reg, val;
  742. } bvme_init_tab[] = {
  743. /* Values for BVME6000 */
  744. /* no parity, 1 stop bit, async, 1:16 */
  745. { AUX1_CTRL_REG, A1CR_PARITY_NONE|A1CR_MODE_ASYNC_1|A1CR_CLKMODE_x16 },
  746. /* parity error is special cond, ints disabled, no DMA */
  747. { INT_AND_DMA_REG, IDR_PARERR_AS_SPCOND | IDR_RX_INT_DISAB },
  748. /* Rx 8 bits/char, no auto enable, Rx off */
  749. { RX_CTRL_REG, RCR_CHSIZE_8 },
  750. /* DTR off, Tx 8 bits/char, RTS off, Tx off */
  751. { TX_CTRL_REG, TCR_CHSIZE_8 },
  752. /* special features off */
  753. { AUX2_CTRL_REG, 0 },
  754. { CLK_CTRL_REG, CCR_RTxC_XTAL | CCR_RXCLK_BRG | CCR_TXCLK_BRG },
  755. { DPLL_CTRL_REG, DCR_BRG_ENAB },
  756. /* Start Rx */
  757. { RX_CTRL_REG, RCR_RX_ENAB | RCR_CHSIZE_8 },
  758. /* Start Tx */
  759. { TX_CTRL_REG, TCR_TX_ENAB | TCR_RTS | TCR_DTR | TCR_CHSIZE_8 },
  760. /* Ext/Stat ints: DCD only */
  761. { INT_CTRL_REG, ICR_ENAB_DCD_INT },
  762. /* Reset Ext/Stat ints */
  763. { COMMAND_REG, CR_EXTSTAT_RESET },
  764. /* ...again */
  765. { COMMAND_REG, CR_EXTSTAT_RESET },
  766. };
  767. #endif
  768. if (!(port->gs.flags & ASYNC_INITIALIZED)) {
  769. save_flags(flags);
  770. cli();
  771. #if defined(CONFIG_MVME147_SCC) || defined(CONFIG_MVME162_SCC)
  772. if (MACH_IS_MVME147 || MACH_IS_MVME16x) {
  773. for (i=0; i<sizeof(mvme_init_tab)/sizeof(*mvme_init_tab); ++i)
  774. SCCwrite(mvme_init_tab[i].reg, mvme_init_tab[i].val);
  775. }
  776. #endif
  777. #if defined(CONFIG_BVME6000_SCC)
  778. if (MACH_IS_BVME6000) {
  779. for (i=0; i<sizeof(bvme_init_tab)/sizeof(*bvme_init_tab); ++i)
  780. SCCwrite(bvme_init_tab[i].reg, bvme_init_tab[i].val);
  781. }
  782. #endif
  783. /* remember status register for detection of DCD and CTS changes */
  784. scc_last_status_reg[channel] = SCCread(STATUS_REG);
  785. port->c_dcd = 0; /* Prevent initial 1->0 interrupt */
  786. scc_setsignals (port, 1,1);
  787. restore_flags(flags);
  788. }
  789. tty->driver_data = port;
  790. port->gs.tty = tty;
  791. port->gs.count++;
  792. retval = gs_init_port(&port->gs);
  793. if (retval) {
  794. port->gs.count--;
  795. return retval;
  796. }
  797. port->gs.flags |= GS_ACTIVE;
  798. if (port->gs.count == 1) {
  799. MOD_INC_USE_COUNT;
  800. }
  801. retval = block_til_ready(port, filp);
  802. if (retval) {
  803. MOD_DEC_USE_COUNT;
  804. port->gs.count--;
  805. return retval;
  806. }
  807. if ((port->gs.count == 1) && (port->gs.flags & ASYNC_SPLIT_TERMIOS)) {
  808. if (tty->driver.subtype == SERIAL_TYPE_NORMAL)
  809. *tty->termios = port->gs.normal_termios;
  810. else 
  811. *tty->termios = port->gs.callout_termios;
  812. scc_set_real_termios (port);
  813. }
  814. port->gs.session = current->session;
  815. port->gs.pgrp = current->pgrp;
  816. port->c_dcd = scc_get_CD (port);
  817. scc_enable_rx_interrupts(port);
  818. return 0;
  819. }
  820. static void scc_throttle (struct tty_struct * tty)
  821. {
  822. struct scc_port *port = (struct scc_port *)tty->driver_data;
  823. unsigned long flags;
  824. SCC_ACCESS_INIT(port);
  825. if (tty->termios->c_cflag & CRTSCTS) {
  826. save_flags(flags);
  827. cli();
  828. SCCmod(TX_CTRL_REG, ~TCR_RTS, 0);
  829. restore_flags(flags);
  830. }
  831. if (I_IXOFF(tty))
  832. scc_send_xchar(tty, STOP_CHAR(tty));
  833. }
  834. static void scc_unthrottle (struct tty_struct * tty)
  835. {
  836. struct scc_port *port = (struct scc_port *)tty->driver_data;
  837. unsigned long flags;
  838. SCC_ACCESS_INIT(port);
  839. if (tty->termios->c_cflag & CRTSCTS) {
  840. save_flags(flags);
  841. cli();
  842. SCCmod(TX_CTRL_REG, 0xff, TCR_RTS);
  843. restore_flags(flags);
  844. }
  845. if (I_IXOFF(tty))
  846. scc_send_xchar(tty, START_CHAR(tty));
  847. }
  848. static int scc_ioctl(struct tty_struct *tty, struct file *file,
  849.      unsigned int cmd, unsigned long arg)
  850. {
  851. return -ENOIOCTLCMD;
  852. }
  853. static void scc_break_ctl(struct tty_struct *tty, int break_state)
  854. {
  855. struct scc_port *port = (struct scc_port *)tty->driver_data;
  856. unsigned long flags;
  857. SCC_ACCESS_INIT(port);
  858. save_flags(flags);
  859. cli();
  860. SCCmod(TX_CTRL_REG, ~TCR_SEND_BREAK, 
  861. break_state ? TCR_SEND_BREAK : 0);
  862. restore_flags(flags);
  863. }
  864. /*---------------------------------------------------------------------------
  865.  * Serial console stuff...
  866.  *--------------------------------------------------------------------------*/
  867. #define scc_delay() do { __asm__ __volatile__ (" nop; nop"); } while (0)
  868. static void scc_ch_write (char ch)
  869. {
  870. volatile char *p = NULL;
  871. #ifdef CONFIG_MVME147_SCC
  872. if (MACH_IS_MVME147)
  873. p = (volatile char *)M147_SCC_A_ADDR;
  874. #endif
  875. #ifdef CONFIG_MVME162_SCC
  876. if (MACH_IS_MVME16x)
  877. p = (volatile char *)MVME_SCC_A_ADDR;
  878. #endif
  879. #ifdef CONFIG_BVME6000_SCC
  880. if (MACH_IS_BVME6000)
  881. p = (volatile char *)BVME_SCC_A_ADDR;
  882. #endif
  883. do {
  884. scc_delay();
  885. }
  886. while (!(*p & 4));
  887. scc_delay();
  888. *p = 8;
  889. scc_delay();
  890. *p = ch;
  891. }
  892. /* The console must be locked when we get here. */
  893. static void scc_console_write (struct console *co, const char *str, unsigned count)
  894. {
  895. unsigned long flags;
  896. save_flags(flags);
  897. cli();
  898. while (count--)
  899. {
  900. if (*str == 'n')
  901. scc_ch_write ('r');
  902. scc_ch_write (*str++);
  903. }
  904. restore_flags(flags);
  905. }
  906. static int scc_console_wait_key(struct console *co)
  907. {
  908. unsigned long flags;
  909. volatile char *p = NULL;
  910. int c;
  911. #ifdef CONFIG_MVME147_SCC
  912. if (MACH_IS_MVME147)
  913. p = (volatile char *)M147_SCC_A_ADDR;
  914. #endif
  915. #ifdef CONFIG_MVME162_SCC
  916. if (MACH_IS_MVME16x)
  917. p = (volatile char *)MVME_SCC_A_ADDR;
  918. #endif
  919. #ifdef CONFIG_BVME6000_SCC
  920. if (MACH_IS_BVME6000)
  921. p = (volatile char *)BVME_SCC_A_ADDR;
  922. #endif
  923. save_flags(flags);
  924. cli();
  925. /* wait for rx buf filled */
  926. while ((*p & 0x01) == 0)
  927. ;
  928. *p = 8;
  929. scc_delay();
  930. c = *p;
  931. restore_flags(flags);
  932. return c;
  933. }
  934. static kdev_t scc_console_device(struct console *c)
  935. {
  936. return MKDEV(TTY_MAJOR, SCC_MINOR_BASE + c->index);
  937. }
  938. static int __init scc_console_setup(struct console *co, char *options)
  939. {
  940. return 0;
  941. }
  942. static struct console sercons = {
  943. name: "ttyS",
  944. write: scc_console_write,
  945. device: scc_console_device,
  946. wait_key: scc_console_wait_key,
  947. setup: scc_console_setup,
  948. flags: CON_PRINTBUFFER,
  949. index: -1,
  950. };
  951. void __init vme_scc_console_init(void)
  952. {
  953. if (vme_brdtype == VME_TYPE_MVME147 ||
  954. vme_brdtype == VME_TYPE_MVME162 ||
  955. vme_brdtype == VME_TYPE_MVME172 ||
  956. vme_brdtype == VME_TYPE_BVME4000 ||
  957. vme_brdtype == VME_TYPE_BVME6000)
  958. register_console(&sercons);
  959. }