summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/spifvar.h
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1999-02-01 00:30:44 +0000
committerJason Wright <jason@cvs.openbsd.org>1999-02-01 00:30:44 +0000
commitcbe48957ed88932051848cb8457ee5f9866baab6 (patch)
treec83988851d311d7df21cfb33bb0891ac8b7f18f5 /sys/arch/sparc/dev/spifvar.h
parente6b3710e4cef18bcfdb35ce4211312a05897c55d (diff)
driver for the 8 serial 1 parallel SUNW,spif board:
o heavily based on magma driver o no support for the parallel port yet
Diffstat (limited to 'sys/arch/sparc/dev/spifvar.h')
-rw-r--r--sys/arch/sparc/dev/spifvar.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/sys/arch/sparc/dev/spifvar.h b/sys/arch/sparc/dev/spifvar.h
new file mode 100644
index 00000000000..1db8c16cab5
--- /dev/null
+++ b/sys/arch/sparc/dev/spifvar.h
@@ -0,0 +1,81 @@
+/* $OpenBSD: spifvar.h,v 1.1 1999/02/01 00:30:42 jason Exp $ */
+
+/*
+ * Copyright (c) 1999 Jason L. Wright (jason@thought.net)
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Jason L. Wright
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#define SPIF_MAX_SERIAL 8
+#define SPIF_MAX_PARALLEL 1
+
+struct stty_port {
+ struct tty *sp_tty; /* tty device */
+ struct spif_softc *sp_sc; /* pointer back to registers */
+ int sp_channel; /* channel number */
+ u_char *sp_rbuf; /* ring buffer start */
+ u_char *sp_rend; /* ring buffer end */
+ u_char *sp_rget; /* ring buffer read pointer */
+ u_char *sp_rput; /* ring buffer write pointer */
+ u_char *sp_txp; /* transmit character pointer */
+ int sp_txc; /* transmit character counter */
+
+ int sp_openflags;
+ int sp_carrier;
+ int sp_flags;
+ char sp_dtr; /* software dtr status */
+};
+
+struct stty_softc {
+ struct device sc_dev; /* base device */
+ int sc_nports; /* number of serial ports */
+ struct stty_port sc_port[SPIF_MAX_SERIAL];
+};
+
+struct sbpp_softc {
+ struct device sc_dev; /* base device */
+ int sc_nports; /* number of parallel ports */
+};
+
+struct spif_softc {
+ struct device sc_dev; /* base device */
+ struct sbusdev sc_sd; /* sbus device */
+ struct intrhand sc_stcih; /* stc interrupt vectoring */
+ struct intrhand sc_ppcih; /* ppc interrupt vectoring */
+ struct intrhand sc_softih; /* hard interrupt vectoring */
+ int sc_rev; /* revision level */
+ int sc_osc; /* oscillator speed (mhz) */
+ int sc_node; /* which sbus node */
+ int sc_nser; /* number of serial ports */
+ int sc_npar; /* number of parallel ports */
+ unsigned sc_rev2; /* onboard chip revision */
+ struct spifregs *sc_regs; /* registers */
+ struct stty_softc *sc_ttys; /* our ttys */
+ struct sbpp_softc *sc_bpps; /* our ttys */
+};
+