Home | History | Annotate | Line # | Download | only in ic
comvar.h revision 1.32
      1 /*	$NetBSD: comvar.h,v 1.32 2000/03/23 07:01:30 thorpej Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *      This product includes software developed by Christopher G. Demetriou
     17  *	for the NetBSD Project.
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include "rnd.h"
     34 #if NRND > 0 && defined(RND_COM)
     35 #include <sys/rnd.h>
     36 #endif
     37 
     38 #include <sys/callout.h>
     39 #include <sys/timepps.h>
     40 
     41 int comcnattach __P((bus_space_tag_t, int, int, int, tcflag_t));
     42 
     43 #ifdef KGDB
     44 int com_kgdb_attach __P((bus_space_tag_t, int, int, int, tcflag_t));
     45 #endif
     46 
     47 int com_is_console __P((bus_space_tag_t, int, bus_space_handle_t *));
     48 
     49 /* Hardware flag masks */
     50 #define	COM_HW_NOIEN	0x01
     51 #define	COM_HW_FIFO	0x02
     52 #define	COM_HW_HAYESP	0x04
     53 #define	COM_HW_FLOW	0x08
     54 #define	COM_HW_DEV_OK	0x20
     55 #define	COM_HW_CONSOLE	0x40
     56 #define	COM_HW_KGDB	0x80
     57 #define	COM_HW_TXFIFO_DISABLE	0x100
     58 
     59 /* Buffer size for character buffer */
     60 #define	COM_RING_SIZE	2048
     61 
     62 struct com_softc {
     63 	struct device sc_dev;
     64 	void *sc_si;
     65 	struct tty *sc_tty;
     66 
     67 	struct callout sc_diag_callout;
     68 
     69 	int sc_iobase;			/* XXX ISA-centric name */
     70 	int sc_frequency;
     71 
     72 	bus_space_tag_t sc_iot;
     73 	bus_space_handle_t sc_ioh;
     74 	bus_space_handle_t sc_hayespioh;
     75 
     76 	u_int sc_overflows,
     77 	      sc_floods,
     78 	      sc_errors;
     79 
     80 	int sc_hwflags,
     81 	    sc_swflags;
     82 	u_int sc_fifolen;
     83 
     84 	u_int sc_r_hiwat,
     85 	      sc_r_lowat;
     86 	u_char *volatile sc_rbget,
     87 	       *volatile sc_rbput;
     88  	volatile u_int sc_rbavail;
     89 	u_char *sc_rbuf,
     90 	       *sc_ebuf;
     91 
     92  	u_char *sc_tba;
     93  	u_int sc_tbc,
     94 	      sc_heldtbc;
     95 
     96 	volatile u_char sc_rx_flags,
     97 #define	RX_TTY_BLOCKED		0x01
     98 #define	RX_TTY_OVERFLOWED	0x02
     99 #define	RX_IBUF_BLOCKED		0x04
    100 #define	RX_IBUF_OVERFLOWED	0x08
    101 #define	RX_ANY_BLOCK		0x0f
    102 			sc_tx_busy,
    103 			sc_tx_done,
    104 			sc_tx_stopped,
    105 			sc_st_check,
    106 			sc_rx_ready;
    107 
    108 	volatile u_char sc_heldchange;
    109 	volatile u_char sc_msr, sc_msr_delta, sc_msr_mask, sc_mcr,
    110 	    sc_mcr_active, sc_lcr, sc_ier, sc_fifo, sc_dlbl, sc_dlbh, sc_efr;
    111 	u_char sc_mcr_dtr, sc_mcr_rts, sc_msr_cts, sc_msr_dcd;
    112 
    113 	/* power management hooks */
    114 	int (*enable) __P((struct com_softc *));
    115 	void (*disable) __P((struct com_softc *));
    116 	int enabled;
    117 
    118 	/* PPS signal on DCD, with or without inkernel clock disciplining */
    119 	u_char	sc_ppsmask;			/* pps signal mask */
    120 	u_char	sc_ppsassert;			/* pps leading edge */
    121 	u_char	sc_ppsclear;			/* pps trailing edge */
    122 	pps_info_t ppsinfo;
    123 	pps_params_t ppsparam;
    124 
    125 #if NRND > 0 && defined(RND_COM)
    126 	rndsource_element_t  rnd_source;
    127 #endif
    128 };
    129 
    130 /* Macros to clear/set/test flags. */
    131 #define SET(t, f)	(t) |= (f)
    132 #define CLR(t, f)	(t) &= ~(f)
    133 #define ISSET(t, f)	((t) & (f))
    134 
    135 int comprobe1 __P((bus_space_tag_t, bus_space_handle_t));
    136 int comintr __P((void *));
    137 void com_attach_subr __P((struct com_softc *));
    138 int cominit __P((bus_space_tag_t, int, int, int, tcflag_t,
    139 	bus_space_handle_t *));
    140 int com_detach __P((struct device *, int));
    141 int com_activate __P((struct device *, enum devact));
    142 
    143 #ifndef __GENERIC_SOFT_INTERRUPTS
    144 #ifdef __NO_SOFT_SERIAL_INTERRUPT
    145 #define	IPL_SERIAL	IPL_TTY
    146 #define	splserial()	spltty()
    147 #define	IPL_SOFTSERIAL	IPL_TTY
    148 #define	splsoftserial()	spltty()
    149 #endif
    150 #endif
    151