plcomvar.h revision 1.14.4.1 1 /* $NetBSD: plcomvar.h,v 1.14.4.1 2014/05/18 17:45:03 rmind 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 #include "opt_multiprocessor.h"
35 #include "opt_lockdebug.h"
36 #include "opt_plcom.h"
37 #include "opt_kgdb.h"
38
39 #ifdef RND_COM
40 #include <sys/rnd.h>
41 #endif
42
43 #include <sys/callout.h>
44 #include <sys/timepps.h>
45
46 struct plcom_instance;
47
48 int plcomcnattach (struct plcom_instance *, int, int, tcflag_t, int);
49 void plcomcndetach (void);
50
51 #ifdef KGDB
52 int plcom_kgdb_attach (struct plcom_instance *, int, int, tcflag_t, int);
53 #endif
54
55 int plcom_is_console (bus_space_tag_t, bus_addr_t, bus_space_handle_t *);
56
57 /* Hardware flag masks */
58 #define PLCOM_HW_NOIEN 0x01
59 #define PLCOM_HW_FIFO 0x02
60 #define PLCOM_HW_HAYESP 0x04
61 #define PLCOM_HW_FLOW 0x08
62 #define PLCOM_HW_DEV_OK 0x20
63 #define PLCOM_HW_CONSOLE 0x40
64 #define PLCOM_HW_KGDB 0x80
65 #define PLCOM_HW_TXFIFO_DISABLE 0x100
66
67 /* Buffer size for character buffer */
68 #define PLCOM_RING_SIZE 2048
69
70 struct plcom_instance {
71 u_int pi_type;
72 #define PLCOM_TYPE_PL010 0
73 #define PLCOM_TYPE_PL011 1
74
75 uint32_t pi_flags; /* flags for this PLCOM */
76 #define PLC_FLAG_USE_DMA 0x0001
77 #define PLC_FLAG_32BIT_ACCESS 0x0002
78
79 void *pi_cookie;
80
81 bus_space_tag_t pi_iot;
82 bus_space_handle_t pi_ioh;
83 bus_addr_t pi_iobase;
84 bus_addr_t pi_size;
85 struct plcom_registers *pi_regs;
86 };
87
88 struct plcomcons_info {
89 int rate;
90 int frequency;
91 int type;
92
93 tcflag_t cflag;
94 };
95
96 struct plcom_softc {
97 device_t sc_dev;
98
99 struct tty *sc_tty;
100 void *sc_si;
101
102 struct callout sc_diag_callout;
103
104 int sc_frequency;
105
106 struct plcom_instance sc_pi;
107
108 u_int sc_overflows,
109 sc_floods,
110 sc_errors;
111
112 int sc_hwflags,
113 sc_swflags;
114 u_int sc_fifolen;
115
116 u_int sc_r_hiwat,
117 sc_r_lowat;
118 u_char *volatile sc_rbget,
119 *volatile sc_rbput;
120 volatile u_int sc_rbavail;
121 u_char *sc_rbuf,
122 *sc_ebuf;
123
124 u_char *sc_tba;
125 u_int sc_tbc,
126 sc_heldtbc;
127
128 volatile u_char sc_rx_flags,
129 #define RX_TTY_BLOCKED 0x01
130 #define RX_TTY_OVERFLOWED 0x02
131 #define RX_IBUF_BLOCKED 0x04
132 #define RX_IBUF_OVERFLOWED 0x08
133 #define RX_ANY_BLOCK 0x0f
134 sc_tx_busy,
135 sc_tx_done,
136 sc_tx_stopped,
137 sc_st_check,
138 sc_rx_ready;
139
140 volatile u_char sc_heldchange;
141 volatile u_int sc_cr, sc_ratel, sc_rateh, sc_imsc;
142 volatile u_int sc_msr, sc_msr_delta, sc_msr_mask;
143 volatile u_char sc_mcr, sc_mcr_active, sc_lcr;
144 u_char sc_mcr_dtr, sc_mcr_rts, sc_msr_cts, sc_msr_dcd;
145 u_int sc_fifo;
146
147 /* Support routine to program mcr lines for PL010, if present. */
148 void (*sc_set_mcr)(void *, int, u_int);
149 void *sc_set_mcr_arg;
150
151 /* power management hooks */
152 int (*enable) (struct plcom_softc *);
153 void (*disable) (struct plcom_softc *);
154 int enabled;
155
156 /* PPS signal on DCD, with or without inkernel clock disciplining */
157 u_char sc_ppsmask; /* pps signal mask */
158 u_char sc_ppsassert; /* pps leading edge */
159 u_char sc_ppsclear; /* pps trailing edge */
160 pps_info_t ppsinfo;
161 pps_params_t ppsparam;
162
163 #ifdef RND_COM
164 krndsource_t rnd_source;
165 #endif
166 kmutex_t sc_lock;
167 };
168
169 #if 0
170 int plcomprobe1 (bus_space_tag_t, bus_space_handle_t);
171 #endif
172 int plcomintr (void *);
173 void plcom_attach_subr (struct plcom_softc *);
174 int plcom_detach (device_t, int);
175 int plcom_activate (device_t, enum devact);
176
177