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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: zs.c,v 1.68.2.2 2002/01/12 07:04:33 davem Exp $
  2.  * zs.c: Zilog serial port driver for the Sparc.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1996 Eddie C. Dost   (ecd@skynet.be)
  6.  * Fixes by Pete A. Zaitcev <zaitcev@yahoo.com>.
  7.  *
  8.  * Fixed to use tty_get_baud_rate().
  9.  *   Theodore Ts'o <tytso@mit.edu>, 2001-Oct-12
  10.  *
  11.  * /proc/tty/driver/serial now exists and is readable.
  12.  *   Alex Buell <alex.buell@tahallah.demon.co.uk>, 2001-12-23
  13.  *
  14.  */
  15. #include <linux/errno.h>
  16. #include <linux/signal.h>
  17. #include <linux/sched.h>
  18. #include <linux/timer.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/tty.h>
  21. #include <linux/tty_flip.h>
  22. #include <linux/config.h>
  23. #include <linux/major.h>
  24. #include <linux/string.h>
  25. #include <linux/fcntl.h>
  26. #include <linux/mm.h>
  27. #include <linux/kernel.h>
  28. #include <linux/keyboard.h>
  29. #include <linux/console.h>
  30. #include <linux/delay.h>
  31. #include <linux/init.h>
  32. #include <linux/bootmem.h>
  33. #include <linux/sysrq.h>
  34. #include <asm/io.h>
  35. #include <asm/irq.h>
  36. #include <asm/oplib.h>
  37. #include <asm/system.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/bitops.h>
  40. #include <asm/kdebug.h>
  41. #include <asm/page.h>
  42. #include <asm/pgtable.h>
  43. #include <asm/sbus.h>
  44. #ifdef __sparc_v9__
  45. #include <asm/fhc.h>
  46. #endif
  47. #ifdef CONFIG_PCI
  48. #include <linux/pci.h>
  49. #endif
  50. #include "sunserial.h"
  51. #include "zs.h"
  52. #include "sunkbd.h"
  53. #include "sunmouse.h"
  54. static int num_serial = 2; /* sun4/sun4c/sun4m - Two chips on board. */
  55. #define NUM_SERIAL num_serial
  56. #define NUM_CHANNELS (NUM_SERIAL * 2)
  57. #define KEYBOARD_LINE 0x2
  58. #define MOUSE_LINE    0x3
  59. /* On 32-bit sparcs we need to delay after register accesses
  60.  * to accomodate sun4 systems, but we do not need to flush writes.
  61.  * On 64-bit sparc we only need to flush single writes to ensure
  62.  * completion.
  63.  */
  64. #ifndef __sparc_v9__
  65. #define ZSDELAY() udelay(5)
  66. #define ZSDELAY_LONG() udelay(20)
  67. #define ZS_WSYNC(channel) do { } while(0)
  68. #else
  69. #define ZSDELAY()
  70. #define ZSDELAY_LONG()
  71. #define ZS_WSYNC(__channel) 
  72. sbus_readb(&((__channel)->control))
  73. #endif
  74. struct sun_zslayout **zs_chips;
  75. struct sun_zschannel **zs_channels;
  76. struct sun_zschannel *zs_mousechan;
  77. struct sun_zschannel *zs_kbdchan;
  78. struct sun_zschannel *zs_kgdbchan;
  79. int *zs_nodes;
  80. struct sun_serial *zs_soft;
  81. struct sun_serial *zs_chain;  /* IRQ servicing chain */
  82. int zilog_irq;
  83. struct tty_struct *zs_ttys;
  84. /* Console hooks... */
  85. #ifdef CONFIG_SERIAL_CONSOLE
  86. static struct console zs_console;
  87. static int zs_console_init(void);
  88. /*
  89.  * Define this to get the zs_fair_output() functionality.
  90.  */
  91. #undef SERIAL_CONSOLE_FAIR_OUTPUT
  92. #endif /* CONFIG_SERIAL_CONSOLE */
  93. static unsigned char kgdb_regs[16] = {
  94. 0, 0, 0,                     /* write 0, 1, 2 */
  95. (Rx8 | RxENAB),              /* write 3 */
  96. (X16CLK | SB1 | PAR_EVEN),   /* write 4 */
  97. (DTR | Tx8 | TxENAB),        /* write 5 */
  98. 0, 0, 0,                     /* write 6, 7, 8 */
  99. (NV),                        /* write 9 */
  100. (NRZ),                       /* write 10 */
  101. (TCBR | RCBR),               /* write 11 */
  102. 0, 0,                        /* BRG time constant, write 12 + 13 */
  103. (BRSRC | BRENAB),            /* write 14 */
  104. (DCDIE)                      /* write 15 */
  105. };
  106. static unsigned char zscons_regs[16] = {
  107. 0,                           /* write 0 */
  108. (EXT_INT_ENAB | INT_ALL_Rx), /* write 1 */
  109. 0,                           /* write 2 */
  110. (Rx8 | RxENAB),              /* write 3 */
  111. (X16CLK),                    /* write 4 */
  112. (DTR | Tx8 | TxENAB),        /* write 5 */
  113. 0, 0, 0,                     /* write 6, 7, 8 */
  114. (NV | MIE),                  /* write 9 */
  115. (NRZ),                       /* write 10 */
  116. (TCBR | RCBR),               /* write 11 */
  117. 0, 0,                        /* BRG time constant, write 12 + 13 */
  118. (BRSRC | BRENAB),            /* write 14 */
  119. (DCDIE | CTSIE | TxUIE | BRKIE) /* write 15 */
  120. };
  121. #define ZS_CLOCK         4915200   /* Zilog input clock rate */
  122. DECLARE_TASK_QUEUE(tq_serial);
  123. static struct tty_driver serial_driver, callout_driver;
  124. static int serial_refcount;
  125. /* serial subtype definitions */
  126. #define SERIAL_TYPE_NORMAL 1
  127. #define SERIAL_TYPE_CALLOUT 2
  128.   
  129. /* number of characters left in xmit buffer before we ask for more */
  130. #define WAKEUP_CHARS 256
  131. #define SERIAL_DO_RESTART
  132. /* Debugging... DEBUG_INTR is bad to use when one of the zs
  133.  * lines is your console ;(
  134.  */
  135. #undef SERIAL_DEBUG_INTR
  136. #undef SERIAL_DEBUG_OPEN
  137. #undef SERIAL_DEBUG_FLOW
  138. #define RS_STROBE_TIME 10
  139. #define RS_ISR_PASS_LIMIT 256
  140. #define _INLINE_ inline
  141. int zs_init(void);
  142. static void zs_kgdb_hook(int);
  143. static void change_speed(struct sun_serial *info);
  144. static struct tty_struct **serial_table;
  145. static struct termios **serial_termios;
  146. static struct termios **serial_termios_locked;
  147. #ifndef MIN
  148. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  149. #endif
  150. #undef ZS_LOG
  151. #ifdef ZS_LOG
  152. struct zs_logent {
  153. u8 reg, val;
  154. u8 write, __pad;
  155. #define REGIRQ 0xff
  156. #define REGDATA 0xfe
  157. #define REGCTRL 0xfd
  158. };
  159. struct zs_logent zslog[32];
  160. int zs_curlog;
  161. #define ZSLOG(__reg, __val, __write) 
  162. do{ int index = zs_curlog; 
  163. zslog[index].reg = (__reg); 
  164. zslog[index].val = (__val); 
  165. zslog[index].write = (__write); 
  166. zs_curlog = (index + 1) & (32 - 1); 
  167. }while(0)
  168. int zs_dumplog(char *buffer)
  169. {
  170. int len = 0;
  171. int i;
  172. for (i = 0; i < 32; i++) {
  173. u8 reg, val, write;
  174. reg = zslog[i].reg;
  175. val = zslog[i].val;
  176. write = zslog[i].write;
  177. len += sprintf(buffer + len,
  178.        "ZSLOG[%2d]: reg %2x val %2x %sn",
  179.        i, reg, val, write ? "write" : "read");
  180. }
  181. len += sprintf(buffer + len, "ZS current log index %dn",
  182.        zs_curlog);
  183. return len;
  184. }
  185. #else
  186. #define ZSLOG(x,y,z) do { } while (0)
  187. #endif
  188. /*
  189.  * tmp_buf is used as a temporary buffer by serial_write.  We need to
  190.  * lock it in case the memcpy_fromfs blocks while swapping in a page,
  191.  * and some other program tries to do a serial write at the same time.
  192.  * Since the lock will only come under contention when the system is
  193.  * swapping and available memory is low, it makes sense to share one
  194.  * buffer across all the serial ports, since it significantly saves
  195.  * memory if large numbers of serial ports are open.
  196.  */
  197. static unsigned char *tmp_buf = 0;
  198. static DECLARE_MUTEX(tmp_buf_sem);
  199. static inline int serial_paranoia_check(struct sun_serial *info,
  200. dev_t device, const char *routine)
  201. {
  202. #ifdef SERIAL_PARANOIA_CHECK
  203. static const char *badmagic =
  204. "Warning: bad magic number for serial struct (%d, %d) in %sn";
  205. static const char *badinfo =
  206. "Warning: null sun_serial for (%d, %d) in %sn";
  207. if (!info) {
  208. printk(badinfo, MAJOR(device), MINOR(device), routine);
  209. return 1;
  210. }
  211. if (info->magic != SERIAL_MAGIC) {
  212. printk(badmagic, MAJOR(device), MINOR(device), routine);
  213. return 1;
  214. }
  215. #endif
  216. return 0;
  217. }
  218. /* Reading and writing Zilog8530 registers.  The delays are to make this
  219.  * driver work on the Sun4 which needs a settling delay after each chip
  220.  * register access, other machines handle this in hardware via auxiliary
  221.  * flip-flops which implement the settle time we do in software.
  222.  */
  223. static unsigned char read_zsreg(struct sun_zschannel *channel,
  224. unsigned char reg)
  225. {
  226. unsigned char retval;
  227. sbus_writeb(reg, &channel->control);
  228. ZSDELAY();
  229. retval = sbus_readb(&channel->control);
  230. ZSDELAY();
  231. ZSLOG(reg, retval, 0);
  232. return retval;
  233. }
  234. static void write_zsreg(struct sun_zschannel *channel,
  235. unsigned char reg, unsigned char value)
  236. {
  237. ZSLOG(reg, value, 1);
  238. sbus_writeb(reg, &channel->control);
  239. ZSDELAY();
  240. sbus_writeb(value, &channel->control);
  241. ZSDELAY();
  242. }
  243. static void load_zsregs(struct sun_serial *info, unsigned char *regs)
  244. {
  245. struct sun_zschannel *channel = info->zs_channel;
  246. unsigned long flags;
  247. unsigned char stat;
  248. int i;
  249. for (i = 0; i < 1000; i++) {
  250. stat = read_zsreg(channel, R1);
  251. if (stat & ALL_SNT)
  252. break;
  253. udelay(100);
  254. }
  255. write_zsreg(channel, R3, 0);
  256. ZS_CLEARSTAT(channel);
  257. ZS_CLEARERR(channel);
  258. ZS_CLEARFIFO(channel);
  259. /* Load 'em up */
  260. save_flags(flags); cli();
  261. if (info->channelA)
  262. write_zsreg(channel, R9, CHRA);
  263. else
  264. write_zsreg(channel, R9, CHRB);
  265. ZSDELAY_LONG();
  266. write_zsreg(channel, R4, regs[R4]);
  267. write_zsreg(channel, R3, regs[R3] & ~RxENAB);
  268. write_zsreg(channel, R5, regs[R5] & ~TxENAB);
  269. write_zsreg(channel, R9, regs[R9] & ~MIE);
  270. write_zsreg(channel, R10, regs[R10]);
  271. write_zsreg(channel, R11, regs[R11]);
  272. write_zsreg(channel, R12, regs[R12]);
  273. write_zsreg(channel, R13, regs[R13]);
  274. write_zsreg(channel, R14, regs[R14] & ~BRENAB);
  275. write_zsreg(channel, R14, regs[R14]);
  276. write_zsreg(channel, R14, (regs[R14] & ~SNRZI) | BRENAB);
  277. write_zsreg(channel, R3, regs[R3]);
  278. write_zsreg(channel, R5, regs[R5]);
  279. write_zsreg(channel, R15, regs[R15]);
  280. write_zsreg(channel, R0, RES_EXT_INT);
  281. write_zsreg(channel, R0, ERR_RES);
  282. write_zsreg(channel, R1, regs[R1]);
  283. write_zsreg(channel, R9, regs[R9]);
  284. restore_flags(flags);
  285. }
  286. #define ZS_PUT_CHAR_MAX_DELAY 2000 /* 10 ms */
  287. static void zs_put_char(struct sun_zschannel *channel, char ch)
  288. {
  289. int loops = ZS_PUT_CHAR_MAX_DELAY;
  290. /* Do not change this to use ZSDELAY as this is
  291.  * a timed polling loop and on sparc64 ZSDELAY
  292.  * is a nop.  -DaveM
  293.  */
  294. do {
  295. u8 val = sbus_readb(&channel->control);
  296. ZSLOG(REGCTRL, val, 0);
  297. if (val & Tx_BUF_EMP)
  298. break;
  299. udelay(5);
  300. } while (--loops);
  301. sbus_writeb(ch, &channel->data);
  302. ZSDELAY();
  303. ZS_WSYNC(channel);
  304. ZSLOG(REGDATA, ch, 1);
  305. }
  306. /* Sets or clears DTR/RTS on the requested line */
  307. static void zs_rtsdtr(struct sun_serial *ss, int set)
  308. {
  309. unsigned long flags;
  310. save_flags(flags); cli();
  311. if(set) {
  312. ss->curregs[5] |= (RTS | DTR);
  313. write_zsreg(ss->zs_channel, 5, ss->curregs[5]);
  314. } else {
  315. ss->curregs[5] &= ~(RTS | DTR);
  316. write_zsreg(ss->zs_channel, 5, ss->curregs[5]);
  317. }
  318. restore_flags(flags);
  319. return;
  320. }
  321. static void kgdb_chaninit(struct sun_serial *ss, int intson, int bps)
  322. {
  323. int brg;
  324. if(intson) {
  325. kgdb_regs[R1] = INT_ALL_Rx;
  326. kgdb_regs[R9] |= MIE;
  327. } else {
  328. kgdb_regs[R1] = 0;
  329. kgdb_regs[R9] &= ~MIE;
  330. }
  331. brg = BPS_TO_BRG(bps, ZS_CLOCK/16);
  332. kgdb_regs[R12] = (brg & 255);
  333. kgdb_regs[R13] = ((brg >> 8) & 255);
  334. load_zsregs(ss, kgdb_regs);
  335. }
  336. /*
  337.  * ------------------------------------------------------------
  338.  * zs_stop() and zs_start()
  339.  *
  340.  * This routines are called before setting or resetting tty->stopped.
  341.  * They enable or disable transmitter interrupts, as necessary.
  342.  * ------------------------------------------------------------
  343.  */
  344. static void zs_stop(struct tty_struct *tty)
  345. {
  346. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  347. unsigned long flags;
  348. if (serial_paranoia_check(info, tty->device, "zs_stop"))
  349. return;
  350. save_flags(flags); cli();
  351. if (info->curregs[5] & TxENAB) {
  352. info->curregs[5] &= ~TxENAB;
  353. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  354. }
  355. restore_flags(flags);
  356. }
  357. static void zs_start(struct tty_struct *tty)
  358. {
  359. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  360. unsigned long flags;
  361. if (serial_paranoia_check(info, tty->device, "zs_start"))
  362. return;
  363. save_flags(flags); cli();
  364. if (info->xmit_cnt && info->xmit_buf && !(info->curregs[5] & TxENAB)) {
  365. info->curregs[5] |= TxENAB;
  366. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  367. }
  368. restore_flags(flags);
  369. }
  370. /* Drop into either the boot monitor or kadb upon receiving a break
  371.  * from keyboard/console input.
  372.  */
  373. void batten_down_hatches(void)
  374. {
  375. if (!stop_a_enabled)
  376. return;
  377. /* If we are doing kadb, we call the debugger
  378.  * else we just drop into the boot monitor.
  379.  * Note that we must flush the user windows
  380.  * first before giving up control.
  381.  */
  382. printk("n");
  383. flush_user_windows();
  384. #ifndef __sparc_v9__
  385. if((((unsigned long)linux_dbvec)>=DEBUG_FIRSTVADDR) &&
  386.    (((unsigned long)linux_dbvec)<=DEBUG_LASTVADDR))
  387. sp_enter_debugger();
  388. else
  389. #endif
  390. prom_cmdline();
  391. /* XXX We want to notify the keyboard driver that all
  392.  * XXX keys are in the up state or else weird things
  393.  * XXX happen...
  394.  */
  395. return;
  396. }
  397. /*
  398.  * ----------------------------------------------------------------------
  399.  *
  400.  * Here starts the interrupt handling routines.  All of the following
  401.  * subroutines are declared as inline and are folded into
  402.  * zs_interrupt().  They were separated out for readability's sake.
  403.  *
  404.  * Note: zs_interrupt() is a "fast" interrupt, which means that it
  405.  * runs with interrupts turned off.  People who may want to modify
  406.  * zs_interrupt() should try to keep the interrupt handler as fast as
  407.  * possible.  After you are done making modifications, it is not a bad
  408.  * idea to do:
  409.  * 
  410.  * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
  411.  *
  412.  * and look at the resulting assemble code in serial.s.
  413.  *
  414.  *  - Ted Ts'o (tytso@mit.edu), 7-Mar-93
  415.  * -----------------------------------------------------------------------
  416.  */
  417. /*
  418.  * This routine is used by the interrupt handler to schedule
  419.  * processing in the software interrupt portion of the driver.
  420.  */
  421. static void zs_sched_event(struct sun_serial *info, int event)
  422. {
  423. info->event |= 1 << event;
  424. queue_task(&info->tqueue, &tq_serial);
  425. mark_bh(SERIAL_BH);
  426. }
  427. #ifndef __sparc_v9__
  428. extern void breakpoint(void);  /* For the KGDB frame character */
  429. #endif
  430. static void receive_chars(struct sun_serial *info, struct pt_regs *regs)
  431. {
  432. struct tty_struct *tty = info->tty;
  433. int do_queue_task = 0;
  434. while (1) {
  435. unsigned char ch, r1;
  436. r1 = read_zsreg(info->zs_channel, R1);
  437. if (r1 & (PAR_ERR | Rx_OVR | CRC_ERR)) {
  438. sbus_writeb(ERR_RES, &info->zs_channel->control);
  439. ZSDELAY();
  440. ZS_WSYNC(info->zs_channel);
  441. ZSLOG(REGCTRL, ERR_RES, 1);
  442. }
  443. ch = sbus_readb(&info->zs_channel->data);
  444. ZSLOG(REGDATA, ch, 0);
  445. ch &= info->parity_mask;
  446. ZSDELAY();
  447. /* If this is the console keyboard, we need to handle
  448.  * L1-A's here.
  449.  */
  450. if (info->cons_keyb) {
  451. if (ch == SUNKBD_RESET) {
  452. l1a_state.kbd_id = 1;
  453. l1a_state.l1_down = 0;
  454. } else if (l1a_state.kbd_id) {
  455. l1a_state.kbd_id = 0;
  456. } else if (ch == SUNKBD_L1) {
  457. l1a_state.l1_down = 1;
  458. } else if (ch == (SUNKBD_L1|SUNKBD_UP)) {
  459. l1a_state.l1_down = 0;
  460. } else if (ch == SUNKBD_A && l1a_state.l1_down) {
  461. /* whee... */
  462. batten_down_hatches();
  463. /* Continue execution... */
  464. l1a_state.l1_down = 0;
  465. l1a_state.kbd_id = 0;
  466. return;
  467. }
  468. sunkbd_inchar(ch, regs);
  469. goto next_char;
  470. }
  471. if (info->cons_mouse) {
  472. sun_mouse_inbyte(ch, 0);
  473. goto next_char;
  474. }
  475. if (info->is_cons) {
  476. if (ch == 0) {
  477. /* whee, break received */
  478. batten_down_hatches();
  479. /* Continue execution... */
  480. return;
  481. }
  482. /* It is a 'keyboard interrupt' ;-) */
  483. wake_up(&keypress_wait);
  484. }
  485. #ifndef __sparc_v9__
  486. /* Look for kgdb 'stop' character, consult the gdb
  487.  * documentation for remote target debugging and
  488.  * arch/sparc/kernel/sparc-stub.c to see how all this works.
  489.  */
  490. if (info->kgdb_channel && (ch =='03')) {
  491. breakpoint();
  492. return;
  493. }
  494. #endif
  495. if (!tty)
  496. return;
  497. do_queue_task++;
  498. if (tty->flip.count >= TTY_FLIPBUF_SIZE)
  499. break;
  500. tty->flip.count++;
  501. if (r1 & PAR_ERR)
  502. *tty->flip.flag_buf_ptr++ = TTY_PARITY;
  503. else if (r1 & Rx_OVR)
  504. *tty->flip.flag_buf_ptr++ = TTY_OVERRUN;
  505. else if (r1 & CRC_ERR)
  506. *tty->flip.flag_buf_ptr++ = TTY_FRAME;
  507. else
  508. *tty->flip.flag_buf_ptr++ = 0;
  509. *tty->flip.char_buf_ptr++ = ch;
  510. next_char:
  511. {
  512. unsigned char stat;
  513. /* Check if we have another character... */
  514. stat = sbus_readb(&info->zs_channel->control);
  515. ZSDELAY();
  516. ZSLOG(REGCTRL, stat, 0);
  517. if (!(stat & Rx_CH_AV))
  518. break;
  519. }
  520. }
  521. if (do_queue_task != 0)
  522. queue_task(&tty->flip.tqueue, &tq_timer);
  523. }
  524. static void transmit_chars(struct sun_serial *info)
  525. {
  526. struct tty_struct *tty = info->tty;
  527. if (info->x_char) {
  528. /* Send next char */
  529. zs_put_char(info->zs_channel, info->x_char);
  530. info->x_char = 0;
  531. return;
  532. }
  533. if ((info->xmit_cnt <= 0) || (tty != 0 && tty->stopped)) {
  534. /* That's peculiar... */
  535. sbus_writeb(RES_Tx_P, &info->zs_channel->control);
  536. ZSDELAY();
  537. ZS_WSYNC(info->zs_channel);
  538. ZSLOG(REGCTRL, RES_Tx_P, 1);
  539. return;
  540. }
  541. /* Send char */
  542. zs_put_char(info->zs_channel, info->xmit_buf[info->xmit_tail++]);
  543. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  544. info->xmit_cnt--;
  545. if (info->xmit_cnt < WAKEUP_CHARS)
  546. zs_sched_event(info, RS_EVENT_WRITE_WAKEUP);
  547. if (info->xmit_cnt <= 0) {
  548. sbus_writeb(RES_Tx_P, &info->zs_channel->control);
  549. ZSDELAY();
  550. ZS_WSYNC(info->zs_channel);
  551. ZSLOG(REGCTRL, RES_Tx_P, 1);
  552. }
  553. }
  554. static void status_handle(struct sun_serial *info)
  555. {
  556. unsigned char status;
  557. /* Get status from Read Register 0 */
  558. status = sbus_readb(&info->zs_channel->control);
  559. ZSDELAY();
  560. ZSLOG(REGCTRL, status, 0);
  561. /* Clear status condition... */
  562. sbus_writeb(RES_EXT_INT, &info->zs_channel->control);
  563. ZSDELAY();
  564. ZS_WSYNC(info->zs_channel);
  565. ZSLOG(REGCTRL, RES_EXT_INT, 1);
  566. #if 0
  567. if (status & DCD) {
  568. if ((info->tty->termios->c_cflag & CRTSCTS) &&
  569.     ((info->curregs[3] & AUTO_ENAB)==0)) {
  570. info->curregs[3] |= AUTO_ENAB;
  571. write_zsreg(info->zs_channel, 3, info->curregs[3]);
  572. }
  573. } else {
  574. if ((info->curregs[3] & AUTO_ENAB)) {
  575. info->curregs[3] &= ~AUTO_ENAB;
  576. write_zsreg(info->zs_channel, 3, info->curregs[3]);
  577. }
  578. }
  579. #endif
  580. /* Whee, if this is console input and this is a
  581.  * 'break asserted' status change interrupt, call
  582.  * the boot prom.
  583.  */
  584. if (status & BRK_ABRT) {
  585. if (info->break_abort)
  586. batten_down_hatches();
  587. if (info->cons_mouse)
  588. sun_mouse_inbyte(0, 1);
  589. }
  590. /* XXX Whee, put in a buffer somewhere, the status information
  591.  * XXX whee whee whee... Where does the information go...
  592.  */
  593. return;
  594. }
  595. /*
  596.  * This is the serial driver's generic interrupt routine
  597.  */
  598. void zs_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  599. {
  600. struct sun_serial *info;
  601. int i;
  602. info = (struct sun_serial *)dev_id;
  603. ZSLOG(REGIRQ, 0, 0);
  604. for (i = 0; i < NUM_SERIAL; i++) {
  605. unsigned char r3 = read_zsreg(info->zs_channel, 3);
  606. /* Channel A -- /dev/ttya or /dev/kbd, could be the console */
  607. if (r3 & (CHAEXT | CHATxIP | CHARxIP)) {
  608. sbus_writeb(RES_H_IUS, &info->zs_channel->control);
  609. ZSDELAY();
  610. ZS_WSYNC(info->zs_channel);
  611. ZSLOG(REGCTRL, RES_H_IUS, 1);
  612. if (r3 & CHARxIP)
  613. receive_chars(info, regs);
  614. if (r3 & CHAEXT)
  615. status_handle(info);
  616. if (r3 & CHATxIP)
  617. transmit_chars(info);
  618. }
  619. /* Channel B -- /dev/ttyb or /dev/mouse, could be the console */
  620. info = info->zs_next;
  621. if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) {
  622. sbus_writeb(RES_H_IUS, &info->zs_channel->control);
  623. ZSDELAY();
  624. ZS_WSYNC(info->zs_channel);
  625. ZSLOG(REGCTRL, RES_H_IUS, 1);
  626. if (r3 & CHBRxIP)
  627. receive_chars(info, regs);
  628. if (r3 & CHBEXT)
  629. status_handle(info);
  630. if (r3 & CHBTxIP)
  631. transmit_chars(info);
  632. }
  633. info = info->zs_next;
  634. }
  635. }
  636. /*
  637.  * -------------------------------------------------------------------
  638.  * Here ends the serial interrupt routines.
  639.  * -------------------------------------------------------------------
  640.  */
  641. /*
  642.  * This routine is used to handle the "bottom half" processing for the
  643.  * serial driver, known also the "software interrupt" processing.
  644.  * This processing is done at the kernel interrupt level, after the
  645.  * zs_interrupt() has returned, BUT WITH INTERRUPTS TURNED ON.  This
  646.  * is where time-consuming activities which can not be done in the
  647.  * interrupt driver proper are done; the interrupt driver schedules
  648.  * them using zs_sched_event(), and they get done here.
  649.  */
  650. static void do_serial_bh(void)
  651. {
  652. run_task_queue(&tq_serial);
  653. }
  654. static void do_softint(void *private_)
  655. {
  656. struct sun_serial *info = (struct sun_serial *) private_;
  657. struct tty_struct *tty;
  658. tty = info->tty;
  659. if (!tty)
  660. return;
  661. if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event)) {
  662. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  663.     tty->ldisc.write_wakeup)
  664. (tty->ldisc.write_wakeup)(tty);
  665. wake_up_interruptible(&tty->write_wait);
  666. }
  667. }
  668. /*
  669.  * This routine is called from the scheduler tqueue when the interrupt
  670.  * routine has signalled that a hangup has occurred.  The path of
  671.  * hangup processing is:
  672.  *
  673.  *  serial interrupt routine -> (scheduler tqueue) ->
  674.  *  do_serial_hangup() -> tty->hangup() -> zs_hangup()
  675.  * 
  676.  */
  677. static void do_serial_hangup(void *private_)
  678. {
  679. struct sun_serial *info = (struct sun_serial *) private_;
  680. struct tty_struct *tty;
  681. tty = info->tty;
  682. if (!tty)
  683. return;
  684. #ifdef SERIAL_DEBUG_OPEN
  685. printk("do_serial_hangup<%p: tty-%dn",
  686. __builtin_return_address(0), info->line);
  687. #endif
  688. tty_hangup(tty);
  689. }
  690. static int startup(struct sun_serial * info)
  691. {
  692. unsigned long flags;
  693. if (info->flags & ZILOG_INITIALIZED)
  694. return 0;
  695. if (!info->xmit_buf) {
  696. info->xmit_buf = (unsigned char *) get_free_page(GFP_KERNEL);
  697. if (!info->xmit_buf)
  698. return -ENOMEM;
  699. }
  700. save_flags(flags); cli();
  701. #ifdef SERIAL_DEBUG_OPEN
  702. printk("Starting up tty-%d (irq %d)...n", info->line, info->irq);
  703. #endif
  704. /*
  705.  * Clear the FIFO buffers and disable them
  706.  * (they will be reenabled in change_speed())
  707.  */
  708. ZS_CLEARFIFO(info->zs_channel);
  709. info->xmit_fifo_size = 1;
  710. /*
  711.  * Clear the interrupt registers.
  712.  */
  713. sbus_writeb(ERR_RES, &info->zs_channel->control);
  714. ZSDELAY();
  715. ZS_WSYNC(info->zs_channel);
  716. ZSLOG(REGCTRL, ERR_RES, 1);
  717. sbus_writeb(RES_H_IUS, &info->zs_channel->control);
  718. ZSDELAY();
  719. ZS_WSYNC(info->zs_channel);
  720. ZSLOG(REGCTRL, RES_H_IUS, 1);
  721. /*
  722.  * Now, initialize the Zilog
  723.  */
  724. zs_rtsdtr(info, 1);
  725. /*
  726.  * Finally, enable sequencing and interrupts
  727.  */
  728. info->curregs[1] |= (info->curregs[1] & ~(RxINT_MASK)) |
  729. (EXT_INT_ENAB | INT_ALL_Rx);
  730. info->curregs[3] |= (RxENAB | Rx8);
  731. /* We enable Tx interrupts as needed. */
  732. info->curregs[5] |= (TxENAB | Tx8);
  733. info->curregs[9] |= (NV | MIE);
  734. write_zsreg(info->zs_channel, 3, info->curregs[3]);
  735. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  736. write_zsreg(info->zs_channel, 9, info->curregs[9]);
  737. /*
  738.  * And clear the interrupt registers again for luck.
  739.  */
  740. sbus_writeb(ERR_RES, &info->zs_channel->control);
  741. ZSDELAY();
  742. ZS_WSYNC(info->zs_channel);
  743. ZSLOG(REGCTRL, ERR_RES, 1);
  744. sbus_writeb(RES_H_IUS, &info->zs_channel->control);
  745. ZSDELAY();
  746. ZS_WSYNC(info->zs_channel);
  747. ZSLOG(REGCTRL, RES_H_IUS, 1);
  748. if (info->tty)
  749. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  750. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  751. /*
  752.  * and set the speed of the serial port
  753.  */
  754. change_speed(info);
  755. info->flags |= ZILOG_INITIALIZED;
  756. restore_flags(flags);
  757. return 0;
  758. }
  759. /*
  760.  * This routine will shutdown a serial port; interrupts are disabled, and
  761.  * DTR is dropped if the hangup on close termio flag is on.
  762.  */
  763. static void shutdown(struct sun_serial * info)
  764. {
  765. unsigned long flags;
  766. if (!(info->flags & ZILOG_INITIALIZED))
  767. return;
  768. #ifdef SERIAL_DEBUG_OPEN
  769. printk("Shutting down serial port %d (irq %d)....", info->line,
  770.        info->irq);
  771. #endif
  772. save_flags(flags); cli(); /* Disable interrupts */
  773. if (info->xmit_buf) {
  774. free_page((unsigned long) info->xmit_buf);
  775. info->xmit_buf = 0;
  776. }
  777. if (info->tty)
  778. set_bit(TTY_IO_ERROR, &info->tty->flags);
  779. info->flags &= ~ZILOG_INITIALIZED;
  780. restore_flags(flags);
  781. }
  782. /*
  783.  * This routine is called to set the UART divisor registers to match
  784.  * the specified baud rate for a serial port.
  785.  */
  786. static void change_speed(struct sun_serial *info)
  787. {
  788. unsigned cflag;
  789. int baud, quot = 0;
  790. int brg;
  791. if (!info->tty || !info->tty->termios)
  792. return;
  793. cflag = info->tty->termios->c_cflag;
  794. if (!info->port)
  795. return;
  796. baud = tty_get_baud_rate(info->tty);
  797. if ((baud == 38400) && 
  798.     ((info->flags & ZILOG_SPD_MASK) == ZILOG_SPD_CUST))
  799. quot = info->custom_divisor;
  800. if (quot) {
  801. info->zs_baud = info->baud_base / quot;
  802. info->clk_divisor = 16;
  803. info->curregs[4] = X16CLK;
  804. info->curregs[11] = TCBR | RCBR;
  805. brg = BPS_TO_BRG(info->zs_baud, ZS_CLOCK/info->clk_divisor);
  806. info->curregs[12] = (brg & 255);
  807. info->curregs[13] = ((brg >> 8) & 255);
  808. info->curregs[14] = BRSRC | BRENAB;
  809. zs_rtsdtr(info, 1);
  810. } else if (baud) {
  811. info->zs_baud = baud;
  812. info->clk_divisor = 16;
  813. info->curregs[4] = X16CLK;
  814. info->curregs[11] = TCBR | RCBR;
  815. brg = BPS_TO_BRG(info->zs_baud, ZS_CLOCK/info->clk_divisor);
  816. info->curregs[12] = (brg & 255);
  817. info->curregs[13] = ((brg >> 8) & 255);
  818. info->curregs[14] = BRSRC | BRENAB;
  819. zs_rtsdtr(info, 1);
  820. } else {
  821. zs_rtsdtr(info, 0);
  822. return;
  823. }
  824. /* byte size and parity */
  825. switch (cflag & CSIZE) {
  826. case CS5:
  827. info->curregs[3] &= ~(RxN_MASK);
  828. info->curregs[3] |= Rx5;
  829. info->curregs[5] &= ~(TxN_MASK);
  830. info->curregs[5] |= Tx5;
  831. info->parity_mask = 0x1f;
  832. break;
  833. case CS6:
  834. info->curregs[3] &= ~(RxN_MASK);
  835. info->curregs[3] |= Rx6;
  836. info->curregs[5] &= ~(TxN_MASK);
  837. info->curregs[5] |= Tx6;
  838. info->parity_mask = 0x3f;
  839. break;
  840. case CS7:
  841. info->curregs[3] &= ~(RxN_MASK);
  842. info->curregs[3] |= Rx7;
  843. info->curregs[5] &= ~(TxN_MASK);
  844. info->curregs[5] |= Tx7;
  845. info->parity_mask = 0x7f;
  846. break;
  847. case CS8:
  848. default: /* defaults to 8 bits */
  849. info->curregs[3] &= ~(RxN_MASK);
  850. info->curregs[3] |= Rx8;
  851. info->curregs[5] &= ~(TxN_MASK);
  852. info->curregs[5] |= Tx8;
  853. info->parity_mask = 0xff;
  854. break;
  855. }
  856. info->curregs[4] &= ~(0x0c);
  857. if (cflag & CSTOPB) {
  858. info->curregs[4] |= SB2;
  859. } else {
  860. info->curregs[4] |= SB1;
  861. }
  862. if (cflag & PARENB) {
  863. info->curregs[4] |= PAR_ENAB;
  864. } else {
  865. info->curregs[4] &= ~PAR_ENAB;
  866. }
  867. if (!(cflag & PARODD)) {
  868. info->curregs[4] |= PAR_EVEN;
  869. } else {
  870. info->curregs[4] &= ~PAR_EVEN;
  871. }
  872. /* Load up the new values */
  873. load_zsregs(info, info->curregs);
  874. return;
  875. }
  876. /* This is for mouse/keyboard output.
  877.  * XXX mouse output??? can we send it commands??? XXX
  878.  */
  879. static void kbd_put_char(unsigned char ch)
  880. {
  881. struct sun_zschannel *chan = zs_kbdchan;
  882. unsigned long flags;
  883. if(!chan)
  884. return;
  885. save_flags(flags); cli();
  886. zs_put_char(chan, ch);
  887. restore_flags(flags);
  888. }
  889. void mouse_put_char(char ch)
  890. {
  891. struct sun_zschannel *chan = zs_mousechan;
  892. unsigned long flags;
  893. if(!chan)
  894. return;
  895. save_flags(flags); cli();
  896. zs_put_char(chan, ch);
  897. restore_flags(flags);
  898. }
  899. /* These are for receiving and sending characters under the kgdb
  900.  * source level kernel debugger.
  901.  */
  902. void putDebugChar(char kgdb_char)
  903. {
  904. struct sun_zschannel *chan = zs_kgdbchan;
  905. while((sbus_readb(&chan->control) & Tx_BUF_EMP)==0)
  906. udelay(5);
  907. sbus_writeb(kgdb_char, &chan->data);
  908. ZS_WSYNC(chan);
  909. ZSLOG(REGDATA, kgdb_char, 1);
  910. }
  911. char getDebugChar(void)
  912. {
  913. struct sun_zschannel *chan = zs_kgdbchan;
  914. u8 val;
  915. do {
  916. val = sbus_readb(&chan->control);
  917. ZSLOG(REGCTRL, val, 0);
  918. udelay(5);
  919. } while ((val & Rx_CH_AV) == 0);
  920. val = sbus_readb(&chan->data);
  921. ZSLOG(REGDATA, val, 0);
  922. return val;
  923. }
  924. static void zs_flush_chars(struct tty_struct *tty)
  925. {
  926. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  927. unsigned long flags;
  928. if (serial_paranoia_check(info, tty->device, "zs_flush_chars"))
  929. return;
  930. save_flags(flags); cli();
  931. if (info->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
  932.     !info->xmit_buf)
  933. goto out;
  934. /* Enable transmitter */
  935. info->curregs[1] |= TxINT_ENAB|EXT_INT_ENAB;
  936. write_zsreg(info->zs_channel, 1, info->curregs[1]);
  937. info->curregs[5] |= TxENAB;
  938. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  939. /*
  940.  * Send a first (bootstrapping) character. A best solution is
  941.  * to call transmit_chars() here which handles output in a
  942.  * generic way. Current transmit_chars() not only transmits,
  943.  * but resets interrupts also what we do not desire here.
  944.  * XXX Discuss with David.
  945.  */
  946. zs_put_char(info->zs_channel, info->xmit_buf[info->xmit_tail++]);
  947. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  948. info->xmit_cnt--;
  949. out:
  950. restore_flags(flags);
  951. }
  952. static int zs_write(struct tty_struct * tty, int from_user,
  953.     const unsigned char *buf, int count)
  954. {
  955. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  956. unsigned long flags;
  957. int c, total = 0;
  958. if (serial_paranoia_check(info, tty->device, "zs_write"))
  959. return 0;
  960. if (!info || !info->xmit_buf || !tmp_buf)
  961. return 0;
  962. save_flags(flags);
  963. if (from_user) {
  964. down(&tmp_buf_sem);
  965. while (1) {
  966. c = MIN(count, MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  967.    SERIAL_XMIT_SIZE - info->xmit_head));
  968. if (c <= 0)
  969. break;
  970. c -= copy_from_user(tmp_buf, buf, c);
  971. if (!c) {
  972. if (!total)
  973. total = -EFAULT;
  974. break;
  975. }
  976. cli();
  977. c = MIN(c, MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  978.        SERIAL_XMIT_SIZE - info->xmit_head));
  979. memcpy(info->xmit_buf + info->xmit_head, tmp_buf, c);
  980. info->xmit_head = ((info->xmit_head + c) &
  981.    (SERIAL_XMIT_SIZE - 1));
  982. info->xmit_cnt += c;
  983. restore_flags(flags);
  984. buf += c;
  985. count -= c;
  986. total += c;
  987. }
  988. up(&tmp_buf_sem);
  989. } else {
  990. while (1) {
  991. cli();
  992. c = MIN(count, MIN(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
  993.    SERIAL_XMIT_SIZE - info->xmit_head));
  994. if (c <= 0) {
  995. restore_flags(flags);
  996. break;
  997. }
  998. memcpy(info->xmit_buf + info->xmit_head, buf, c);
  999. info->xmit_head = ((info->xmit_head + c) &
  1000.    (SERIAL_XMIT_SIZE - 1));
  1001. info->xmit_cnt += c;
  1002. restore_flags(flags);
  1003. buf += c;
  1004. count -= c;
  1005. total += c;
  1006. }
  1007. }
  1008. cli();
  1009. if (info->xmit_cnt && !tty->stopped && !tty->hw_stopped) {
  1010. /* Enable transmitter */
  1011. info->curregs[1] |= TxINT_ENAB|EXT_INT_ENAB;
  1012. write_zsreg(info->zs_channel, 1, info->curregs[1]);
  1013. info->curregs[5] |= TxENAB;
  1014. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  1015. #if 1
  1016. zs_put_char(info->zs_channel,
  1017.     info->xmit_buf[info->xmit_tail++]);
  1018. info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
  1019. info->xmit_cnt--;
  1020. #endif
  1021. }
  1022. restore_flags(flags);
  1023. return total;
  1024. }
  1025. static int zs_write_room(struct tty_struct *tty)
  1026. {
  1027. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1028. int ret;
  1029. if (serial_paranoia_check(info, tty->device, "zs_write_room"))
  1030. return 0;
  1031. ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
  1032. if (ret < 0)
  1033. ret = 0;
  1034. return ret;
  1035. }
  1036. static int zs_chars_in_buffer(struct tty_struct *tty)
  1037. {
  1038. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1039. if (serial_paranoia_check(info, tty->device, "zs_chars_in_buffer"))
  1040. return 0;
  1041. return info->xmit_cnt;
  1042. }
  1043. static void zs_flush_buffer(struct tty_struct *tty)
  1044. {
  1045. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1046. if (serial_paranoia_check(info, tty->device, "zs_flush_buffer"))
  1047. return;
  1048. cli();
  1049. info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
  1050. sti();
  1051. wake_up_interruptible(&tty->write_wait);
  1052. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1053.     tty->ldisc.write_wakeup)
  1054. (tty->ldisc.write_wakeup)(tty);
  1055. }
  1056. /*
  1057.  * ------------------------------------------------------------
  1058.  * zs_throttle()
  1059.  * 
  1060.  * This routine is called by the upper-layer tty layer to signal that
  1061.  * incoming characters should be throttled.
  1062.  * ------------------------------------------------------------
  1063.  */
  1064. static void zs_throttle(struct tty_struct * tty)
  1065. {
  1066. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1067. #ifdef SERIAL_DEBUG_THROTTLE
  1068. char buf[64];
  1069. printk("throttle %s: %d....n", _tty_name(tty, buf),
  1070.        tty->ldisc.chars_in_buffer(tty));
  1071. #endif
  1072. if (serial_paranoia_check(info, tty->device, "zs_throttle"))
  1073. return;
  1074. if (I_IXOFF(tty))
  1075. info->x_char = STOP_CHAR(tty);
  1076. /* Turn off RTS line */
  1077. cli();
  1078. info->curregs[5] &= ~RTS;
  1079. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  1080. sti();
  1081. }
  1082. static void zs_unthrottle(struct tty_struct * tty)
  1083. {
  1084. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1085. #ifdef SERIAL_DEBUG_THROTTLE
  1086. char buf[64];
  1087. printk("unthrottle %s: %d....n", _tty_name(tty, buf),
  1088.        tty->ldisc.chars_in_buffer(tty));
  1089. #endif
  1090. if (serial_paranoia_check(info, tty->device, "zs_unthrottle"))
  1091. return;
  1092. if (I_IXOFF(tty)) {
  1093. if (info->x_char)
  1094. info->x_char = 0;
  1095. else
  1096. info->x_char = START_CHAR(tty);
  1097. }
  1098. /* Assert RTS line */
  1099. cli();
  1100. info->curregs[5] |= RTS;
  1101. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  1102. sti();
  1103. }
  1104. /*
  1105.  * ------------------------------------------------------------
  1106.  * zs_ioctl() and friends
  1107.  * ------------------------------------------------------------
  1108.  */
  1109. static int get_serial_info(struct sun_serial * info,
  1110.    struct serial_struct * retinfo)
  1111. {
  1112. struct serial_struct tmp;
  1113.   
  1114. if (!retinfo)
  1115. return -EFAULT;
  1116. memset(&tmp, 0, sizeof(tmp));
  1117. tmp.type = info->type;
  1118. tmp.line = info->line;
  1119. tmp.port = info->port;
  1120. tmp.irq = info->irq;
  1121. tmp.flags = info->flags;
  1122. tmp.baud_base = info->baud_base;
  1123. tmp.close_delay = info->close_delay;
  1124. tmp.closing_wait = info->closing_wait;
  1125. tmp.custom_divisor = info->custom_divisor;
  1126. if (copy_to_user(retinfo,&tmp,sizeof(*retinfo)))
  1127. return -EFAULT;
  1128. return 0;
  1129. }
  1130. static int set_serial_info(struct sun_serial * info,
  1131.    struct serial_struct * new_info)
  1132. {
  1133. struct serial_struct new_serial;
  1134. struct sun_serial old_info;
  1135. int retval = 0;
  1136. if (!new_info || copy_from_user(&new_serial,new_info,sizeof(new_serial)))
  1137. return -EFAULT;
  1138. old_info = *info;
  1139. if (!capable(CAP_SYS_ADMIN)) {
  1140. if ((new_serial.baud_base != info->baud_base) ||
  1141.     (new_serial.type != info->type) ||
  1142.     (new_serial.close_delay != info->close_delay) ||
  1143.     ((new_serial.flags & ~ZILOG_USR_MASK) !=
  1144.      (info->flags & ~ZILOG_USR_MASK)))
  1145. return -EPERM;
  1146. info->flags = ((info->flags & ~ZILOG_USR_MASK) |
  1147.        (new_serial.flags & ZILOG_USR_MASK));
  1148. info->custom_divisor = new_serial.custom_divisor;
  1149. goto check_and_exit;
  1150. }
  1151. if(new_serial.baud_base < 9600)
  1152. return -EINVAL;
  1153. if (info->count > 1)
  1154. return -EBUSY;
  1155. /*
  1156.  * OK, past this point, all the error checking has been done.
  1157.  * At this point, we start making changes.....
  1158.  */
  1159. info->baud_base = new_serial.baud_base;
  1160. info->flags = ((info->flags & ~ZILOG_FLAGS) |
  1161. (new_serial.flags & ZILOG_FLAGS));
  1162. info->custom_divisor = new_serial.custom_divisor;
  1163. info->type = new_serial.type;
  1164. info->close_delay = new_serial.close_delay;
  1165. info->closing_wait = new_serial.closing_wait;
  1166. check_and_exit:
  1167. retval = startup(info);
  1168. return retval;
  1169. }
  1170. /*
  1171.  * get_lsr_info - get line status register info
  1172.  *
  1173.  * Purpose: Let user call ioctl() to get info when the UART physically
  1174.  *      is emptied.  On bus types like RS485, the transmitter must
  1175.  *      release the bus after transmitting. This must be done when
  1176.  *      the transmit shift register is empty, not be done when the
  1177.  *      transmit holding register is empty.  This functionality
  1178.  *      allows an RS485 driver to be written in user space. 
  1179.  */
  1180. static int get_lsr_info(struct sun_serial * info, unsigned int *value)
  1181. {
  1182. unsigned char status;
  1183. cli();
  1184. status = sbus_readb(&info->zs_channel->control);
  1185. ZSDELAY();
  1186. ZSLOG(REGCTRL, status, 0);
  1187. sti();
  1188. if (put_user(status, value))
  1189. return -EFAULT;
  1190. return 0;
  1191. }
  1192. static int get_modem_info(struct sun_serial * info, unsigned int *value)
  1193. {
  1194. unsigned char status;
  1195. unsigned int result;
  1196. cli();
  1197. status = sbus_readb(&info->zs_channel->control);
  1198. ZSDELAY();
  1199. ZSLOG(REGCTRL, status, 0);
  1200. sti();
  1201. result =  ((info->curregs[5] & RTS) ? TIOCM_RTS : 0)
  1202. | ((info->curregs[5] & DTR) ? TIOCM_DTR : 0)
  1203. | ((status  & DCD) ? TIOCM_CAR : 0)
  1204. | ((status  & SYNC) ? TIOCM_DSR : 0)
  1205. | ((status  & CTS) ? TIOCM_CTS : 0);
  1206. if (put_user(result, value))
  1207. return -EFAULT;
  1208. return 0;
  1209. }
  1210. static int set_modem_info(struct sun_serial * info, unsigned int cmd,
  1211.   unsigned int *value)
  1212. {
  1213. unsigned int arg;
  1214. if (get_user(arg, value))
  1215. return -EFAULT;
  1216. switch (cmd) {
  1217. case TIOCMBIS: 
  1218. if (arg & TIOCM_RTS)
  1219. info->curregs[5] |= RTS;
  1220. if (arg & TIOCM_DTR)
  1221. info->curregs[5] |= DTR;
  1222. break;
  1223. case TIOCMBIC:
  1224. if (arg & TIOCM_RTS)
  1225. info->curregs[5] &= ~RTS;
  1226. if (arg & TIOCM_DTR)
  1227. info->curregs[5] &= ~DTR;
  1228. break;
  1229. case TIOCMSET:
  1230. info->curregs[5] = ((info->curregs[5] & ~(RTS | DTR))
  1231.      | ((arg & TIOCM_RTS) ? RTS : 0)
  1232.      | ((arg & TIOCM_DTR) ? DTR : 0));
  1233. break;
  1234. default:
  1235. return -EINVAL;
  1236. }
  1237. cli();
  1238. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  1239. sti();
  1240. return 0;
  1241. }
  1242. /*
  1243.  * This routine sends a break character out the serial port.
  1244.  */
  1245. static void send_break( struct sun_serial * info, int duration)
  1246. {
  1247. if (!info->port)
  1248. return;
  1249. current->state = TASK_INTERRUPTIBLE;
  1250. cli();
  1251. write_zsreg(info->zs_channel, 5, (info->curregs[5] | SND_BRK));
  1252. schedule_timeout(duration);
  1253. write_zsreg(info->zs_channel, 5, info->curregs[5]);
  1254. sti();
  1255. }
  1256. static int zs_ioctl(struct tty_struct *tty, struct file * file,
  1257.     unsigned int cmd, unsigned long arg)
  1258. {
  1259. struct sun_serial * info = (struct sun_serial *) tty->driver_data;
  1260. int retval;
  1261. if (serial_paranoia_check(info, tty->device, "zs_ioctl"))
  1262. return -ENODEV;
  1263. if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
  1264.     (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD)  &&
  1265.     (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT)) {
  1266. if (tty->flags & (1 << TTY_IO_ERROR))
  1267.     return -EIO;
  1268. }
  1269. switch (cmd) {
  1270. case TCSBRK: /* SVID version: non-zero arg --> no break */
  1271. retval = tty_check_change(tty);
  1272. if (retval)
  1273. return retval;
  1274. tty_wait_until_sent(tty, 0);
  1275. if (!arg)
  1276. send_break(info, HZ/4); /* 1/4 second */
  1277. return 0;
  1278. case TCSBRKP: /* support for POSIX tcsendbreak() */
  1279. retval = tty_check_change(tty);
  1280. if (retval)
  1281. return retval;
  1282. tty_wait_until_sent(tty, 0);
  1283. send_break(info, arg ? arg*(HZ/10) : HZ/4);
  1284. return 0;
  1285. case TIOCGSOFTCAR:
  1286. if (put_user(C_CLOCAL(tty) ? 1 : 0,
  1287.      (unsigned long *) arg))
  1288. return -EFAULT;
  1289. return 0;
  1290. case TIOCSSOFTCAR:
  1291. if (get_user(arg, (unsigned long *) arg))
  1292. return -EFAULT;
  1293. tty->termios->c_cflag =
  1294. ((tty->termios->c_cflag & ~CLOCAL) |
  1295.  (arg ? CLOCAL : 0));
  1296. return 0;
  1297. case TIOCMGET:
  1298. return get_modem_info(info, (unsigned int *) arg);
  1299. case TIOCMBIS:
  1300. case TIOCMBIC:
  1301. case TIOCMSET:
  1302. return set_modem_info(info, cmd, (unsigned int *) arg);
  1303. case TIOCGSERIAL:
  1304. return get_serial_info(info,
  1305.        (struct serial_struct *) arg);
  1306. case TIOCSSERIAL:
  1307. return set_serial_info(info,
  1308.        (struct serial_struct *) arg);
  1309. case TIOCSERGETLSR: /* Get line status register */
  1310. return get_lsr_info(info, (unsigned int *) arg);
  1311. case TIOCSERGSTRUCT:
  1312. if (copy_to_user((struct sun_serial *) arg,
  1313.     info, sizeof(struct sun_serial)))
  1314. return -EFAULT;
  1315. return 0;
  1316. default:
  1317. return -ENOIOCTLCMD;
  1318. }
  1319. return 0;
  1320. }
  1321. static void zs_set_termios(struct tty_struct *tty, struct termios *old_termios)
  1322. {
  1323. struct sun_serial *info = (struct sun_serial *) tty->driver_data;
  1324. if (tty->termios->c_cflag == old_termios->c_cflag)
  1325. return;
  1326. change_speed(info);
  1327. if ((old_termios->c_cflag & CRTSCTS) &&
  1328.     !(tty->termios->c_cflag & CRTSCTS)) {
  1329. tty->hw_stopped = 0;
  1330. zs_start(tty);
  1331. }
  1332. }
  1333. /*
  1334.  * ------------------------------------------------------------
  1335.  * zs_close()
  1336.  * 
  1337.  * This routine is called when the serial port gets closed.  First, we
  1338.  * wait for the last remaining data to be sent.  Then, we unlink its
  1339.  * ZILOG structure from the interrupt chain if necessary, and we free
  1340.  * that IRQ if nothing is left in the chain.
  1341.  * ------------------------------------------------------------
  1342.  */
  1343. static void zs_close(struct tty_struct *tty, struct file * filp)
  1344. {
  1345. struct sun_serial * info = (struct sun_serial *) tty->driver_data;
  1346. unsigned long flags;
  1347. if (!info || serial_paranoia_check(info, tty->device, "zs_close"))
  1348. return;
  1349. save_flags(flags); cli();
  1350. if (tty_hung_up_p(filp)) {
  1351. restore_flags(flags);
  1352. return;
  1353. }
  1354. #ifdef SERIAL_DEBUG_OPEN
  1355. printk("zs_close tty-%d, count = %dn", info->line, info->count);
  1356. #endif
  1357. if ((tty->count == 1) && (info->count != 1)) {
  1358. /*
  1359.  * Uh, oh.  tty->count is 1, which means that the tty
  1360.  * structure will be freed.  Info->count should always
  1361.  * be one in these conditions.  If it's greater than
  1362.  * one, we've got real problems, since it means the
  1363.  * serial port won't be shutdown.
  1364.  */
  1365. printk("zs_close: bad serial port count; tty->count is 1, "
  1366.        "info->count is %dn", info->count);
  1367. info->count = 1;
  1368. }
  1369. if (--info->count < 0) {
  1370. printk("zs_close: bad serial port count for ttys%d: %dn",
  1371.        info->line, info->count);
  1372. info->count = 0;
  1373. }
  1374. if (info->count) {
  1375. restore_flags(flags);
  1376. return;
  1377. }
  1378. info->flags |= ZILOG_CLOSING;
  1379. /*
  1380.  * Save the termios structure, since this port may have
  1381.  * separate termios for callout and dialin.
  1382.  */
  1383. if (info->flags & ZILOG_NORMAL_ACTIVE)
  1384. info->normal_termios = *tty->termios;
  1385. if (info->flags & ZILOG_CALLOUT_ACTIVE)
  1386. info->callout_termios = *tty->termios;
  1387. /*
  1388.  * Now we wait for the transmit buffer to clear; and we notify 
  1389.  * the line discipline to only process XON/XOFF characters.
  1390.  */
  1391. tty->closing = 1;
  1392. if (info->closing_wait != ZILOG_CLOSING_WAIT_NONE)
  1393. tty_wait_until_sent(tty, info->closing_wait);
  1394. /*
  1395.  * At this point we stop accepting input.  To do this, we
  1396.  * disable the receive line status interrupts, and tell the
  1397.  * interrupt driver to stop checking the data ready bit in the
  1398.  * line status register.
  1399.  */
  1400. /** if (!info->iscons) ... **/
  1401. info->curregs[3] &= ~RxENAB;
  1402. write_zsreg(info->zs_channel, 3, info->curregs[3]);
  1403. info->curregs[1] &= ~(RxINT_MASK);
  1404. write_zsreg(info->zs_channel, 1, info->curregs[1]);
  1405. ZS_CLEARFIFO(info->zs_channel);
  1406. shutdown(info);
  1407. if (tty->driver.flush_buffer)
  1408. tty->driver.flush_buffer(tty);
  1409. if (tty->ldisc.flush_buffer)
  1410. tty->ldisc.flush_buffer(tty);
  1411. tty->closing = 0;
  1412. info->event = 0;
  1413. info->tty = 0;
  1414. if (tty->ldisc.num != ldiscs[N_TTY].num) {
  1415. if (tty->ldisc.close)
  1416. (tty->ldisc.close)(tty);
  1417. tty->ldisc = ldiscs[N_TTY];
  1418. tty->termios->c_line = N_TTY;
  1419. if (tty->ldisc.open)
  1420. (tty->ldisc.open)(tty);
  1421. }
  1422. if (info->blocked_open) {
  1423. if (info->close_delay) {
  1424. current->state = TASK_INTERRUPTIBLE;
  1425. schedule_timeout(info->close_delay);
  1426. }
  1427. wake_up_interruptible(&info->open_wait);
  1428. }
  1429. info->flags &= ~(ZILOG_NORMAL_ACTIVE|ZILOG_CALLOUT_ACTIVE|
  1430.  ZILOG_CLOSING);
  1431. wake_up_interruptible(&info->close_wait);
  1432. #ifdef SERIAL_DEBUG_OPEN
  1433. printk("zs_close tty-%d exiting, count = %dn", info->line, info->count);
  1434. #endif
  1435. restore_flags(flags);
  1436. }
  1437. /*
  1438.  * zs_hangup() --- called by tty_hangup() when a hangup is signaled.
  1439.  */
  1440. void zs_hangup(struct tty_struct *tty)
  1441. {
  1442. struct sun_serial * info = (struct sun_serial *) tty->driver_data;
  1443. if (serial_paranoia_check(info, tty->device, "zs_hangup"))
  1444. return;
  1445. if (info->is_cons)
  1446. return;
  1447. #ifdef SERIAL_DEBUG_OPEN
  1448. printk("zs_hangup<%p: tty-%d, count = %d byen",
  1449. __builtin_return_address(0), info->line, info->count);
  1450. #endif
  1451. zs_flush_buffer(tty);
  1452. shutdown(info);
  1453. info->event = 0;
  1454. info->count = 0;
  1455. info->flags &= ~(ZILOG_NORMAL_ACTIVE|ZILOG_CALLOUT_ACTIVE);
  1456. info->tty = 0;
  1457. wake_up_interruptible(&info->open_wait);
  1458. }
  1459. /*
  1460.  *
  1461.  * line_info - returns information about each channel
  1462.  *
  1463.  */
  1464. static inline int line_info(char *buf, struct sun_serial *info)
  1465. {
  1466. unsigned char status;
  1467. char stat_buf[30];
  1468. int ret;
  1469. ret = sprintf(buf, "%d: uart:Zilog8530 port:%x irq:%d",
  1470. info->line, info->port, info->irq);
  1471. cli();
  1472. status = sbus_readb(&info->zs_channel->control);
  1473. ZSDELAY();
  1474. ZSLOG(REGCTRL, status, 0);
  1475. sti();
  1476. stat_buf[0] = 0;
  1477. stat_buf[1] = 0;
  1478. if (info->curregs[5] & RTS)
  1479. strcat(stat_buf, "|RTS");
  1480. if (status & CTS)
  1481. strcat(stat_buf, "|CTS");
  1482. if (info->curregs[5] & DTR)
  1483. strcat(stat_buf, "|DTR");
  1484. if (status & SYNC)
  1485. strcat(stat_buf, "|DSR");
  1486. if (status & DCD)
  1487. strcat(stat_buf, "|CD");
  1488. ret += sprintf(buf + ret, " baud:%d %sn", info->zs_baud, stat_buf + 1);
  1489. return ret;
  1490. }
  1491. /*
  1492.  *
  1493.  * zs_read_proc() - called when /proc/tty/driver/serial is read.
  1494.  *
  1495.  */
  1496. int zs_read_proc(char *page, char **start, off_t off, int count,
  1497.                  int *eof, void *data)
  1498. {
  1499. char *revision = "$Revision: 1.68.2.2 $";
  1500. char *version, *p;
  1501. int i, len = 0, l;
  1502. off_t begin = 0;
  1503. version = strchr(revision, ' ');
  1504. p = strchr(++version, ' ');
  1505. *p = '';
  1506. len += sprintf(page, "serinfo:1.0 driver:%sn", version);
  1507. *p = ' ';
  1508. for (i = 0; i < NUM_CHANNELS && len < 4000; i++) {
  1509. l = line_info(page + len, &zs_soft[i]);
  1510. len += l;
  1511. if (len+begin > off+count)
  1512. goto done;
  1513. if (len+begin < off) {
  1514. begin += len;
  1515. len = 0;
  1516. }
  1517. }
  1518. *eof = 1;
  1519. done:
  1520. if (off >= len+begin)
  1521. return 0;
  1522. *start = page + (off-begin);
  1523. return ((count < begin+len-off) ? count : begin+len-off);
  1524. }
  1525. /*
  1526.  * ------------------------------------------------------------
  1527.  * zs_open() and friends
  1528.  * ------------------------------------------------------------
  1529.  */
  1530. static int block_til_ready(struct tty_struct *tty, struct file * filp,
  1531.    struct sun_serial *info)
  1532. {
  1533. DECLARE_WAITQUEUE(wait, current);
  1534. int retval, do_clocal = 0;
  1535. unsigned char r0;
  1536. /*
  1537.  * If the device is in the middle of being closed, then block
  1538.  * until it's done, and then try again.
  1539.  */
  1540. if (info->flags & ZILOG_CLOSING) {
  1541. interruptible_sleep_on(&info->close_wait);
  1542. #ifdef SERIAL_DO_RESTART
  1543. if (info->flags & ZILOG_HUP_NOTIFY)
  1544. return -EAGAIN;
  1545. else
  1546. return -ERESTARTSYS;
  1547. #else
  1548. return -EAGAIN;
  1549. #endif
  1550. }
  1551. /*
  1552.  * If this is a callout device, then just make sure the normal
  1553.  * device isn't being used.
  1554.  */
  1555. if (tty->driver.subtype == SERIAL_TYPE_CALLOUT) {
  1556. if (info->flags & ZILOG_NORMAL_ACTIVE)
  1557. return -EBUSY;
  1558. if ((info->flags & ZILOG_CALLOUT_ACTIVE) &&
  1559.     (info->flags & ZILOG_SESSION_LOCKOUT) &&
  1560.     (info->session != current->session))
  1561.     return -EBUSY;
  1562. if ((info->flags & ZILOG_CALLOUT_ACTIVE) &&
  1563.     (info->flags & ZILOG_PGRP_LOCKOUT) &&
  1564.     (info->pgrp != current->pgrp))
  1565.     return -EBUSY;
  1566. info->flags |= ZILOG_CALLOUT_ACTIVE;
  1567. return 0;
  1568. }
  1569. /*
  1570.  * If non-blocking mode is set, or the port is not enabled,
  1571.  * then make the check up front and then exit.
  1572.  */
  1573. if ((filp->f_flags & O_NONBLOCK) ||
  1574.     (tty->flags & (1 << TTY_IO_ERROR))) {
  1575. if (info->flags & ZILOG_CALLOUT_ACTIVE)
  1576. return -EBUSY;
  1577. info->flags |= ZILOG_NORMAL_ACTIVE;
  1578. return 0;
  1579. }
  1580. if (info->flags & ZILOG_CALLOUT_ACTIVE) {
  1581. if (info->normal_termios.c_cflag & CLOCAL)
  1582. do_clocal = 1;
  1583. } else {
  1584. if (tty->termios->c_cflag & CLOCAL)
  1585. do_clocal = 1;
  1586. }
  1587. /*
  1588.  * Block waiting for the carrier detect and the line to become
  1589.  * free (i.e., not in use by the callout).  While we are in
  1590.  * this loop, info->count is dropped by one, so that
  1591.  * zs_close() knows when to free things.  We restore it upon
  1592.  * exit, either normal or abnormal.
  1593.  */
  1594. retval = 0;
  1595. add_wait_queue(&info->open_wait, &wait);
  1596. #ifdef SERIAL_DEBUG_OPEN
  1597. printk("block_til_ready before block: ttys%d, count = %dn",
  1598.        info->line, info->count);
  1599. #endif
  1600. cli();
  1601. if(!tty_hung_up_p(filp))
  1602. info->count--;
  1603. sti();
  1604. info->blocked_open++;
  1605. while (1) {
  1606. cli();
  1607. if (!(info->flags & ZILOG_CALLOUT_ACTIVE))
  1608. zs_rtsdtr(info, 1);
  1609. sti();
  1610. set_current_state(TASK_INTERRUPTIBLE);
  1611. if (tty_hung_up_p(filp) ||
  1612.     !(info->flags & ZILOG_INITIALIZED)) {
  1613. #ifdef SERIAL_DEBUG_OPEN
  1614. printk("block_til_ready hup-ed: ttys%d, count = %dn",
  1615. info->line, info->count);
  1616. #endif
  1617. #ifdef SERIAL_DO_RESTART
  1618. if (info->flags & ZILOG_HUP_NOTIFY)
  1619. retval = -EAGAIN;
  1620. else
  1621. retval = -ERESTARTSYS;
  1622. #else
  1623. retval = -EAGAIN;
  1624. #endif
  1625. break;
  1626. }
  1627. cli();
  1628. r0 = read_zsreg(info->zs_channel, R0);
  1629. sti();
  1630. if (!(info->flags & ZILOG_CALLOUT_ACTIVE) &&
  1631.     !(info->flags & ZILOG_CLOSING) &&
  1632.     (do_clocal || (DCD & r0)))
  1633. break;
  1634. if (signal_pending(current)) {
  1635. retval = -ERESTARTSYS;
  1636. break;
  1637. }
  1638. #ifdef SERIAL_DEBUG_OPEN
  1639. printk("block_til_ready blocking: ttys%d, count = %dn",
  1640.        info->line, info->count);
  1641. #endif
  1642. schedule();
  1643. }
  1644. current->state = TASK_RUNNING;
  1645. remove_wait_queue(&info->open_wait, &wait);
  1646. if (!tty_hung_up_p(filp))
  1647. info->count++;
  1648. info->blocked_open--;
  1649. #ifdef SERIAL_DEBUG_OPEN
  1650. printk("block_til_ready after blocking: ttys%d, count = %dn",
  1651.        info->line, info->count);
  1652. #endif
  1653. if (retval)
  1654. return retval;
  1655. info->flags |= ZILOG_NORMAL_ACTIVE;
  1656. return 0;
  1657. }
  1658. /*
  1659.  * This routine is called whenever a serial port is opened.  It
  1660.  * enables interrupts for a serial port, linking in its ZILOG structure into
  1661.  * the IRQ chain.   It also performs the serial-specific
  1662.  * initialization for the tty structure.
  1663.  */
  1664. int zs_open(struct tty_struct *tty, struct file * filp)
  1665. {
  1666. struct sun_serial *info;
  1667. int retval, line;
  1668. line = MINOR(tty->device) - tty->driver.minor_start;
  1669. /* The zilog lines for the mouse/keyboard must be
  1670.  * opened using their respective drivers.
  1671.  */
  1672. if ((line < 0) || (line >= NUM_CHANNELS))
  1673. return -ENODEV;
  1674. if((line == KEYBOARD_LINE) || (line == MOUSE_LINE))
  1675. return -ENODEV;
  1676. info = zs_soft + line;
  1677. /* Is the kgdb running over this line? */
  1678. if (info->kgdb_channel)
  1679. return -ENODEV;
  1680. if (serial_paranoia_check(info, tty->device, "zs_open"))
  1681. return -ENODEV;
  1682. #ifdef SERIAL_DEBUG_OPEN
  1683. printk("zs_open %s%d, count = %dn", tty->driver.name, info->line,
  1684.        info->count);
  1685. #endif
  1686. if (info->tty != 0 && info->tty != tty) {
  1687. /* Never happen? */
  1688. printk("zs_open %s%d, tty overwrite.n", tty->driver.name, info->line);
  1689. return -EBUSY;
  1690. }
  1691. if (!tmp_buf) {
  1692. unsigned long page = get_free_page(GFP_KERNEL);
  1693. if (!page)
  1694. return -ENOMEM;
  1695. if (tmp_buf)
  1696. free_page(page);
  1697. else
  1698. tmp_buf = (unsigned char *) page;
  1699. }
  1700. info->count++;
  1701. tty->driver_data = info;
  1702. info->tty = tty;
  1703. /*
  1704.  * Start up serial port
  1705.  */
  1706. retval = startup(info);
  1707. if (retval)
  1708. return retval;
  1709. retval = block_til_ready(tty, filp, info);
  1710. if (retval) {
  1711. #ifdef SERIAL_DEBUG_OPEN
  1712. printk("zs_open returning after block_til_ready with %dn",
  1713.        retval);
  1714. #endif
  1715. return retval;
  1716. }
  1717. if ((info->count == 1) && (info->flags & ZILOG_SPLIT_TERMIOS)) {
  1718. if (tty->driver.subtype == SERIAL_TYPE_NORMAL)
  1719. *tty->termios = info->normal_termios;
  1720. else 
  1721. *tty->termios = info->callout_termios;
  1722. change_speed(info);
  1723. }
  1724. #ifdef CONFIG_SERIAL_CONSOLE
  1725. if (zs_console.cflag && zs_console.index == line) {
  1726. tty->termios->c_cflag = zs_console.cflag;
  1727. zs_console.cflag = 0;
  1728. change_speed(info);
  1729. }
  1730. #endif
  1731. info->session = current->session;
  1732. info->pgrp = current->pgrp;
  1733. #ifdef SERIAL_DEBUG_OPEN
  1734. printk("zs_open ttys%d successful...", info->line);
  1735. #endif
  1736. return 0;
  1737. }
  1738. /* Finally, routines used to initialize the serial driver. */
  1739. static void show_serial_version(void)
  1740. {
  1741. char *revision = "$Revision: 1.68.2.2 $";
  1742. char *version, *p;
  1743. version = strchr(revision, ' ');
  1744. p = strchr(++version, ' ');
  1745. *p = '';
  1746. printk("Sparc Zilog8530 serial driver version %sn", version);
  1747. *p = ' ';
  1748. }
  1749. /* Probe the PROM for the request zs chip number.
  1750.  *
  1751.  * Note: The Sun Voyager shows two addresses and two intr for it's
  1752.  *       Zilogs, what the second does, I don't know. It does work
  1753.  *       with using only the first number of each property.  Also
  1754.  *       we have a special version for sun4u.
  1755.  */
  1756. #ifdef __sparc_v9__
  1757. static struct sun_zslayout * __init get_zs(int chip)
  1758. {
  1759. unsigned int vaddr[2] = { 0, 0 };
  1760. unsigned long mapped_addr = 0;
  1761. int busnode, seen, zsnode, sun4u_ino;
  1762. static int irq = 0;
  1763. if(chip < 0 || chip >= NUM_SERIAL) {
  1764. prom_printf("get_zs bogon zs chip number");
  1765. prom_halt();
  1766. }
  1767. if(central_bus)
  1768. busnode = central_bus->child->prom_node;
  1769. else
  1770. busnode = prom_searchsiblings(prom_getchild(prom_root_node), "sbus");
  1771. if(busnode == 0 || busnode == -1) {
  1772. prom_printf("get_zs: no zs bus to search");
  1773. prom_halt();
  1774. }
  1775. zsnode = prom_getchild(busnode);
  1776. seen = 0;
  1777. while(zsnode) {
  1778. int slave;
  1779. zsnode = prom_searchsiblings(zsnode, "zs");
  1780. slave = prom_getintdefault(zsnode, "slave", -1);
  1781. if((slave == chip) || (seen == chip)) {
  1782. int len = prom_getproperty(zsnode, "address",
  1783.    (void *) vaddr, sizeof(vaddr));
  1784. if(len == -1 || central_bus != NULL) {
  1785. struct sbus_bus *sbus = NULL;
  1786. struct sbus_dev *sdev = NULL;
  1787. /* "address" property is not guarenteed,
  1788.  * everything in I/O is implicitly mapped
  1789.  * anyways by our clever TLB miss handling
  1790.  * scheme, so don't fail here.  -DaveM
  1791.  */
  1792. if (central_bus == NULL) {
  1793. for_each_sbus(sbus) {
  1794. for_each_sbusdev(sdev, sbus) {
  1795. if (sdev->prom_node == zsnode)
  1796. goto found;
  1797. }
  1798. }
  1799. }
  1800. found:
  1801. if (sdev == NULL && central_bus == NULL)
  1802. prom_halt();
  1803. if (central_bus == NULL) {
  1804. mapped_addr =
  1805.     sbus_ioremap(&sdev->resource[0], 0,
  1806.  PAGE_SIZE, "Zilog Registers");
  1807. } else {
  1808. struct linux_prom_registers zsregs[1];
  1809. int err;
  1810. err = prom_getproperty(zsnode, "reg",
  1811.        (char *)&zsregs[0],
  1812.        sizeof(zsregs));
  1813. if (err == -1) {
  1814. prom_printf("ZS: Cannot map Zilog regs.n");
  1815. prom_halt();
  1816. }
  1817. apply_fhc_ranges(central_bus->child, &zsregs[0], 1);
  1818. apply_central_ranges(central_bus, &zsregs[0], 1);
  1819. mapped_addr =
  1820. ((((u64)zsregs[0].which_io)<<32UL)|
  1821.  ((u64)zsregs[0].phys_addr));
  1822. }
  1823. } else if(len % sizeof(unsigned int)) {
  1824. prom_printf("WHOOPS:  proplen for %s "
  1825.     "was %d, need multiple of "
  1826.     "%dn", "address", len,
  1827.     sizeof(unsigned int));
  1828. panic("zilog: address property");
  1829. }
  1830. zs_nodes[chip] = zsnode;
  1831. len = prom_getproperty(zsnode, "interrupts",
  1832.        (char *) &sun4u_ino,
  1833.        (sizeof(sun4u_ino)));
  1834. if(!irq) {
  1835. if (central_bus) {
  1836. unsigned long iclr, imap;
  1837. iclr = central_bus->child->fhc_regs.uregs + FHC_UREGS_ICLR;
  1838. imap = central_bus->child->fhc_regs.uregs + FHC_UREGS_IMAP;
  1839. irq = zilog_irq = build_irq(12, 0, iclr, imap);
  1840. } else {
  1841. irq = zilog_irq = 
  1842. sbus_build_irq(sbus_root, sun4u_ino);
  1843. }
  1844. }
  1845. break;
  1846. }
  1847. zsnode = prom_getsibling(zsnode);
  1848. seen++;
  1849. }
  1850. if(!zsnode)
  1851. panic("get_zs: whee chip not found");
  1852. if(!vaddr[0] && !mapped_addr)
  1853. panic("get_zs: whee no serial chip mappable");
  1854. if (mapped_addr != 0) {
  1855. return (struct sun_zslayout *) mapped_addr;
  1856. } else {
  1857. return (struct sun_zslayout *) prom_virt_to_phys((unsigned long)vaddr[0], 0);
  1858. }
  1859. }
  1860. #else /* !(__sparc_v9__) */
  1861. static struct sun_zslayout * __init get_zs(int chip)
  1862. {
  1863. struct linux_prom_irqs tmp_irq[2];
  1864. unsigned int paddr = 0;
  1865. unsigned int vaddr[2] = { 0, 0 };
  1866. int zsnode, tmpnode, iospace, slave, len;
  1867. int cpunode = 0, bbnode = 0;
  1868. static int irq = 0;
  1869. int chipid = chip;
  1870. iospace = 0;
  1871. if(chip < 0 || chip >= NUM_SERIAL)
  1872. panic("get_zs bogon zs chip number");
  1873. if(sparc_cpu_model == sun4) {
  1874. struct resource dummy_resource;
  1875. /* Grrr, these have to be hardcoded aieee */
  1876. switch(chip) {
  1877. case 0:
  1878. paddr = 0xf1000000;
  1879. break;
  1880. case 1:
  1881. paddr = 0xf0000000;
  1882. break;
  1883. };
  1884. iospace = 0;
  1885. zs_nodes[chip] = 0;
  1886. if(!irq)
  1887. zilog_irq = irq = 12;
  1888. dummy_resource.start = paddr;
  1889. dummy_resource.end = paddr + 8 - 1;
  1890. dummy_resource.flags = IORESOURCE_IO;
  1891. vaddr[0] = sbus_ioremap(&dummy_resource, 0,
  1892. 8, "Zilog Serial");
  1893. } else {
  1894. /* Can use the prom for other machine types */
  1895. zsnode = prom_getchild(prom_root_node);
  1896. if (sparc_cpu_model == sun4d) {
  1897. int no = 0;
  1898. tmpnode = zsnode;
  1899. zsnode = 0;
  1900. bbnode = 0;
  1901. while (tmpnode && (tmpnode = prom_searchsiblings(tmpnode, "cpu-unit"))) {
  1902. bbnode = prom_getchild(tmpnode);
  1903. if (bbnode && (bbnode = prom_searchsiblings(bbnode, "bootbus"))) {
  1904. if (no == (chip >> 1)) {
  1905. cpunode = tmpnode;
  1906. zsnode = prom_getchild(bbnode);
  1907. chipid = (chip & 1);
  1908. break;
  1909. }
  1910. no++;
  1911. }
  1912. tmpnode = prom_getsibling(tmpnode);
  1913. }
  1914. if (!tmpnode)
  1915. panic ("get_zs: couldn't find %dth bootbusn", chip >> 1);
  1916. } else {
  1917. tmpnode = prom_searchsiblings(zsnode, "obio");
  1918. if(tmpnode)
  1919. zsnode = prom_getchild(tmpnode);
  1920. }
  1921. if(!zsnode)
  1922. panic("get_zs no zs serial prom node");
  1923. while(zsnode) {
  1924. zsnode = prom_searchsiblings(zsnode, "zs");
  1925. slave = prom_getintdefault(zsnode, "slave", -1);
  1926. if(slave == chipid) {
  1927. /* The one we want */
  1928. if (sparc_cpu_model != sun4d) {
  1929. len = prom_getproperty(zsnode, "address",
  1930.        (void *) vaddr,
  1931.        sizeof(vaddr));
  1932.          if (len % sizeof(unsigned int)) {
  1933. prom_printf("WHOOPS:  proplen for %s "
  1934. "was %d, need multiple of "
  1935. "%dn", "address", len,
  1936. sizeof(unsigned int));
  1937. panic("zilog: address property");
  1938. }
  1939. } else {
  1940. /* On sun4d don't have address property :( */
  1941. struct linux_prom_registers zsreg[4];
  1942. struct resource res;
  1943. if (prom_getproperty(zsnode, "reg", (char *)zsreg, sizeof(zsreg)) == -1) {
  1944. prom_printf ("Cannot map zs regsn");
  1945. prom_halt();
  1946. }
  1947. prom_apply_generic_ranges(bbnode, cpunode, zsreg, 1);
  1948. res.start = zsreg[0].phys_addr;
  1949. res.end = res.start + 8 - 1;
  1950. res.flags = zsreg[0].which_io | IORESOURCE_IO;
  1951. vaddr[0] = sbus_ioremap(&res, 0,
  1952. 8, "Zilog Serial");
  1953. }
  1954. zs_nodes[chip] = zsnode;
  1955. len = prom_getproperty(zsnode, "intr",
  1956.        (char *) tmp_irq,
  1957.        sizeof(tmp_irq));
  1958. if (len % sizeof(struct linux_prom_irqs)) {
  1959. prom_printf(
  1960.       "WHOOPS:  proplen for %s "
  1961.       "was %d, need multiple of "
  1962.       "%dn", "intr", len,
  1963.       sizeof(struct linux_prom_irqs));
  1964. panic("zilog: intr property");
  1965. }
  1966. if(!irq) {
  1967. irq = zilog_irq = tmp_irq[0].pri;
  1968. } else {
  1969. if(tmp_irq[0].pri != irq)
  1970. panic("zilog: bogon irqs");
  1971. }
  1972. break;
  1973. }
  1974. zsnode = prom_getsibling(zsnode);
  1975. }
  1976. if(!zsnode)
  1977. panic("get_zs whee chip not found");
  1978. }
  1979. if(!vaddr[0])
  1980. panic("get_zs whee no serial chip mappable");
  1981. return (struct sun_zslayout *)(unsigned long) vaddr[0];
  1982. }
  1983. #endif
  1984. /* This is for the auto baud rate detection in the mouse driver. */
  1985. void zs_change_mouse_baud(int newbaud)
  1986. {
  1987. int channel = MOUSE_LINE;
  1988. int brg;
  1989. zs_soft[channel].zs_baud = newbaud;
  1990. brg = BPS_TO_BRG(zs_soft[channel].zs_baud,
  1991.  (ZS_CLOCK / zs_soft[channel].clk_divisor));
  1992. write_zsreg(zs_soft[channel].zs_channel, R12, (brg & 0xff));
  1993. write_zsreg(zs_soft[channel].zs_channel, R13, ((brg >> 8) & 0xff));
  1994. }
  1995. void __init zs_init_alloc_failure(const char *table_name)
  1996. {
  1997. prom_printf("zs_probe: Cannot alloc %s.n", table_name);
  1998. prom_halt();
  1999. }
  2000. void * __init zs_alloc_bootmem(unsigned long size)
  2001. {
  2002. void *ret;
  2003. ret = __alloc_bootmem(size, SMP_CACHE_BYTES, 0UL);
  2004. if (ret != NULL)
  2005. memset(ret, 0, size);
  2006. return ret;
  2007. }
  2008. void __init zs_alloc_tables(void)
  2009. {
  2010. zs_chips = (struct sun_zslayout **)
  2011. zs_alloc_bootmem(NUM_SERIAL * sizeof(struct sun_zslayout *));
  2012. if (zs_chips == NULL)
  2013. zs_init_alloc_failure("zs_chips");
  2014. zs_channels = (struct sun_zschannel **)
  2015. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct sun_zschannel *));
  2016. if (zs_channels == NULL)
  2017. zs_init_alloc_failure("zs_channels");
  2018. zs_nodes = (int *)
  2019. zs_alloc_bootmem(NUM_SERIAL * sizeof(int));
  2020. if (zs_nodes == NULL)
  2021. zs_init_alloc_failure("zs_nodes");
  2022. zs_soft = (struct sun_serial *)
  2023. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct sun_serial));
  2024. if (zs_soft == NULL)
  2025. zs_init_alloc_failure("zs_soft");
  2026. zs_ttys = (struct tty_struct *)
  2027. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct tty_struct));
  2028. if (zs_ttys == NULL)
  2029. zs_init_alloc_failure("zs_ttys");
  2030. serial_table = (struct tty_struct **)
  2031. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct tty_struct *));
  2032. if (serial_table == NULL)
  2033. zs_init_alloc_failure("serial_table");
  2034. serial_termios = (struct termios **)
  2035. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct termios *));
  2036. if (serial_termios == NULL)
  2037. zs_init_alloc_failure("serial_termios");
  2038. serial_termios_locked = (struct termios **)
  2039. zs_alloc_bootmem(NUM_CHANNELS * sizeof(struct termios *));
  2040. if (serial_termios_locked == NULL)
  2041. zs_init_alloc_failure("serial_termios_locked");
  2042. }
  2043. int __init zs_probe(void)
  2044. {
  2045. int node;
  2046. if(sparc_cpu_model == sun4)
  2047. goto no_probe;
  2048. NUM_SERIAL = 0;
  2049. node = prom_getchild(prom_root_node);
  2050. if (sparc_cpu_model == sun4d) {
  2051. int bbnode;
  2052. while (node && (node = prom_searchsiblings(node, "cpu-unit"))) {
  2053. bbnode = prom_getchild(node);
  2054. if (bbnode && prom_searchsiblings(bbnode, "bootbus"))
  2055. NUM_SERIAL += 2;
  2056. node = prom_getsibling(node);
  2057. }
  2058. goto no_probe;
  2059. }
  2060. #ifdef __sparc_v9__
  2061. else if (sparc_cpu_model == sun4u) {
  2062. int central_node;
  2063. /* Central bus zilogs must be checked for first,
  2064.  * since Enterprise boxes might have SBUSes as well.
  2065.  */
  2066. central_node = prom_finddevice("/central");
  2067. if(central_node != 0 && central_node != -1)
  2068. node = prom_searchsiblings(prom_getchild(central_node), "fhc");
  2069. else
  2070. node = prom_searchsiblings(node, "sbus");
  2071. if(node != 0 && node != -1)
  2072. node = prom_getchild(node);
  2073. if(node == 0 || node == -1)
  2074. return -ENODEV;
  2075. }
  2076. #endif /* __sparc_v9__ */
  2077. else {
  2078. node = prom_searchsiblings(node, "obio");
  2079. if(node)
  2080. node = prom_getchild(node);
  2081. NUM_SERIAL = 2;
  2082. goto no_probe;
  2083. }
  2084. node = prom_searchsiblings(node, "zs");
  2085. if (!node)
  2086. return -ENODEV;
  2087. NUM_SERIAL = 2;
  2088. no_probe:
  2089. zs_alloc_tables();
  2090. /* Fill in rs_ops struct... */
  2091. #ifdef CONFIG_SERIAL_CONSOLE
  2092. sunserial_setinitfunc(zs_console_init);
  2093. #endif
  2094. sunserial_setinitfunc(zs_init);
  2095. rs_ops.rs_kgdb_hook = zs_kgdb_hook;
  2096. rs_ops.rs_change_mouse_baud = zs_change_mouse_baud;
  2097. sunkbd_setinitfunc(sun_kbd_init);
  2098. kbd_ops.compute_shiftstate = sun_compute_shiftstate;
  2099. kbd_ops.setledstate = sun_setledstate;
  2100. kbd_ops.getledstate = sun_getledstate;
  2101. kbd_ops.setkeycode = sun_setkeycode;
  2102. kbd_ops.getkeycode = sun_getkeycode;
  2103. #if defined(__sparc_v9__) && defined(CONFIG_PCI)
  2104. sunkbd_install_keymaps(sun_key_maps, sun_keymap_count,
  2105.        sun_func_buf, sun_func_table,
  2106.        sun_funcbufsize, sun_funcbufleft,
  2107.        sun_accent_table, sun_accent_table_size);
  2108. #endif
  2109. return 0;
  2110. }
  2111. static inline void zs_prepare(void)
  2112. {
  2113. int channel, chip;
  2114. unsigned long flags;
  2115. if (!NUM_SERIAL)
  2116. return;
  2117. save_and_cli(flags);
  2118. /* Set up our interrupt linked list */
  2119. zs_chain = &zs_soft[0];
  2120. for(channel = 0; channel < NUM_CHANNELS - 1; channel++) {
  2121. zs_soft[channel].zs_next = &zs_soft[channel + 1];
  2122. zs_soft[channel].line = channel;
  2123. }
  2124. zs_soft[channel].zs_next = 0;
  2125. /* Initialize Softinfo */
  2126. for(chip = 0; chip < NUM_SERIAL; chip++) {
  2127. /* If we are doing kgdb over one of the channels on
  2128.  * chip zero, kgdb_channel will be set to 1 by the
  2129.  * zs_kgdb_hook() routine below.
  2130.  */
  2131. if(!zs_chips[chip]) {
  2132. zs_chips[chip] = get_zs(chip);
  2133. /* Two channels per chip */
  2134. zs_channels[(chip*2)] = &zs_chips[chip]->channelA;
  2135. zs_channels[(chip*2)+1] = &zs_chips[chip]->channelB;
  2136. zs_soft[(chip*2)].kgdb_channel = 0;
  2137. zs_soft[(chip*2)+1].kgdb_channel = 0;
  2138. }
  2139. /* First, set up channel A on this chip. */
  2140. channel = chip * 2;
  2141. zs_soft[channel].zs_channel = zs_channels[channel];
  2142. zs_soft[channel].change_needed = 0;
  2143. zs_soft[channel].clk_divisor = 16;
  2144. zs_soft[channel].cons_keyb = 0;
  2145. zs_soft[channel].cons_mouse = 0;
  2146. zs_soft[channel].channelA = 1;
  2147. /* Now, channel B */
  2148. channel++;
  2149. zs_soft[channel].zs_channel = zs_channels[channel];
  2150. zs_soft[channel].change_needed = 0;
  2151. zs_soft[channel].clk_divisor = 16;
  2152. zs_soft[channel].cons_keyb = 0;
  2153. zs_soft[channel].cons_mouse = 0;
  2154. zs_soft[channel].channelA = 0;
  2155. }
  2156. restore_flags(flags);
  2157. }
  2158. int __init zs_init(void)
  2159. {
  2160. int channel, brg, i;
  2161. unsigned long flags;
  2162. struct sun_serial *info;
  2163. char dummy;
  2164. /* Setup base handler, and timer table. */
  2165. init_bh(SERIAL_BH, do_serial_bh);
  2166. show_serial_version();
  2167. /* Initialize the tty_driver structure */
  2168. /* SPARC: Not all of this is exactly right for us. */
  2169. memset(&serial_driver, 0, sizeof(struct tty_driver));
  2170. serial_driver.magic = TTY_DRIVER_MAGIC;
  2171. serial_driver.driver_name = "serial";
  2172. #ifdef CONFIG_DEVFS_FS
  2173. serial_driver.name = "tts/%d";
  2174. #else
  2175. serial_driver.name = "ttyS";
  2176. #endif
  2177. serial_driver.major = TTY_MAJOR;
  2178. serial_driver.minor_start = 64;
  2179. serial_driver.num = NUM_CHANNELS;
  2180. serial_driver.type = TTY_DRIVER_TYPE_SERIAL;
  2181. serial_driver.subtype = SERIAL_TYPE_NORMAL;
  2182. serial_driver.init_termios = tty_std_termios;
  2183. serial_driver.init_termios.c_cflag =
  2184. B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  2185. serial_driver.flags = TTY_DRIVER_REAL_RAW;
  2186. serial_driver.refcount = &serial_refcount;
  2187. serial_driver.table = serial_table;
  2188. serial_driver.termios = serial_termios;
  2189. serial_driver.termios_locked = serial_termios_locked;
  2190. serial_driver.open = zs_open;
  2191. serial_driver.close = zs_close;
  2192. serial_driver.write = zs_write;
  2193. serial_driver.flush_chars = zs_flush_chars;
  2194. serial_driver.write_room = zs_write_room;
  2195. serial_driver.chars_in_buffer = zs_chars_in_buffer;
  2196. serial_driver.flush_buffer = zs_flush_buffer;
  2197. serial_driver.ioctl = zs_ioctl;
  2198. serial_driver.throttle = zs_throttle;
  2199. serial_driver.unthrottle = zs_unthrottle;
  2200. serial_driver.set_termios = zs_set_termios;
  2201. serial_driver.stop = zs_stop;
  2202. serial_driver.start = zs_start;
  2203. serial_driver.hangup = zs_hangup;
  2204. /* I'm too lazy, someone write versions of this for us. -DaveM */
  2205. /* I just did. :-) -AIB 2001-12-23 */
  2206. serial_driver.read_proc = zs_read_proc;
  2207. /*
  2208.  * The callout device is just like normal device except for
  2209.  * major number and the subtype code.
  2210.  */
  2211. callout_driver = serial_driver;
  2212. callout_driver.name = "cua/%d";
  2213. callout_driver.major = TTYAUX_MAJOR;
  2214. callout_driver.subtype = SERIAL_TYPE_CALLOUT;
  2215. callout_driver.read_proc = 0;
  2216. callout_driver.proc_entry = 0;
  2217. if (tty_register_driver(&serial_driver))
  2218. panic("Couldn't register serial drivern");
  2219. if (tty_register_driver(&callout_driver))
  2220. panic("Couldn't register callout drivern");
  2221. save_flags(flags); cli();
  2222. /* Initialize Softinfo */
  2223. zs_prepare();
  2224. /* Grab IRQ line before poking the chips so we do
  2225.  * not lose any interrupts.
  2226.  */
  2227. if (request_irq(zilog_irq, zs_interrupt, SA_SHIRQ,
  2228. "Zilog8530", zs_chain)) {
  2229. prom_printf("Unable to attach zs intrn");
  2230. prom_halt();
  2231. }
  2232. /* Initialize Hardware */
  2233. for(channel = 0; channel < NUM_CHANNELS; channel++) {
  2234. /* Hardware reset each chip */
  2235. if (!(channel & 1)) {
  2236. write_zsreg(zs_soft[channel].zs_channel, R9, FHWRES);
  2237. ZSDELAY_LONG();
  2238. dummy = read_zsreg(zs_soft[channel].zs_channel, R0);
  2239. }
  2240. if(channel == KEYBOARD_LINE) {
  2241. zs_soft[channel].cons_keyb = 1;
  2242. zs_soft[channel].parity_mask = 0xff;
  2243. zs_kbdchan = zs_soft[channel].zs_channel;
  2244. write_zsreg(zs_soft[channel].zs_channel, R4,
  2245.     (PAR_EVEN | X16CLK | SB1));
  2246. write_zsreg(zs_soft[channel].zs_channel, R3, Rx8);
  2247. write_zsreg(zs_soft[channel].zs_channel, R5, Tx8);
  2248. write_zsreg(zs_soft[channel].zs_channel, R9, NV);
  2249. write_zsreg(zs_soft[channel].zs_channel, R10, NRZ);
  2250. write_zsreg(zs_soft[channel].zs_channel, R11,
  2251.     (TCBR | RCBR));
  2252. zs_soft[channel].zs_baud = 1200;
  2253. brg = BPS_TO_BRG(zs_soft[channel].zs_baud,
  2254.  ZS_CLOCK/zs_soft[channel].clk_divisor);
  2255. write_zsreg(zs_soft[channel].zs_channel, R12,
  2256.     (brg & 0xff));
  2257. write_zsreg(zs_soft[channel].zs_channel, R13,
  2258.     ((brg >> 8) & 0xff));
  2259. write_zsreg(zs_soft[channel].zs_channel, R14, BRSRC);
  2260. /* Enable Rx/Tx, IRQs, and inform kbd driver */
  2261. write_zsreg(zs_soft[channel].zs_channel, R14,
  2262.     (BRSRC | BRENAB));
  2263. write_zsreg(zs_soft[channel].zs_channel, R3,
  2264.     (Rx8 | RxENAB));
  2265. write_zsreg(zs_soft[channel].zs_channel, R5,
  2266.     (Tx8 | TxENAB | DTR | RTS));
  2267. write_zsreg(zs_soft[channel].zs_channel, R15,
  2268.     (DCDIE | CTSIE | TxUIE | BRKIE));
  2269. write_zsreg(zs_soft[channel].zs_channel, R0,
  2270.     RES_EXT_INT);
  2271. write_zsreg(zs_soft[channel].zs_channel, R0,
  2272.     RES_EXT_INT);
  2273. write_zsreg(zs_soft[channel].zs_channel, R1,
  2274.     (EXT_INT_ENAB | INT_ALL_Rx));
  2275. write_zsreg(zs_soft[channel].zs_channel, R9,
  2276.     (NV | MIE));
  2277. ZS_CLEARERR(zs_soft[channel].zs_channel);
  2278. ZS_CLEARFIFO(zs_soft[channel].zs_channel);
  2279. } else if(channel == MOUSE_LINE) {
  2280. zs_soft[channel].cons_mouse = 1;
  2281. zs_soft[channel].parity_mask = 0xff;
  2282. zs_mousechan = zs_soft[channel].zs_channel;
  2283. write_zsreg(zs_soft[channel].zs_channel, R4,
  2284.     (PAR_EVEN | X16CLK | SB1));
  2285. write_zsreg(zs_soft[channel].zs_channel, R3, Rx8);
  2286. write_zsreg(zs_soft[channel].zs_channel, R5, Tx8);
  2287. write_zsreg(zs_soft[channel].zs_channel, R9, NV);
  2288. write_zsreg(zs_soft[channel].zs_channel, R10, NRZ);
  2289. write_zsreg(zs_soft[channel].zs_channel, R11,
  2290.     (TCBR | RCBR));
  2291. zs_soft[channel].zs_baud = 4800;
  2292. brg = BPS_TO_BRG(zs_soft[channel].zs_baud,
  2293.  ZS_CLOCK/zs_soft[channel].clk_divisor);
  2294. write_zsreg(zs_soft[channel].zs_channel, R12,
  2295.     (brg & 0xff));
  2296. write_zsreg(zs_soft[channel].zs_channel, R13,
  2297.     ((brg >> 8) & 0xff));
  2298. write_zsreg(zs_soft[channel].zs_channel, R14, BRSRC);
  2299. /* Enable Rx, IRQs, and inform mouse driver */
  2300. write_zsreg(zs_soft[channel].zs_channel, R14,
  2301.     (BRSRC | BRENAB));
  2302. write_zsreg(zs_soft[channel].zs_channel, R3,
  2303.     (Rx8 | RxENAB));
  2304. write_zsreg(zs_soft[channel].zs_channel, R5, Tx8);
  2305. write_zsreg(zs_soft[channel].zs_channel, R15,
  2306.     (DCDIE | CTSIE | TxUIE | BRKIE));
  2307. write_zsreg(zs_soft[channel].zs_channel, R0,
  2308.     RES_EXT_INT);
  2309. write_zsreg(zs_soft[channel].zs_channel, R0,
  2310.     RES_EXT_INT);
  2311. write_zsreg(zs_soft[channel].zs_channel, R1,
  2312.     (EXT_INT_ENAB | INT_ALL_Rx));
  2313. write_zsreg(zs_soft[channel].zs_channel, R9,
  2314.     (NV | MIE));
  2315. sun_mouse_zsinit();
  2316. } else if (zs_soft[channel].is_cons) {
  2317. brg = BPS_TO_BRG(zs_soft[channel].zs_baud,
  2318.  ZS_CLOCK/zs_soft[channel].clk_divisor);
  2319. zscons_regs[12] = brg & 0xff;
  2320. zscons_regs[13] = (brg >> 8) & 0xff;
  2321. memcpy(zs_soft[channel].curregs, zscons_regs, sizeof(zscons_regs));
  2322. load_zsregs(&zs_soft[channel], zscons_regs);
  2323. ZS_CLEARERR(zs_soft[channel].zs_channel);
  2324. ZS_CLEARFIFO(zs_soft[channel].zs_channel);
  2325. } else if (zs_soft[channel].kgdb_channel) {
  2326. /* If this is the kgdb line, enable interrupts because
  2327.  * we now want to receive the 'control-c' character
  2328.  * from the client attached to us asynchronously.
  2329.  */
  2330. zs_soft[channel].parity_mask = 0xff;
  2331.          kgdb_chaninit(&zs_soft[channel], 1,
  2332.       zs_soft[channel].zs_baud);
  2333. } else {
  2334. zs_soft[channel].parity_mask = 0xff;
  2335. write_zsreg(zs_soft[channel].zs_channel, R4,
  2336.     (PAR_EVEN | X16CLK | SB1));
  2337. write_zsreg(zs_soft[channel].zs_channel, R3, Rx8);
  2338. write_zsreg(zs_soft[channel].zs_channel, R5, Tx8);
  2339. write_zsreg(zs_soft[channel].zs_channel, R9, NV);
  2340. write_zsreg(zs_soft[channel].zs_channel, R10, NRZ);
  2341. write_zsreg(zs_soft[channel].zs_channel, R11,
  2342.     (RCBR | TCBR));
  2343. zs_soft[channel].zs_baud = 9600;
  2344. brg = BPS_TO_BRG(zs_soft[channel].zs_baud,
  2345.  ZS_CLOCK/zs_soft[channel].clk_divisor);
  2346. write_zsreg(zs_soft[channel].zs_channel, R12,
  2347.     (brg & 0xff));
  2348. write_zsreg(zs_soft[channel].zs_channel, R13,
  2349.     ((brg >> 8) & 0xff));
  2350. write_zsreg(zs_soft[channel].zs_channel, R14, BRSRC);
  2351. write_zsreg(zs_soft[channel].zs_channel, R14,
  2352.     (BRSRC | BRENAB));
  2353. write_zsreg(zs_soft[channel].zs_channel, R3, Rx8);
  2354. write_zsreg(zs_soft[channel].zs_channel, R5, Tx8);
  2355. write_zsreg(zs_soft[channel].zs_channel, R15, DCDIE);
  2356. write_zsreg(zs_soft[channel].zs_channel, R9, NV | MIE);
  2357. write_zsreg(zs_soft[channel].zs_channel, R0,
  2358.     RES_EXT_INT);
  2359. write_zsreg(zs_soft[channel].zs_channel, R0,
  2360.     RES_EXT_INT);
  2361. }
  2362. }
  2363. for (info = zs_chain, i=0; info; info = info->zs_next, i++) {
  2364. info->magic = SERIAL_MAGIC;
  2365. info->port = (long) info->zs_channel;
  2366. info->line = i;
  2367. info->tty = 0;
  2368. info->irq = zilog_irq;
  2369. info->custom_divisor = 16;
  2370. info->close_delay = 50;
  2371. info->closing_wait = 3000;
  2372. info->x_char = 0;
  2373. info->event = 0;
  2374. info->count = 0;
  2375. info->blocked_open = 0;
  2376. info->tqueue.routine = do_softint;
  2377. info->tqueue.data = info;
  2378. info->tqueue_hangup.routine = do_serial_hangup;
  2379. info->tqueue_hangup.data = info;
  2380. info->callout_termios = callout_driver.init_termios;
  2381. info->normal_termios = serial_driver.init_termios;
  2382. init_waitqueue_head(&info->open_wait);
  2383. init_waitqueue_head(&info->close_wait);
  2384. printk("tty%02d at 0x%04x (irq = %s)", info->line, 
  2385.        info->port, __irq_itoa(info->irq));
  2386. printk(" is a Zilog8530n");
  2387. }
  2388. restore_flags(flags);
  2389. keyboard_zsinit(kbd_put_char);
  2390. return 0;
  2391. }
  2392. /* This is called at boot time to prime the kgdb serial debugging
  2393.  * serial line.  The 'tty_num' argument is 0 for /dev/ttya and 1
  2394.  * for /dev/ttyb which is determined in setup_arch() from the
  2395.  * boot command line flags.
  2396.  */
  2397. static void __init zs_kgdb_hook(int tty_num)
  2398. {
  2399. int chip = 0;
  2400. if(!zs_chips[chip]) {
  2401. zs_chips[chip] = get_zs(chip);
  2402. /* Two channels per chip */
  2403. zs_channels[(chip*2)] = &zs_chips[chip]->channelA;
  2404. zs_channels[(chip*2)+1] = &zs_chips[chip]->channelB;
  2405. }
  2406. zs_soft[tty_num].zs_channel = zs_channels[tty_num];
  2407. zs_kgdbchan = zs_soft[tty_num].zs_channel;
  2408. zs_soft[tty_num].change_needed = 0;
  2409. zs_soft[tty_num].clk_divisor = 16;
  2410. zs_soft[tty_num].zs_baud = 9600;
  2411. zs_soft[tty_num].kgdb_channel = 1;     /* This runs kgdb */
  2412. zs_soft[tty_num ^ 1].kgdb_channel = 0; /* This does not */
  2413. /* Turn on transmitter/receiver at 8-bits/char */
  2414.         kgdb_chaninit(&zs_soft[tty_num], 0, 9600);
  2415.         ZS_CLEARERR(zs_kgdbchan);
  2416.         ZS_CLEARFIFO(zs_kgdbchan);
  2417. }
  2418. #ifdef CONFIG_SERIAL_CONSOLE
  2419. /* This is for console output over ttya/ttyb */
  2420. static void
  2421. zs_console_putchar(struct sun_serial *info, char ch)
  2422. {
  2423. int loops = ZS_PUT_CHAR_MAX_DELAY;
  2424. unsigned long flags;
  2425. if(!info->zs_channel)
  2426. return;
  2427. save_flags(flags); cli();
  2428. zs_put_char(info->zs_channel, ch);
  2429. while (!(read_zsreg(info->zs_channel, R1) & ALL_SNT) && --loops)
  2430. udelay(5);
  2431. restore_flags(flags);
  2432. }
  2433. #ifdef SERIAL_CONSOLE_FAIR_OUTPUT
  2434. /*
  2435.  * Fair output driver allows a process to speak.
  2436.  */
  2437. static void zs_fair_output(struct sun_serial *info)
  2438. {
  2439. unsigned long flags;
  2440. int left; /* Output no more than that */
  2441. char c;
  2442. if (info == NULL)
  2443. return;
  2444. if (info->xmit_buf == NULL)
  2445. return;
  2446. save_flags(flags);  cli();
  2447. left = info->xmit_cnt;
  2448. while (left != 0) {
  2449. c = info->xmit_buf[info->xmit_tail];
  2450. info->xmit_tail = (info->xmit_tail+1) & (SERIAL_XMIT_SIZE-1);
  2451. info->xmit_cnt--;
  2452. restore_flags(flags);
  2453. zs_console_putchar(info, c);
  2454. cli();
  2455. left = MIN(info->xmit_cnt, left-1);
  2456. }
  2457. /* Last character is being transmitted now (hopefully). */
  2458. sbus_writeb(RES_Tx_P, &info->zs_channel->control);
  2459. ZSDELAY();
  2460. ZSLOG(REGCTRL, RES_Tx_P, 1);
  2461. restore_flags(flags);
  2462. return;
  2463. }
  2464. #endif
  2465. /*
  2466.  * zs_console_write is registered for printk.
  2467.  */
  2468. static void
  2469. zs_console_write(struct console *con, const char *s, unsigned count)
  2470. {
  2471. struct sun_serial *info;
  2472. int i;
  2473. info = zs_soft + con->index;
  2474. for (i = 0; i < count; i++, s++) {
  2475. if(*s == 'n')
  2476. zs_console_putchar(info, 'r');
  2477. zs_console_putchar(info, *s);
  2478. }
  2479. #ifdef SERIAL_CONSOLE_FAIR_OUTPUT
  2480. /* Comment this if you want to have a strict interrupt-driven output */
  2481. zs_fair_output(info);
  2482. #endif
  2483. }
  2484. static int
  2485. zs_console_wait_key(struct console *con)
  2486. {
  2487. sleep_on(&keypress_wait);
  2488. return 0;
  2489. }
  2490. static kdev_t zs_console_device(struct console *con)
  2491. {
  2492. return MKDEV(TTY_MAJOR, 64 + con->index);
  2493. }
  2494. static int __init zs_console_setup(struct console *con, char *options)
  2495. {
  2496. static struct tty_struct c_tty;
  2497. static struct termios c_termios;
  2498. struct sun_serial *info;
  2499. int brg, baud;
  2500. info = zs_soft + con->index;
  2501. info->is_cons = 1;
  2502. printk("Console: ttyS%d (Zilog8530)n", info->line);
  2503. sunserial_console_termios(con);
  2504. memset(&c_tty, 0, sizeof(c_tty));
  2505. memset(&c_termios, 0, sizeof(c_termios));
  2506. c_tty.termios = &c_termios;
  2507. c_termios.c_cflag = con->cflag;
  2508. baud = tty_get_baud_rate(&c_tty);
  2509. info->zs_baud = baud;
  2510. switch (con->cflag & CSIZE) {
  2511. case CS5:
  2512. zscons_regs[3] = Rx5 | RxENAB;
  2513. zscons_regs[5] = Tx5 | TxENAB;
  2514. info->parity_mask = 0x1f;
  2515. break;
  2516. case CS6:
  2517. zscons_regs[3] = Rx6 | RxENAB;
  2518. zscons_regs[5] = Tx6 | TxENAB;
  2519. info->parity_mask = 0x3f;
  2520. break;
  2521. case CS7:
  2522. zscons_regs[3] = Rx7 | RxENAB;
  2523. zscons_regs[5] = Tx7 | TxENAB;
  2524. info->parity_mask = 0x7f;
  2525. break;
  2526. default:
  2527. case CS8:
  2528. zscons_regs[3] = Rx8 | RxENAB;
  2529. zscons_regs[5] = Tx8 | TxENAB;
  2530. info->parity_mask = 0xff;
  2531. break;
  2532. }
  2533. zscons_regs[5] |= DTR;
  2534. if (con->cflag & PARENB)
  2535. zscons_regs[4] |= PAR_ENAB;
  2536. if (!(con->cflag & PARODD))
  2537. zscons_regs[4] |= PAR_EVEN;
  2538. if (con->cflag & CSTOPB)
  2539. zscons_regs[4] |= SB2;
  2540. else
  2541. zscons_regs[4] |= SB1;
  2542. brg = BPS_TO_BRG(baud, ZS_CLOCK / info->clk_divisor);
  2543. zscons_regs[12] = brg & 0xff;
  2544. zscons_regs[13] = (brg >> 8) & 0xff;
  2545. memcpy(info->curregs, zscons_regs, sizeof(zscons_regs));
  2546. load_zsregs(info, zscons_regs);
  2547. ZS_CLEARERR(info->zs_channel);
  2548. ZS_CLEARFIFO(info->zs_channel);
  2549. return 0;
  2550. }
  2551. static struct console zs_console = {
  2552. name: "ttyS",
  2553. write: zs_console_write,
  2554. device: zs_console_device,
  2555. wait_key: zs_console_wait_key,
  2556. setup: zs_console_setup,
  2557. flags: CON_PRINTBUFFER,
  2558. index: -1,
  2559. };
  2560. static int __init zs_console_init(void)
  2561. {
  2562. extern int con_is_present(void);
  2563. if (con_is_present())
  2564. return 0;
  2565. zs_console.index = serial_console - 1;
  2566. register_console(&zs_console);
  2567. return 0;
  2568. }
  2569. #endif /* CONFIG_SERIAL_CONSOLE */