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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drivers/char/ser_a2232.c */
  2. /* $Id: ser_a2232.c,v 0.4 2000/01/25 12:00:00 ehaase Exp $ */
  3. /* Linux serial driver for the Amiga A2232 board */
  4. /* This driver is MAINTAINED. Before applying any changes, please contact
  5.  * the author.
  6.  */
  7. /* Copyright (c) 2000-2001 Enver Haase    <ehaase@inf.fu-berlin.de>
  8.  *                   alias The A2232 driver project <A2232@gmx.net>
  9.  * All rights reserved.
  10.  *
  11.  *   This program is free software; you can redistribute it and/or modify
  12.  *   it under the terms of the GNU General Public License as published by
  13.  *   the Free Software Foundation; either version 2 of the License, or
  14.  *   (at your option) any later version.
  15.  *
  16.  *   This program is distributed in the hope that it will be useful,
  17.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *   GNU General Public License for more details.
  20.  *
  21.  *   You should have received a copy of the GNU General Public License
  22.  *   along with this program; if not, write to the Free Software
  23.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  *
  25.  */
  26. /***************************** Documentation ************************/
  27. /*
  28.  * This driver is in EXPERIMENTAL state. That means I could not find
  29.  * someone with five A2232 boards with 35 ports running at 19200 bps
  30.  * at the same time and test the machine's behaviour.
  31.  * However, I know that you can performance-tweak this driver (see
  32.  * the source code).
  33.  * One thing to consider is the time this driver consumes during the
  34.  * Amiga's vertical blank interrupt. Everything that is to be done
  35.  * _IS DONE_ when entering the vertical blank interrupt handler of
  36.  * this driver.
  37.  * However, it would be more sane to only do the job for only ONE card
  38.  * instead of ALL cards at a time; or, more generally, to handle only
  39.  * SOME ports instead of ALL ports at a time.
  40.  * However, as long as no-one runs into problems I guess I shouldn't
  41.  * change the driver as it runs fine for me :) .
  42.  *
  43.  * Version history of this file:
  44.  * 0.4 Resolved licensing issues.
  45.  * 0.3 Inclusion in the Linux/m68k tree, small fixes.
  46.  * 0.2 Added documentation, minor typo fixes.
  47.  * 0.1 Initial release.
  48.  *
  49.  * TO DO:
  50.  * - Handle incoming BREAK events. I guess "Stevens: Advanced
  51.  * Programming in the UNIX(R) Environment" is a good reference
  52.  * on what is to be done.
  53.  * - When installing as a module, don't simply 'printk' text, but
  54.  * send it to the TTY used by the user.
  55.  *
  56.  * THANKS TO:
  57.  * - Jukka Marin (65EC02 code).
  58.  * - The other NetBSD developers on whose A2232 driver I had a
  59.  * pretty close look. However, I didn't copy any code so it
  60.  * is okay to put my code under the GPL and include it into
  61.  * Linux.
  62.  */
  63. /***************************** End of Documentation *****************/
  64. /***************************** Defines ******************************/
  65. /*
  66.  * Enables experimental 115200 (normal) 230400 (turbo) baud rate.
  67.  * The A2232 specification states it can only operate at speeds up to
  68.  * 19200 bits per second, and I was not able to send a file via
  69.  * "sz"/"rz" and a null-modem cable from one A2232 port to another
  70.  * at 115200 bits per second.
  71.  * However, this might work for you.
  72.  */
  73. #undef A2232_SPEEDHACK
  74. /*
  75.  * Default is not to use RTS/CTS so you could be talked to death.
  76.  */
  77. #define A2232_SUPPRESS_RTSCTS_WARNING
  78. /************************* End of Defines ***************************/
  79. /***************************** Includes *****************************/
  80. #include <linux/module.h>
  81. #include <linux/types.h>
  82. #include <linux/sched.h>
  83. #include <linux/interrupt.h>
  84. #include <linux/kernel.h>
  85. #include <linux/errno.h>
  86. #include <asm/setup.h>
  87. #include <asm/amigaints.h>
  88. #include <asm/amigahw.h>
  89. #include <linux/zorro.h>
  90. #include <asm/irq.h>
  91. #include <asm/semaphore.h>
  92. #include <linux/delay.h>
  93. #include <linux/serial.h>
  94. #include <linux/generic_serial.h>
  95. #include "ser_a2232.h"
  96. #include "ser_a2232fw.h"
  97. /************************* End of Includes **************************/
  98. /***************************** Prototypes ***************************/
  99. /* Helper functions */
  100. static __inline__ volatile struct a2232status *a2232stat(unsigned int board,
  101. unsigned int portonboard);
  102. static __inline__ volatile struct a2232memory *a2232mem (unsigned int board); 
  103. static __inline__ void a2232_receive_char( struct a2232_port *port,
  104. int ch, int err );
  105. /* The interrupt service routine */
  106. static void a2232_vbl_inter(int irq, void *data, struct pt_regs *fp);
  107. /* Initialize the port structures */
  108. static void a2232_init_portstructs(void);
  109. /* Initialize and register TTY drivers. */
  110. /* returns 0 IFF successful */
  111. static int a2232_init_drivers(void); 
  112. /* Initialize all A2232 boards; main entry point. */
  113. int a2232board_init(void);
  114. /* BEGIN GENERIC_SERIAL PROTOTYPES */
  115. static void a2232_disable_tx_interrupts(void *ptr);
  116. static void a2232_enable_tx_interrupts(void *ptr);
  117. static void a2232_disable_rx_interrupts(void *ptr);
  118. static void a2232_enable_rx_interrupts(void *ptr);
  119. static int  a2232_get_CD(void *ptr);
  120. static void a2232_shutdown_port(void *ptr);
  121. static int  a2232_set_real_termios(void *ptr);
  122. static int  a2232_chars_in_buffer(void *ptr);
  123. static void a2232_close(void *ptr);
  124. static void a2232_hungup(void *ptr);
  125. /* static void a2232_getserial (void *ptr, struct serial_struct *sp); */
  126. /* END GENERIC_SERIAL PROTOTYPES */
  127. /* Functions that the TTY driver struct expects */
  128. static int  a2232_ioctl(struct tty_struct *tty, struct file *file,
  129. unsigned int cmd, unsigned long arg);
  130. static void a2232_throttle(struct tty_struct *tty);
  131. static void a2232_unthrottle(struct tty_struct *tty);
  132. static int  a2232_open(struct tty_struct * tty, struct file * filp);
  133. /************************* End of Prototypes ************************/
  134. /***************************** Global variables *********************/
  135. /*---------------------------------------------------------------------------
  136.  * Interface from generic_serial.c back here
  137.  *--------------------------------------------------------------------------*/
  138. static struct real_driver a2232_real_driver = {
  139.         a2232_disable_tx_interrupts,
  140.         a2232_enable_tx_interrupts,
  141.         a2232_disable_rx_interrupts,
  142.         a2232_enable_rx_interrupts,
  143.         a2232_get_CD,
  144.         a2232_shutdown_port,
  145.         a2232_set_real_termios,
  146.         a2232_chars_in_buffer,
  147.         a2232_close,
  148.         a2232_hungup,
  149. NULL /* a2232_getserial */
  150. };
  151. static void *a2232_driver_ID = &a2232_driver_ID; // Some memory address WE own.
  152. /* Ports structs */
  153. static struct a2232_port a2232_ports[MAX_A2232_BOARDS*NUMLINES];
  154. /* TTY driver structs */
  155. static struct tty_driver a2232_driver;
  156. static struct tty_driver a2232_callout_driver;
  157. /* Variables used by the TTY driver */
  158. static int a2232_refcount;
  159. static struct tty_struct *a2232_table[MAX_A2232_BOARDS*NUMLINES] = { NULL, };
  160. static struct termios *a2232_termios[MAX_A2232_BOARDS*NUMLINES];
  161. static struct termios *a2232_termios_locked[MAX_A2232_BOARDS*NUMLINES];
  162. /* nr of cards completely (all ports) and correctly configured */
  163. static int nr_a2232; 
  164. /* zorro_dev structs for the A2232's */
  165. static struct zorro_dev *zd_a2232[MAX_A2232_BOARDS]; 
  166. /***************************** End of Global variables **************/
  167. /***************************** Functions ****************************/
  168. /*** BEGIN OF REAL_DRIVER FUNCTIONS ***/
  169. static void a2232_disable_tx_interrupts(void *ptr)
  170. {
  171. struct a2232_port *port;
  172. volatile struct a2232status *stat;
  173. unsigned long flags;
  174.   
  175. port = ptr;
  176. stat = a2232stat(port->which_a2232, port->which_port_on_a2232);
  177. stat->OutDisable = -1;
  178. /* Does this here really have to be? */
  179. save_flags(flags);
  180. cli(); 
  181. port->gs.flags &= ~GS_TX_INTEN;
  182. restore_flags(flags);
  183. }
  184. static void a2232_enable_tx_interrupts(void *ptr)
  185. {
  186. struct a2232_port *port;
  187. volatile struct a2232status *stat;
  188. unsigned long flags;
  189. port = ptr;
  190. stat = a2232stat(port->which_a2232, port->which_port_on_a2232);
  191. stat->OutDisable = 0;
  192. /* Does this here really have to be? */
  193. save_flags(flags);
  194. cli();
  195. port->gs.flags |= GS_TX_INTEN;
  196. restore_flags(flags);
  197. }
  198. static void a2232_disable_rx_interrupts(void *ptr)
  199. {
  200. struct a2232_port *port;
  201. port = ptr;
  202. port->disable_rx = -1;
  203. }
  204. static void a2232_enable_rx_interrupts(void *ptr)
  205. {
  206. struct a2232_port *port;
  207. port = ptr;
  208. port->disable_rx = 0;
  209. }
  210. static int  a2232_get_CD(void *ptr)
  211. {
  212. return ((struct a2232_port *) ptr)->cd_status;
  213. }
  214. static void a2232_shutdown_port(void *ptr)
  215. {
  216. struct a2232_port *port;
  217. volatile struct a2232status *stat;
  218. unsigned long flags;
  219. port = ptr;
  220. stat = a2232stat(port->which_a2232, port->which_port_on_a2232);
  221. save_flags(flags);
  222. cli();
  223. port->gs.flags &= ~GS_ACTIVE;
  224. if (port->gs.tty && port->gs.tty->termios->c_cflag & HUPCL) {
  225. /* Set DTR and RTS to Low, flush output.
  226.    The NetBSD driver "msc.c" does it this way. */
  227. stat->Command = ( (stat->Command & ~A2232CMD_CMask) | 
  228. A2232CMD_Close );
  229. stat->OutFlush = -1;
  230. stat->Setup = -1;
  231. }
  232. restore_flags(flags);
  233. /* After analyzing control flow, I think a2232_shutdown_port
  234. is actually the last call from the system when at application
  235. level someone issues a "echo Hello >>/dev/ttyY0".
  236. Therefore I think the MOD_DEC_USE_COUNT should be here and
  237. not in "a2232_close()". See the comment in "sx.c", too.
  238. If you run into problems, compile this driver into the
  239. kernel instead of compiling it as a module. */
  240. MOD_DEC_USE_COUNT;
  241. }
  242. static int  a2232_set_real_termios(void *ptr)
  243. {
  244. unsigned int cflag, baud, chsize, stopb, parity, softflow;
  245. int rate;
  246. int a2232_param, a2232_cmd;
  247. unsigned long flags;
  248. unsigned int i;
  249. struct a2232_port *port = ptr;
  250. volatile struct a2232status *status;
  251. volatile struct a2232memory *mem;
  252. if (!port->gs.tty || !port->gs.tty->termios) return 0;
  253. status = a2232stat(port->which_a2232, port->which_port_on_a2232);
  254. mem = a2232mem(port->which_a2232);
  255. a2232_param = a2232_cmd = 0;
  256. // get baud rate
  257. baud = port->gs.baud;
  258. if (baud == 0) {
  259. /* speed == 0 -> drop DTR, do nothing else */
  260. save_flags(flags);
  261. cli();
  262. // Clear DTR (and RTS... mhhh).
  263. status->Command = ( (status->Command & ~A2232CMD_CMask) |
  264. A2232CMD_Close );
  265. status->OutFlush = -1;
  266. status->Setup = -1;
  267. restore_flags(flags);
  268. return 0;
  269. }
  270. rate = A2232_BAUD_TABLE_NOAVAIL;
  271. for (i=0; i < A2232_BAUD_TABLE_NUM_RATES * 3; i += 3){
  272. if (a2232_baud_table[i] == baud){
  273. if (mem->Common.Crystal == A2232_TURBO) rate = a2232_baud_table[i+2];
  274. else                                    rate = a2232_baud_table[i+1];
  275. }
  276. }
  277. if (rate == A2232_BAUD_TABLE_NOAVAIL){
  278. printk("a2232: Board %d Port %d unsupported baud rate: %d baud. Using another.n",port->which_a2232,port->which_port_on_a2232,baud);
  279. // This is useful for both (turbo or normal) Crystal versions.
  280. rate = A2232PARAM_B9600;
  281. }
  282. a2232_param |= rate;
  283. cflag  = port->gs.tty->termios->c_cflag;
  284. // get character size
  285. chsize = cflag & CSIZE;
  286. switch (chsize){
  287. case CS8:  a2232_param |= A2232PARAM_8Bit; break;
  288. case CS7:  a2232_param |= A2232PARAM_7Bit; break;
  289. case CS6:  a2232_param |= A2232PARAM_6Bit; break;
  290. case CS5:  a2232_param |= A2232PARAM_5Bit; break;
  291. default: printk("a2232: Board %d Port %d unsupported character size: %d. Using 8 data bits.n",
  292. port->which_a2232,port->which_port_on_a2232,chsize);
  293. a2232_param |= A2232PARAM_8Bit; break;
  294. }
  295. // get number of stop bits
  296. stopb  = cflag & CSTOPB;
  297. if (stopb){ // two stop bits instead of one
  298. printk("a2232: Board %d Port %d 2 stop bits unsupported. Using 1 stop bit.n",
  299. port->which_a2232,port->which_port_on_a2232);
  300. }
  301. // Warn if RTS/CTS not wanted
  302. if (!(cflag & CRTSCTS)){
  303. #ifndef A2232_SUPPRESS_RTSCTS_WARNING
  304. printk("a2232: Board %d Port %d cannot switch off firmware-implemented RTS/CTS hardware flow control.n",
  305. port->which_a2232,port->which_port_on_a2232);
  306. #endif
  307. }
  308. /* I think this is correct.
  309. However, IXOFF means _input_ flow control and I wonder
  310. if one should care about IXON _output_ flow control,
  311. too. If this makes problems, one should turn the A2232
  312. firmware XON/XOFF "SoftFlow" flow control off and use
  313. the conventional way of inserting START/STOP characters
  314. by hand in throttle()/unthrottle().
  315. */
  316. softflow = !!( port->gs.tty->termios->c_iflag & IXOFF );
  317. // get Parity (Enabled/Disabled? If Enabled, Odd or Even?)
  318. parity = cflag & (PARENB | PARODD);
  319. if (parity & PARENB){
  320. if (parity & PARODD){
  321. a2232_cmd |= A2232CMD_OddParity;
  322. }
  323. else{
  324. a2232_cmd |= A2232CMD_EvenParity;
  325. }
  326. }
  327. else a2232_cmd |= A2232CMD_NoParity;
  328. /* Hmm. Maybe an own a2232_port structure
  329. member would be cleaner? */
  330. if (cflag & CLOCAL)
  331. port->gs.flags &= ~ASYNC_CHECK_CD;
  332. else
  333. port->gs.flags |= ASYNC_CHECK_CD;
  334. /* Now we have all parameters and can go to set them: */
  335. save_flags(flags);
  336. cli();
  337. status->Param = a2232_param | A2232PARAM_RcvBaud;
  338. status->Command = a2232_cmd | A2232CMD_Open |  A2232CMD_Enable;
  339. status->SoftFlow = softflow;
  340. status->OutDisable = 0;
  341. status->Setup = -1;
  342. restore_flags(flags);
  343. return 0;
  344. }
  345. static int  a2232_chars_in_buffer(void *ptr)
  346. {
  347. struct a2232_port *port;
  348. volatile struct a2232status *status; 
  349. unsigned char ret; /* we need modulo-256 arithmetics */
  350. port = ptr;
  351. status = a2232stat(port->which_a2232, port->which_port_on_a2232);
  352. #if A2232_IOBUFLEN != 256
  353. #error "Re-Implement a2232_chars_in_buffer()!"
  354. #endif
  355. ret = (status->OutHead - status->OutTail);
  356. return ret;
  357. }
  358. static void a2232_close(void *ptr)
  359. {
  360. a2232_disable_tx_interrupts(ptr);
  361. a2232_disable_rx_interrupts(ptr);
  362. /* see the comment in a2232_shutdown_port above. */
  363. /* MOD_DEC_USE_COUNT; */
  364. }
  365. static void a2232_hungup(void *ptr)
  366. {
  367. a2232_close(ptr);
  368. }
  369. /*** END   OF REAL_DRIVER FUNCTIONS ***/
  370. /*** BEGIN  FUNCTIONS EXPECTED BY TTY DRIVER STRUCTS ***/
  371. static int a2232_ioctl( struct tty_struct *tty, struct file *file,
  372. unsigned int cmd, unsigned long arg)
  373. {
  374. return -ENOIOCTLCMD;
  375. }
  376. static void a2232_throttle(struct tty_struct *tty)
  377. {
  378. /* Throttle: System cannot take another chars: Drop RTS or
  379.              send the STOP char or whatever.
  380.    The A2232 firmware does RTS/CTS anyway, and XON/XOFF
  381.    if switched on. So the only thing we can do at this
  382.    layer here is not taking any characters out of the
  383.    A2232 buffer any more. */
  384. struct a2232_port *port = (struct a2232_port *) tty->driver_data;
  385. port->throttle_input = -1;
  386. }
  387. static void a2232_unthrottle(struct tty_struct *tty)
  388. {
  389. /* Unthrottle: dual to "throttle()" above. */
  390. struct a2232_port *port = (struct a2232_port *) tty->driver_data;
  391. port->throttle_input = 0;
  392. }
  393. static int  a2232_open(struct tty_struct * tty, struct file * filp)
  394. {
  395. /* More or less stolen from other drivers. */
  396. int line;
  397. int retval;
  398. struct a2232_port *port;
  399. line = MINOR(tty->device);
  400. port = &a2232_ports[line];
  401. tty->driver_data = port;
  402. port->gs.tty = tty;
  403. port->gs.count++;
  404. retval = gs_init_port(&port->gs);
  405. if (retval) {
  406. port->gs.count--;
  407. return retval;
  408. }
  409. port->gs.flags |= GS_ACTIVE;
  410. if (port->gs.count == 1) {
  411. MOD_INC_USE_COUNT;
  412. }
  413. retval = gs_block_til_ready(port, filp);
  414. if (retval) {
  415. MOD_DEC_USE_COUNT;
  416. port->gs.count--;
  417. return retval;
  418. }
  419. if ((port->gs.count == 1) && (port->gs.flags & ASYNC_SPLIT_TERMIOS)){
  420. if (tty->driver.subtype == A2232_TTY_SUBTYPE_NORMAL)
  421. *tty->termios = port->gs.normal_termios;
  422. else 
  423. *tty->termios = port->gs.callout_termios;
  424. a2232_set_real_termios (port);
  425. }
  426. port->gs.session = current->session;
  427. port->gs.pgrp = current->pgrp;
  428. a2232_enable_rx_interrupts(port);
  429. return 0;
  430. }
  431. /*** END OF FUNCTIONS EXPECTED BY TTY DRIVER STRUCTS ***/
  432. static __inline__ volatile struct a2232status *a2232stat(unsigned int board, unsigned int portonboard)
  433. {
  434. volatile struct a2232memory *mem = a2232mem(board);
  435. return &(mem->Status[portonboard]);
  436. }
  437. static __inline__ volatile struct a2232memory *a2232mem (unsigned int board)
  438. {
  439. return (volatile struct a2232memory *) ZTWO_VADDR( zd_a2232[board]->resource.start );
  440. }
  441. static __inline__ void a2232_receive_char( struct a2232_port *port,
  442. int ch, int err )
  443. {
  444. /*  Mostly stolen from other drivers.
  445. Maybe one could implement a more efficient version by not only
  446. transferring one character at a time.
  447. */
  448. struct tty_struct *tty = port->gs.tty;
  449. if (tty->flip.count >= TTY_FLIPBUF_SIZE)
  450. return;
  451. tty->flip.count++;
  452. #if 0
  453. switch(err) {
  454. case TTY_BREAK:
  455. break;
  456. case TTY_PARITY:
  457. break;
  458. case TTY_OVERRUN:
  459. break;
  460. case TTY_FRAME:
  461. break;
  462. }
  463. #endif
  464. *tty->flip.flag_buf_ptr++ = err;
  465. *tty->flip.char_buf_ptr++ = ch;
  466. tty_flip_buffer_push(tty);
  467. }
  468. static void a2232_vbl_inter(int irq, void *data, struct pt_regs *fp)
  469. {
  470. #if A2232_IOBUFLEN != 256
  471. #error "Re-Implement a2232_vbl_inter()!"
  472. #endif
  473. struct a2232_port *port;
  474. volatile struct a2232memory *mem;
  475. volatile struct a2232status *status;
  476. unsigned char newhead;
  477. unsigned char bufpos; /* Must be unsigned char. We need the modulo-256 arithmetics */
  478. unsigned char ncd, ocd, ccd; /* names consistent with the NetBSD driver */
  479. volatile u_char *ibuf, *cbuf, *obuf;
  480. int ch, err, n, p;
  481. for (n = 0; n < nr_a2232; n++){ /* for every completely initialized A2232 board */
  482. mem = a2232mem(n);
  483. for (p = 0; p < NUMLINES; p++){ /* for every port on this board */
  484. err = 0;
  485. port = &a2232_ports[n*NUMLINES+p];
  486. if ( port->gs.flags & GS_ACTIVE ){ /* if the port is used */
  487. status = a2232stat(n,p);
  488. if (!port->disable_rx && !port->throttle_input){ /* If input is not disabled */
  489. newhead = status->InHead;               /* 65EC02 write pointer */
  490. bufpos = status->InTail;
  491. /* check for input for this port */
  492. if (newhead != bufpos) {
  493. /* buffer for input chars/events */
  494. ibuf = mem->InBuf[p];
  495.  
  496. /* data types of bytes in ibuf */
  497. cbuf = mem->InCtl[p];
  498.  
  499. /* do for all chars */
  500. while (bufpos != newhead) {
  501. /* which type of input data? */
  502. switch (cbuf[bufpos]) {
  503. /* switch on input event (CD, BREAK, etc.) */
  504. case A2232INCTL_EVENT:
  505. switch (ibuf[bufpos++]) {
  506. case A2232EVENT_Break:
  507. /* TODO: Handle BREAK signal */
  508. break;
  509. /* A2232EVENT_CarrierOn and A2232EVENT_CarrierOff are
  510. handled in a separate queue and should not occur here. */
  511. case A2232EVENT_Sync:
  512. printk("A2232: 65EC02 software sent SYNC event, don't know what to do. Ignoring.");
  513. break;
  514. default:
  515. printk("A2232: 65EC02 software broken, unknown event type %d occured.n",ibuf[bufpos-1]);
  516. } /* event type switch */
  517. break;
  518.   case A2232INCTL_CHAR:
  519. /* Receive incoming char */
  520. a2232_receive_char(port, ibuf[bufpos], err);
  521. bufpos++;
  522. break;
  523.   default:
  524. printk("A2232: 65EC02 software broken, unknown data type %d occured.n",cbuf[bufpos]);
  525. bufpos++;
  526. } /* switch on input data type */
  527. } /* while there's something in the buffer */
  528. status->InTail = bufpos;            /* tell 65EC02 what we've read */
  529. } /* if there was something in the buffer */                          
  530. } /* If input is not disabled */
  531. /* Now check if there's something to output */
  532. obuf = mem->OutBuf[p];
  533. bufpos = status->OutHead;
  534. while ( (port->gs.xmit_cnt > 0) &&
  535. (!port->gs.tty->stopped) &&
  536. (!port->gs.tty->hw_stopped) ){ /* While there are chars to transmit */
  537. if (((bufpos+1) & A2232_IOBUFLENMASK) != status->OutTail) { /* If the A2232 buffer is not full */
  538. ch = port->gs.xmit_buf[port->gs.xmit_tail]; /* get the next char to transmit */
  539. port->gs.xmit_tail = (port->gs.xmit_tail+1) & (SERIAL_XMIT_SIZE-1); /* modulo-addition for the gs.xmit_buf ring-buffer */
  540. obuf[bufpos++] = ch; /* put it into the A2232 buffer */
  541. port->gs.xmit_cnt--;
  542. }
  543. else{ /* If A2232 the buffer is full */
  544. break; /* simply stop filling it. */
  545. }
  546. }
  547. status->OutHead = bufpos;
  548. /* WakeUp if output buffer runs low */
  549. if ((port->gs.xmit_cnt <= port->gs.wakeup_chars) && port->gs.tty) {
  550. if ((port->gs.tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && port->gs.tty->ldisc.write_wakeup){
  551. (port->gs.tty->ldisc.write_wakeup)(port->gs.tty);
  552. }
  553. wake_up_interruptible(&port->gs.tty->write_wait);
  554. }
  555. } // if the port is used
  556. } // for every port on the board
  557. /* Now check the CD message queue */
  558. newhead = mem->Common.CDHead;
  559. bufpos = mem->Common.CDTail;
  560. if (newhead != bufpos){ /* There are CD events in queue */
  561. ocd = mem->Common.CDStatus;  /* get old status bits */
  562. while (newhead != bufpos){ /* read all events */
  563. ncd = mem->CDBuf[bufpos++];  /* get one event */
  564. ccd = ncd ^ ocd;  /* mask of changed lines */
  565. ocd = ncd;  /* save new status bits */
  566. for(p=0; p < NUMLINES; p++){ /* for all ports */
  567. if (ccd & 1){ /* this one changed */
  568. struct a2232_port *port = &a2232_ports[n*7+p];
  569. port->cd_status = !(ncd & 1); /* ncd&1 <=> CD is now off */
  570. if (!(port->gs.flags & ASYNC_CHECK_CD))
  571. ; /* Don't report DCD changes */
  572. else if (port->cd_status) { // if DCD on: DCD went UP!
  573. if (~(port->gs.flags & ASYNC_NORMAL_ACTIVE) ||
  574.     ~(port->gs.flags & ASYNC_CALLOUT_ACTIVE)) {
  575. /* Are we blocking in open?*/
  576. wake_up_interruptible(&port->gs.open_wait);
  577. }
  578. }
  579. else { // if DCD off: DCD went DOWN!
  580. if (!((port->gs.flags & ASYNC_CALLOUT_ACTIVE) &&
  581.       (port->gs.flags & ASYNC_CALLOUT_NOHUP))) {
  582. if (port->gs.tty)
  583. tty_hangup (port->gs.tty);
  584. }
  585. }
  586. } // if CD changed for this port
  587. ccd >>= 1;
  588. ncd >>= 1; /* Shift bits for next line */
  589. } // for every port
  590. } // while CD events in queue
  591. mem->Common.CDStatus = ocd; /* save new status */
  592. mem->Common.CDTail = bufpos; /* remove events */
  593. } // if events in CD queue
  594. } // for every completely initialized A2232 board
  595. }
  596. static void a2232_init_portstructs(void)
  597. {
  598. struct a2232_port *port;
  599. int i;
  600. for (i = 0; i < MAX_A2232_BOARDS*NUMLINES; i++) {
  601. port = a2232_ports + i;
  602. port->which_a2232 = i/NUMLINES;
  603. port->which_port_on_a2232 = i%NUMLINES;
  604. port->disable_rx = port->throttle_input = port->cd_status = 0;
  605. port->gs.callout_termios = tty_std_termios;
  606. port->gs.normal_termios = tty_std_termios;
  607. port->gs.magic = A2232_MAGIC;
  608. port->gs.close_delay = HZ/2;
  609. port->gs.closing_wait = 30 * HZ;
  610. port->gs.rd = &a2232_real_driver;
  611. #ifdef NEW_WRITE_LOCKING
  612. init_MUTEX(&(port->gs.port_write_sem));
  613. #endif
  614. init_waitqueue_head(&port->gs.open_wait);
  615. init_waitqueue_head(&port->gs.close_wait);
  616. }
  617. }
  618. static int a2232_init_drivers(void)
  619. {
  620. int error;
  621. memset(&a2232_driver, 0, sizeof(a2232_driver));
  622. a2232_driver.magic = TTY_DRIVER_MAGIC;
  623. a2232_driver.driver_name = "commodore_a2232";
  624. a2232_driver.name = "ttyY";
  625. a2232_driver.major = A2232_NORMAL_MAJOR;
  626. a2232_driver.num = NUMLINES * nr_a2232;
  627. a2232_driver.type = TTY_DRIVER_TYPE_SERIAL;
  628. a2232_driver.subtype = A2232_TTY_SUBTYPE_NORMAL;
  629. a2232_driver.init_termios = tty_std_termios;
  630. a2232_driver.init_termios.c_cflag =
  631. B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  632. a2232_driver.flags = TTY_DRIVER_REAL_RAW;
  633. a2232_driver.refcount = &a2232_refcount;
  634. a2232_driver.table = a2232_table;
  635. a2232_driver.termios = a2232_termios;
  636. a2232_driver.termios_locked = a2232_termios_locked;
  637. a2232_driver.open = a2232_open;
  638. a2232_driver.close = gs_close;
  639. a2232_driver.write = gs_write;
  640. a2232_driver.put_char = gs_put_char;
  641. a2232_driver.flush_chars = gs_flush_chars;
  642. a2232_driver.write_room = gs_write_room;
  643. a2232_driver.chars_in_buffer = gs_chars_in_buffer;
  644. a2232_driver.flush_buffer = gs_flush_buffer;
  645. a2232_driver.ioctl = a2232_ioctl;
  646. a2232_driver.throttle = a2232_throttle;
  647. a2232_driver.unthrottle = a2232_unthrottle;
  648. a2232_driver.set_termios = gs_set_termios;
  649. a2232_driver.stop = gs_stop;
  650. a2232_driver.start = gs_start;
  651. a2232_driver.hangup = gs_hangup;
  652. a2232_callout_driver = a2232_driver;
  653. a2232_callout_driver.name = "cuy";
  654. a2232_callout_driver.major = A2232_CALLOUT_MAJOR;
  655. a2232_callout_driver.subtype = A2232_TTY_SUBTYPE_CALLOUT;
  656. if ((error = tty_register_driver(&a2232_driver))) {
  657. printk(KERN_ERR "A2232: Couldn't register A2232 driver, error = %dn",
  658.        error);
  659. return 1;
  660. }
  661. if ((error = tty_register_driver(&a2232_callout_driver))) {
  662. tty_unregister_driver(&a2232_driver);
  663. printk(KERN_ERR "A2232: Couldn't register A2232 callout driver, error = %dn",
  664.        error);
  665. return 1;
  666. }
  667. return 0;
  668. }
  669. int a2232board_init(void)
  670. {
  671. struct zorro_dev *z;
  672. unsigned int boardaddr;
  673. int bcount;
  674. short start;
  675. u_char *from;
  676. volatile u_char *to;
  677. volatile struct a2232memory *mem;
  678. #ifdef __SMP__
  679. return -ENODEV; /* This driver is not SMP aware. Is there an SMP ZorroII-bus-machine? */
  680. #endif
  681. if (!MACH_IS_AMIGA){
  682. return -ENODEV;
  683. }
  684. printk("Commodore A2232 driver initializing.n"); /* Say that we're alive. */
  685. z = NULL;
  686. nr_a2232 = 0;
  687. while ( (z = zorro_find_device(ZORRO_WILDCARD, z)) ){
  688. if ( (z->id != ZORRO_PROD_CBM_A2232_PROTOTYPE) && 
  689. (z->id != ZORRO_PROD_CBM_A2232) ){
  690. continue; // The board found was no A2232
  691. }
  692. if (!zorro_request_device(z,"A2232 driver"))
  693. continue;
  694. printk("Commodore A2232 found (#%d).n",nr_a2232);
  695. zd_a2232[nr_a2232] = z;
  696. boardaddr = ZTWO_VADDR( z->resource.start );
  697. printk("Board is located at address 0x%x, size is 0x%x.n", boardaddr, (unsigned int) ((z->resource.end+1) - (z->resource.start)));
  698. mem = (volatile struct a2232memory *) boardaddr;
  699. (void) mem->Enable6502Reset;   /* copy the code across to the board */
  700. to = (u_char *)mem;  from = a2232_65EC02code; bcount = sizeof(a2232_65EC02code) - 2;
  701. start = *(short *)from;
  702. from += sizeof(start);
  703. to += start;
  704. while(bcount--) *to++ = *from++;
  705. printk("65EC02 software uploaded to the A2232 memory.n");
  706.   
  707. mem->Common.Crystal = A2232_UNKNOWN;  /* use automatic speed check */
  708.   
  709. /* start 6502 running */
  710. (void) mem->ResetBoard;
  711. printk("A2232's 65EC02 CPU up and running.n");
  712.   
  713. /* wait until speed detector has finished */
  714. for (bcount = 0; bcount < 2000; bcount++) {
  715. udelay(1000);
  716. if (mem->Common.Crystal)
  717. break;
  718. }
  719. printk((mem->Common.Crystal?"A2232 oscillator crystal detected by 65EC02 software: ":"65EC02 software could not determine A2232 oscillator crystal: "));
  720. switch (mem->Common.Crystal){
  721. case A2232_UNKNOWN:
  722. printk("Unknown crystal.n");
  723. break;
  724.   case A2232_NORMAL:
  725. printk ("Normal crystal.n");
  726. break;
  727. case A2232_TURBO:
  728. printk ("Turbo crystal.n");
  729. break;
  730. default:
  731. printk ("0x%x. Huh?n",mem->Common.Crystal);
  732. }
  733. nr_a2232++;
  734. }
  735. printk("Total: %d A2232 boards initialized.n.", nr_a2232); /* Some status report if no card was found */
  736. a2232_init_portstructs();
  737. /*
  738. a2232_init_drivers also registers the drivers. Must be here because all boards
  739. have to be detected first.
  740. */
  741. if (a2232_init_drivers()) return -ENODEV; // maybe we should use a different -Exxx?
  742. request_irq(IRQ_AMIGA_VERTB, a2232_vbl_inter, 0, "A2232 serial VBL", a2232_driver_ID);
  743. return 0;
  744. }
  745. #ifdef MODULE
  746. int init_module(void)
  747. {
  748. return a2232board_init();
  749. }
  750. void cleanup_module(void)
  751. {
  752. int i;
  753. for (i = 0; i < nr_a2232; i++) {
  754. zorro_release_device(zd_a2232[i]);
  755. }
  756. tty_unregister_driver(&a2232_driver);
  757. tty_unregister_driver(&a2232_callout_driver);
  758. free_irq(IRQ_AMIGA_VERTB, a2232_driver_ID);
  759. }
  760. #endif
  761. /***************************** End of Functions *********************/
  762. MODULE_AUTHOR("Enver Haase");
  763. MODULE_DESCRIPTION("Amiga A2232 multi-serial board driver");
  764. MODULE_LICENSE("GPL");