zs.c revision 1.72 1 1.72 tsutsui /* $NetBSD: zs.c,v 1.72 2010/04/09 17:38:43 tsutsui Exp $ */
2 1.1 leo
3 1.1 leo /*
4 1.1 leo * Copyright (c) 1992, 1993
5 1.1 leo * The Regents of the University of California. All rights reserved.
6 1.1 leo *
7 1.1 leo * This software was developed by the Computer Systems Engineering group
8 1.1 leo * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 leo * contributed to Berkeley.
10 1.1 leo *
11 1.1 leo *
12 1.1 leo * All advertising materials mentioning features or use of this software
13 1.1 leo * must display the following acknowledgement:
14 1.1 leo * This product includes software developed by the University of
15 1.1 leo * California, Lawrence Berkeley Laboratory.
16 1.1 leo *
17 1.1 leo * Redistribution and use in source and binary forms, with or without
18 1.1 leo * modification, are permitted provided that the following conditions
19 1.1 leo * are met:
20 1.1 leo * 1. Redistributions of source code must retain the above copyright
21 1.1 leo * notice, this list of conditions and the following disclaimer.
22 1.1 leo * 2. Redistributions in binary form must reproduce the above copyright
23 1.1 leo * notice, this list of conditions and the following disclaimer in the
24 1.1 leo * documentation and/or other materials provided with the distribution.
25 1.41 agc * 3. Neither the name of the University nor the names of its contributors
26 1.41 agc * may be used to endorse or promote products derived from this software
27 1.41 agc * without specific prior written permission.
28 1.41 agc *
29 1.41 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 1.41 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 1.41 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 1.41 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 1.41 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 1.41 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 1.41 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 1.41 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 1.41 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 1.41 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 1.41 agc * SUCH DAMAGE.
40 1.41 agc *
41 1.41 agc * @(#)zs.c 8.1 (Berkeley) 7/19/93
42 1.41 agc */
43 1.41 agc
44 1.42 leo /*-
45 1.42 leo * Copyright (c) 1995 The NetBSD Foundation, Inc. (Atari modifications)
46 1.42 leo * All rights reserved.
47 1.41 agc *
48 1.42 leo * This code is derived from software contributed to The NetBSD Foundation
49 1.42 leo * by Leo Weppelman.
50 1.41 agc *
51 1.41 agc * Redistribution and use in source and binary forms, with or without
52 1.41 agc * modification, are permitted provided that the following conditions
53 1.41 agc * are met:
54 1.41 agc * 1. Redistributions of source code must retain the above copyright
55 1.41 agc * notice, this list of conditions and the following disclaimer.
56 1.41 agc * 2. Redistributions in binary form must reproduce the above copyright
57 1.41 agc * notice, this list of conditions and the following disclaimer in the
58 1.41 agc * documentation and/or other materials provided with the distribution.
59 1.1 leo *
60 1.42 leo * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
61 1.42 leo * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
62 1.42 leo * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
63 1.42 leo * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
64 1.42 leo * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
65 1.42 leo * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
66 1.42 leo * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
67 1.42 leo * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
68 1.42 leo * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
69 1.42 leo * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
70 1.42 leo * POSSIBILITY OF SUCH DAMAGE.
71 1.1 leo */
72 1.1 leo
73 1.1 leo /*
74 1.1 leo * Zilog Z8530 (ZSCC) driver.
75 1.1 leo *
76 1.1 leo * Runs two tty ports (modem2 and serial2) on zs0.
77 1.1 leo *
78 1.1 leo * This driver knows far too much about chip to usage mappings.
79 1.1 leo */
80 1.40 lukem
81 1.40 lukem #include <sys/cdefs.h>
82 1.72 tsutsui __KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.72 2010/04/09 17:38:43 tsutsui Exp $");
83 1.40 lukem
84 1.1 leo #include <sys/param.h>
85 1.9 leo #include <sys/systm.h>
86 1.1 leo #include <sys/proc.h>
87 1.1 leo #include <sys/device.h>
88 1.1 leo #include <sys/conf.h>
89 1.1 leo #include <sys/file.h>
90 1.1 leo #include <sys/ioctl.h>
91 1.13 leo #include <sys/malloc.h>
92 1.1 leo #include <sys/tty.h>
93 1.1 leo #include <sys/time.h>
94 1.1 leo #include <sys/kernel.h>
95 1.1 leo #include <sys/syslog.h>
96 1.47 elad #include <sys/kauth.h>
97 1.1 leo
98 1.1 leo #include <machine/cpu.h>
99 1.1 leo #include <machine/iomap.h>
100 1.1 leo #include <machine/scu.h>
101 1.1 leo #include <machine/mfp.h>
102 1.18 leo #include <atari/dev/ym2149reg.h>
103 1.1 leo
104 1.7 cgd #include <dev/ic/z8530reg.h>
105 1.1 leo #include <atari/dev/zsvar.h>
106 1.65 tsutsui
107 1.65 tsutsui #include "ioconf.h"
108 1.65 tsutsui
109 1.1 leo #include "zs.h"
110 1.1 leo #if NZS > 1
111 1.1 leo #error "This driver supports only 1 85C30!"
112 1.1 leo #endif
113 1.1 leo
114 1.1 leo #if NZS > 0
115 1.1 leo
116 1.12 leo #define PCLK (8053976) /* PCLK pin input clock rate */
117 1.30 mycroft #define PCLK_HD (9600 * 1536) /* PCLK on Hades pin input clock rate */
118 1.1 leo
119 1.1 leo #define splzs spl5
120 1.1 leo
121 1.1 leo /*
122 1.1 leo * Software state per found chip.
123 1.1 leo */
124 1.1 leo struct zs_softc {
125 1.69 tsutsui device_t sc_dev; /* base device */
126 1.72 tsutsui struct zs_chanstate *sc_cs[2]; /* chan A and B software state */
127 1.72 tsutsui
128 1.72 tsutsui struct zs_chanstate sc_cs_store[2];
129 1.72 tsutsui void *sc_sicookie; /* for callback */
130 1.1 leo };
131 1.1 leo
132 1.1 leo /*
133 1.1 leo * Define the registers for a closed port
134 1.1 leo */
135 1.66 tsutsui static uint8_t zs_init_regs[16] = {
136 1.1 leo /* 0 */ 0,
137 1.1 leo /* 1 */ 0,
138 1.1 leo /* 2 */ 0x60,
139 1.1 leo /* 3 */ 0,
140 1.1 leo /* 4 */ 0,
141 1.1 leo /* 5 */ 0,
142 1.1 leo /* 6 */ 0,
143 1.1 leo /* 7 */ 0,
144 1.1 leo /* 8 */ 0,
145 1.13 leo /* 9 */ ZSWR9_MASTER_IE | ZSWR9_VECTOR_INCL_STAT,
146 1.1 leo /* 10 */ ZSWR10_NRZ,
147 1.1 leo /* 11 */ ZSWR11_TXCLK_BAUD | ZSWR11_RXCLK_BAUD,
148 1.1 leo /* 12 */ 0,
149 1.1 leo /* 13 */ 0,
150 1.1 leo /* 14 */ ZSWR14_BAUD_FROM_PCLK | ZSWR14_BAUD_ENA,
151 1.1 leo /* 15 */ 0
152 1.1 leo };
153 1.1 leo
154 1.6 leo /*
155 1.6 leo * Define the machine dependant clock frequencies
156 1.6 leo * If BRgen feeds sender/receiver we always use a
157 1.6 leo * divisor 16, therefor the division by 16 can as
158 1.6 leo * well be done here.
159 1.6 leo */
160 1.71 tsutsui static const u_long zs_freqs_tt[] = {
161 1.6 leo /*
162 1.6 leo * Atari TT, RTxCB is generated by TT-MFP timer C,
163 1.46 lukem * which is set to 307.2 kHz during initialisation
164 1.6 leo * and never changed afterwards.
165 1.6 leo */
166 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
167 1.6 leo 229500, /* BRgen, RTxCA, divisor 16 */
168 1.6 leo 3672000, /* RTxCA, from PCLK4 */
169 1.6 leo 0, /* TRxCA, external */
170 1.6 leo
171 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
172 1.6 leo 19200, /* BRgen, RTxCB, divisor 16 */
173 1.6 leo 307200, /* RTxCB, from TT-MFP TCO */
174 1.6 leo 2457600 /* TRxCB, from BCLK */
175 1.6 leo };
176 1.24 leo
177 1.71 tsutsui static const u_long zs_freqs_falcon[] = {
178 1.6 leo /*
179 1.6 leo * Atari Falcon, XXX no specs available, this might be wrong
180 1.6 leo */
181 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
182 1.6 leo 229500, /* BRgen, RTxCA, divisor 16 */
183 1.6 leo 3672000, /* RTxCA, ??? */
184 1.6 leo 0, /* TRxCA, external */
185 1.6 leo
186 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
187 1.6 leo 229500, /* BRgen, RTxCB, divisor 16 */
188 1.6 leo 3672000, /* RTxCB, ??? */
189 1.6 leo 2457600 /* TRxCB, ??? */
190 1.6 leo };
191 1.24 leo
192 1.71 tsutsui static const u_long zs_freqs_hades[] = {
193 1.24 leo /*
194 1.24 leo * XXX: Channel-A unchecked!!!!!
195 1.24 leo */
196 1.24 leo PCLK_HD/16, /* BRgen, PCLK, divisor 16 */
197 1.24 leo 229500, /* BRgen, RTxCA, divisor 16 */
198 1.24 leo 3672000, /* RTxCA, from PCLK4 */
199 1.24 leo 0, /* TRxCA, external */
200 1.24 leo
201 1.24 leo PCLK_HD/16, /* BRgen, PCLK, divisor 16 */
202 1.24 leo 235550, /* BRgen, RTxCB, divisor 16 */
203 1.24 leo 3768800, /* RTxCB, 3.7688MHz */
204 1.24 leo 3768800 /* TRxCB, 3.7688MHz */
205 1.24 leo };
206 1.24 leo
207 1.71 tsutsui static const u_long zs_freqs_generic[] = {
208 1.6 leo /*
209 1.6 leo * other machines, assume only PCLK is available
210 1.6 leo */
211 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
212 1.6 leo 0, /* BRgen, RTxCA, divisor 16 */
213 1.6 leo 0, /* RTxCA, unknown */
214 1.6 leo 0, /* TRxCA, unknown */
215 1.6 leo
216 1.6 leo PCLK/16, /* BRgen, PCLK, divisor 16 */
217 1.6 leo 0, /* BRgen, RTxCB, divisor 16 */
218 1.6 leo 0, /* RTxCB, unknown */
219 1.6 leo 0 /* TRxCB, unknown */
220 1.6 leo };
221 1.71 tsutsui static const u_long *zs_frequencies;
222 1.6 leo
223 1.1 leo /* Definition of the driver for autoconfig. */
224 1.69 tsutsui static int zsmatch(device_t, cfdata_t, void *);
225 1.69 tsutsui static void zsattach(device_t, device_t, void *);
226 1.17 thorpej
227 1.69 tsutsui CFATTACH_DECL_NEW(zs, sizeof(struct zs_softc),
228 1.38 thorpej zsmatch, zsattach, NULL, NULL);
229 1.17 thorpej
230 1.15 leo /* {b,c}devsw[] function prototypes */
231 1.15 leo dev_type_open(zsopen);
232 1.15 leo dev_type_close(zsclose);
233 1.15 leo dev_type_read(zsread);
234 1.15 leo dev_type_write(zswrite);
235 1.15 leo dev_type_ioctl(zsioctl);
236 1.36 gehenna dev_type_stop(zsstop);
237 1.16 leo dev_type_tty(zstty);
238 1.36 gehenna dev_type_poll(zspoll);
239 1.36 gehenna
240 1.36 gehenna const struct cdevsw zs_cdevsw = {
241 1.36 gehenna zsopen, zsclose, zsread, zswrite, zsioctl,
242 1.39 jdolecek zsstop, zstty, zspoll, nommap, ttykqfilter, D_TTY
243 1.36 gehenna };
244 1.15 leo
245 1.1 leo /* Interrupt handlers. */
246 1.72 tsutsui static int zshard(void *);
247 1.72 tsutsui static int zssoft(void *);
248 1.67 tsutsui static int zsrint(struct zs_chanstate *, struct zschan *);
249 1.67 tsutsui static int zsxint(struct zs_chanstate *, struct zschan *);
250 1.67 tsutsui static int zssint(struct zs_chanstate *, struct zschan *);
251 1.1 leo
252 1.1 leo /* Routines called from other code. */
253 1.59 dsl static void zsstart(struct tty *);
254 1.16 leo
255 1.16 leo /* Routines purely local to this driver. */
256 1.59 dsl static void zsoverrun(int, long *, const char *);
257 1.59 dsl static int zsparam(struct tty *, struct termios *);
258 1.59 dsl static int zsbaudrate(int, int, int *, int *, int *, int *);
259 1.59 dsl static int zs_modem(struct zs_chanstate *, int, int);
260 1.67 tsutsui static void zs_loadchannelregs(struct zschan *, uint8_t *);
261 1.59 dsl static void zs_shutdown(struct zs_chanstate *);
262 1.1 leo
263 1.4 leo static int
264 1.69 tsutsui zsmatch(device_t parent, cfdata_t cf, void *aux)
265 1.1 leo {
266 1.66 tsutsui static int zs_matched = 0;
267 1.31 leo
268 1.69 tsutsui if (strcmp("zs", aux) || zs_matched)
269 1.66 tsutsui return 0;
270 1.31 leo zs_matched = 1;
271 1.66 tsutsui return 1;
272 1.1 leo }
273 1.1 leo
274 1.1 leo /*
275 1.1 leo * Attach a found zs.
276 1.1 leo */
277 1.1 leo static void
278 1.69 tsutsui zsattach(device_t parent, device_t self, void *aux)
279 1.1 leo {
280 1.68 tsutsui struct zs_softc *sc;
281 1.72 tsutsui struct zsdevice *zs;
282 1.72 tsutsui struct zschan *zc;
283 1.66 tsutsui struct zs_chanstate *cs;
284 1.72 tsutsui int channel;
285 1.1 leo
286 1.72 tsutsui sc = device_private(self);
287 1.69 tsutsui sc->sc_dev = self;
288 1.1 leo
289 1.72 tsutsui printf(": serial2 on channel a and modem2 on channel b\n");
290 1.72 tsutsui
291 1.72 tsutsui zs = (struct zsdevice *)AD_SCC;
292 1.72 tsutsui
293 1.72 tsutsui for (channel = 0; channel < 2; channel++) {
294 1.72 tsutsui cs = &sc->sc_cs_store[channel];
295 1.72 tsutsui sc->sc_cs[channel] = cs;
296 1.72 tsutsui
297 1.72 tsutsui cs->cs_unit = channel;
298 1.72 tsutsui cs->cs_zc = zc =
299 1.72 tsutsui (channel == 0) ? &zs->zs_chan_a : &zs->zs_chan_b;
300 1.72 tsutsui /*
301 1.72 tsutsui * Get the command register into a known state.
302 1.72 tsutsui */
303 1.72 tsutsui (void)zc->zc_csr;
304 1.72 tsutsui (void)zc->zc_csr;
305 1.1 leo
306 1.72 tsutsui /*
307 1.72 tsutsui * Do a hardware reset.
308 1.72 tsutsui */
309 1.72 tsutsui if (channel == 0) {
310 1.72 tsutsui ZS_WRITE(zc, 9, ZSWR9_HARD_RESET);
311 1.72 tsutsui delay(50000); /* enough ? */
312 1.72 tsutsui ZS_WRITE(zc, 9, 0);
313 1.72 tsutsui }
314 1.1 leo
315 1.72 tsutsui /*
316 1.72 tsutsui * Initialize channel
317 1.72 tsutsui */
318 1.72 tsutsui zs_loadchannelregs(zc, zs_init_regs);
319 1.72 tsutsui }
320 1.1 leo
321 1.66 tsutsui if (machineid & ATARI_TT) {
322 1.5 leo /*
323 1.6 leo * ininitialise TT-MFP timer C: 307200Hz
324 1.6 leo * timer C and D share one control register:
325 1.6 leo * bits 0-2 control timer D
326 1.6 leo * bits 4-6 control timer C
327 1.6 leo */
328 1.6 leo int cr = MFP2->mf_tcdcr & 7;
329 1.6 leo MFP2->mf_tcdcr = cr; /* stop timer C */
330 1.6 leo MFP2->mf_tcdr = 1; /* counter 1 */
331 1.6 leo cr |= T_Q004 << 4; /* divisor 4 */
332 1.6 leo MFP2->mf_tcdcr = cr; /* start timer C */
333 1.6 leo /*
334 1.5 leo * enable scc related interrupts
335 1.5 leo */
336 1.27 leo SCU->vme_mask |= SCU_SCC;
337 1.6 leo
338 1.6 leo zs_frequencies = zs_freqs_tt;
339 1.6 leo } else if (machineid & ATARI_FALCON) {
340 1.6 leo zs_frequencies = zs_freqs_falcon;
341 1.24 leo } else if (machineid & ATARI_HADES) {
342 1.24 leo zs_frequencies = zs_freqs_hades;
343 1.6 leo } else {
344 1.6 leo zs_frequencies = zs_freqs_generic;
345 1.5 leo }
346 1.1 leo
347 1.72 tsutsui if (intr_establish(36, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
348 1.72 tsutsui aprint_error_dev(self,
349 1.72 tsutsui "Can't establish interrupt (Rx chan B)\n");
350 1.72 tsutsui if (intr_establish(32, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
351 1.72 tsutsui aprint_error_dev(self,
352 1.72 tsutsui "Can't establish interrupt (Tx empty chan B)\n");
353 1.72 tsutsui if (intr_establish(34, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
354 1.72 tsutsui aprint_error_dev(self,
355 1.72 tsutsui "Can't establish interrupt (Ext./Status chan B)\n");
356 1.72 tsutsui if (intr_establish(38, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
357 1.72 tsutsui aprint_error_dev(self,
358 1.72 tsutsui "Can't establish interrupt (Special Rx cond. chan B)\n");
359 1.72 tsutsui if (intr_establish(44, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
360 1.72 tsutsui aprint_error_dev(self,
361 1.72 tsutsui "Can't establish interrupt (Rx chan A)\n");
362 1.72 tsutsui if (intr_establish(40, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
363 1.72 tsutsui aprint_error_dev(self,
364 1.72 tsutsui "Can't establish interrupt (Tx empty chan A)\n");
365 1.72 tsutsui if (intr_establish(42, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
366 1.72 tsutsui aprint_error_dev(self,
367 1.72 tsutsui "Can't establish interrupt (Ext./Status chan A)\n");
368 1.72 tsutsui if (intr_establish(46, USER_VEC, 0, (hw_ifun_t)zshard, sc) == NULL)
369 1.72 tsutsui aprint_error_dev(self,
370 1.72 tsutsui "Can't establish interrupt (Special Rx cond. chan A)\n");
371 1.58 tjam
372 1.72 tsutsui sc->sc_sicookie = softint_establish(SOFTINT_SERIAL,
373 1.72 tsutsui (void (*)(void *))zssoft, sc);
374 1.1 leo }
375 1.1 leo
376 1.1 leo /*
377 1.1 leo * Open a zs serial port.
378 1.1 leo */
379 1.1 leo int
380 1.60 dsl zsopen(dev_t dev, int flags, int mode, struct lwp *l)
381 1.1 leo {
382 1.66 tsutsui struct tty *tp;
383 1.66 tsutsui struct zs_chanstate *cs;
384 1.68 tsutsui struct zs_softc *sc;
385 1.66 tsutsui int unit = ZS_UNIT(dev);
386 1.66 tsutsui int zs = unit >> 1;
387 1.66 tsutsui int error, s;
388 1.1 leo
389 1.68 tsutsui sc = device_lookup_private(&zs_cd, zs);
390 1.68 tsutsui if (sc == NULL)
391 1.66 tsutsui return ENXIO;
392 1.72 tsutsui cs = sc->sc_cs[unit & 1];
393 1.10 jtc
394 1.10 jtc /*
395 1.10 jtc * When port A (ser02) is selected on the TT, make sure
396 1.10 jtc * the port is enabled.
397 1.10 jtc */
398 1.66 tsutsui if ((machineid & ATARI_TT) && !(unit & 1))
399 1.26 leo ym2149_ser2(1);
400 1.13 leo
401 1.13 leo if (cs->cs_rbuf == NULL) {
402 1.13 leo cs->cs_rbuf = malloc(ZLRB_RING_SIZE * sizeof(int), M_DEVBUF,
403 1.66 tsutsui M_WAITOK);
404 1.10 jtc }
405 1.10 jtc
406 1.1 leo tp = cs->cs_ttyp;
407 1.70 tsutsui if (tp == NULL) {
408 1.21 leo cs->cs_ttyp = tp = ttymalloc();
409 1.21 leo tty_attach(tp);
410 1.21 leo tp->t_dev = dev;
411 1.21 leo tp->t_oproc = zsstart;
412 1.21 leo tp->t_param = zsparam;
413 1.1 leo }
414 1.1 leo
415 1.50 elad if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp))
416 1.66 tsutsui return EBUSY;
417 1.29 leo
418 1.1 leo s = spltty();
419 1.29 leo
420 1.29 leo /*
421 1.29 leo * Do the following iff this is a first open.
422 1.29 leo */
423 1.66 tsutsui if ((tp->t_state & TS_ISOPEN) == 0 && tp->t_wopen == 0) {
424 1.70 tsutsui if (tp->t_ispeed == 0) {
425 1.1 leo tp->t_iflag = TTYDEF_IFLAG;
426 1.1 leo tp->t_oflag = TTYDEF_OFLAG;
427 1.1 leo tp->t_cflag = TTYDEF_CFLAG;
428 1.1 leo tp->t_lflag = TTYDEF_LFLAG;
429 1.1 leo tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
430 1.1 leo }
431 1.29 leo ttychars(tp);
432 1.29 leo ttsetwater(tp);
433 1.29 leo
434 1.1 leo (void)zsparam(tp, &tp->t_termios);
435 1.29 leo
436 1.29 leo /*
437 1.29 leo * Turn on DTR. We must always do this, even if carrier is not
438 1.29 leo * present, because otherwise we'd have to use TIOCSDTR
439 1.29 leo * immediately after setting CLOCAL, which applications do not
440 1.29 leo * expect. We always assert DTR while the device is open
441 1.29 leo * unless explicitly requested to deassert it.
442 1.29 leo */
443 1.1 leo zs_modem(cs, ZSWR5_RTS|ZSWR5_DTR, DMSET);
444 1.8 leo /* May never get a status intr. if DCD already on. -gwr */
445 1.66 tsutsui if (((cs->cs_rr0 = cs->cs_zc->zc_csr) & ZSRR0_DCD) != 0)
446 1.8 leo tp->t_state |= TS_CARR_ON;
447 1.70 tsutsui if (cs->cs_softcar)
448 1.1 leo tp->t_state |= TS_CARR_ON;
449 1.1 leo }
450 1.29 leo
451 1.1 leo splx(s);
452 1.29 leo
453 1.29 leo error = ttyopen(tp, ZS_DIALOUT(dev), (flags & O_NONBLOCK));
454 1.29 leo if (error)
455 1.29 leo goto bad;
456 1.29 leo
457 1.32 eeh error = tp->t_linesw->l_open(dev, tp);
458 1.66 tsutsui if (error)
459 1.29 leo goto bad;
460 1.66 tsutsui return 0;
461 1.29 leo
462 1.29 leo bad:
463 1.66 tsutsui if ((tp->t_state & TS_ISOPEN) == 0 && tp->t_wopen == 0) {
464 1.29 leo /*
465 1.29 leo * We failed to open the device, and nobody else had it opened.
466 1.29 leo * Clean up the state as appropriate.
467 1.29 leo */
468 1.29 leo zs_shutdown(cs);
469 1.29 leo }
470 1.66 tsutsui return error;
471 1.1 leo }
472 1.1 leo
473 1.1 leo /*
474 1.1 leo * Close a zs serial port.
475 1.1 leo */
476 1.1 leo int
477 1.60 dsl zsclose(dev_t dev, int flags, int mode, struct lwp *l)
478 1.1 leo {
479 1.66 tsutsui struct zs_chanstate *cs;
480 1.66 tsutsui struct tty *tp;
481 1.68 tsutsui struct zs_softc *sc;
482 1.66 tsutsui int unit = ZS_UNIT(dev);
483 1.1 leo
484 1.68 tsutsui sc = device_lookup_private(&zs_cd, unit >> 1);
485 1.72 tsutsui cs = sc->sc_cs[unit & 1];
486 1.1 leo tp = cs->cs_ttyp;
487 1.29 leo
488 1.32 eeh tp->t_linesw->l_close(tp, flags);
489 1.1 leo ttyclose(tp);
490 1.1 leo
491 1.66 tsutsui if ((tp->t_state & TS_ISOPEN) == 0 && tp->t_wopen == 0) {
492 1.29 leo /*
493 1.29 leo * Although we got a last close, the device may still be in
494 1.29 leo * use; e.g. if this was the dialout node, and there are still
495 1.29 leo * processes waiting for carrier on the non-dialout node.
496 1.29 leo */
497 1.29 leo zs_shutdown(cs);
498 1.29 leo }
499 1.66 tsutsui return 0;
500 1.1 leo }
501 1.1 leo
502 1.1 leo /*
503 1.1 leo * Read/write zs serial port.
504 1.1 leo */
505 1.1 leo int
506 1.60 dsl zsread(dev_t dev, struct uio *uio, int flags)
507 1.1 leo {
508 1.66 tsutsui struct zs_chanstate *cs;
509 1.68 tsutsui struct zs_softc *sc;
510 1.66 tsutsui struct tty *tp;
511 1.66 tsutsui int unit;
512 1.4 leo
513 1.4 leo unit = ZS_UNIT(dev);
514 1.68 tsutsui sc = device_lookup_private(&zs_cd, unit >> 1);
515 1.72 tsutsui cs = sc->sc_cs[unit & 1];
516 1.4 leo tp = cs->cs_ttyp;
517 1.1 leo
518 1.66 tsutsui return (*tp->t_linesw->l_read)(tp, uio, flags);
519 1.1 leo }
520 1.1 leo
521 1.4 leo int
522 1.60 dsl zswrite(dev_t dev, struct uio *uio, int flags)
523 1.1 leo {
524 1.66 tsutsui struct zs_chanstate *cs;
525 1.68 tsutsui struct zs_softc *sc;
526 1.66 tsutsui struct tty *tp;
527 1.66 tsutsui int unit;
528 1.4 leo
529 1.4 leo unit = ZS_UNIT(dev);
530 1.68 tsutsui sc = device_lookup_private(&zs_cd, unit >> 1);
531 1.72 tsutsui cs = sc->sc_cs[unit & 1];
532 1.4 leo tp = cs->cs_ttyp;
533 1.1 leo
534 1.66 tsutsui return (*tp->t_linesw->l_write)(tp, uio, flags);
535 1.34 scw }
536 1.34 scw
537 1.34 scw int
538 1.60 dsl zspoll(dev_t dev, int events, struct lwp *l)
539 1.34 scw {
540 1.66 tsutsui struct zs_chanstate *cs;
541 1.68 tsutsui struct zs_softc *sc;
542 1.66 tsutsui struct tty *tp;
543 1.66 tsutsui int unit;
544 1.34 scw
545 1.34 scw unit = ZS_UNIT(dev);
546 1.68 tsutsui sc = device_lookup_private(&zs_cd, unit >> 1);
547 1.72 tsutsui cs = sc->sc_cs[unit & 1];
548 1.34 scw tp = cs->cs_ttyp;
549 1.34 scw
550 1.66 tsutsui return (*tp->t_linesw->l_poll)(tp, events, l);
551 1.4 leo }
552 1.4 leo
553 1.4 leo struct tty *
554 1.60 dsl zstty(dev_t dev)
555 1.4 leo {
556 1.66 tsutsui struct zs_chanstate *cs;
557 1.68 tsutsui struct zs_softc *sc;
558 1.66 tsutsui int unit;
559 1.4 leo
560 1.4 leo unit = ZS_UNIT(dev);
561 1.68 tsutsui sc = device_lookup_private(&zs_cd, unit >> 1);
562 1.72 tsutsui cs = sc->sc_cs[unit & 1];
563 1.66 tsutsui return cs->cs_ttyp;
564 1.1 leo }
565 1.1 leo
566 1.1 leo /*
567 1.1 leo * ZS hardware interrupt. Scan all ZS channels. NB: we know here that
568 1.1 leo * channels are kept in (A,B) pairs.
569 1.1 leo *
570 1.1 leo * Do just a little, then get out; set a software interrupt if more
571 1.1 leo * work is needed.
572 1.1 leo *
573 1.1 leo * We deliberately ignore the vectoring Zilog gives us, and match up
574 1.1 leo * only the number of `reset interrupt under service' operations, not
575 1.1 leo * the order.
576 1.1 leo */
577 1.8 leo
578 1.1 leo int
579 1.72 tsutsui zshard(void *arg)
580 1.1 leo {
581 1.72 tsutsui struct zs_softc *sc;
582 1.72 tsutsui struct zs_chanstate *cs0, *cs1;
583 1.67 tsutsui struct zschan *zc;
584 1.72 tsutsui int intflags, v, i;
585 1.72 tsutsui uint8_t rr3;
586 1.72 tsutsui
587 1.72 tsutsui sc = arg;
588 1.72 tsutsui intflags = 0;
589 1.72 tsutsui cs0 = sc->sc_cs[0];
590 1.72 tsutsui cs1 = sc->sc_cs[1];
591 1.1 leo
592 1.8 leo do {
593 1.66 tsutsui intflags &= ~4;
594 1.72 tsutsui rr3 = ZS_READ(cs0->cs_zc, 3);
595 1.72 tsutsui if (rr3 & (ZSRR3_IP_A_RX | ZSRR3_IP_A_TX | ZSRR3_IP_A_STAT)) {
596 1.72 tsutsui intflags |= 4 | 2;
597 1.72 tsutsui zc = cs0->cs_zc;
598 1.72 tsutsui i = cs0->cs_rbput;
599 1.72 tsutsui if ((rr3 & ZSRR3_IP_A_RX) != 0 &&
600 1.72 tsutsui (v = zsrint(cs0, zc)) != 0) {
601 1.72 tsutsui cs0->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
602 1.72 tsutsui intflags |= 1;
603 1.72 tsutsui }
604 1.72 tsutsui if ((rr3 & ZSRR3_IP_A_TX) != 0 &&
605 1.72 tsutsui (v = zsxint(cs0, zc)) != 0) {
606 1.72 tsutsui cs0->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
607 1.72 tsutsui intflags |= 1;
608 1.72 tsutsui }
609 1.72 tsutsui if ((rr3 & ZSRR3_IP_A_STAT) != 0 &&
610 1.72 tsutsui (v = zssint(cs0, zc)) != 0) {
611 1.72 tsutsui cs0->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
612 1.72 tsutsui intflags |= 1;
613 1.72 tsutsui }
614 1.72 tsutsui cs0->cs_rbput = i;
615 1.72 tsutsui }
616 1.72 tsutsui if (rr3 & (ZSRR3_IP_B_RX | ZSRR3_IP_B_TX | ZSRR3_IP_B_STAT)) {
617 1.72 tsutsui intflags |= 4 | 2;
618 1.72 tsutsui zc = cs1->cs_zc;
619 1.72 tsutsui i = cs1->cs_rbput;
620 1.72 tsutsui if ((rr3 & ZSRR3_IP_B_RX) != 0 &&
621 1.72 tsutsui (v = zsrint(cs1, zc)) != 0) {
622 1.72 tsutsui cs1->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
623 1.72 tsutsui intflags |= 1;
624 1.72 tsutsui }
625 1.72 tsutsui if ((rr3 & ZSRR3_IP_B_TX) != 0 &&
626 1.72 tsutsui (v = zsxint(cs1, zc)) != 0) {
627 1.72 tsutsui cs1->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
628 1.72 tsutsui intflags |= 1;
629 1.1 leo }
630 1.72 tsutsui if ((rr3 & ZSRR3_IP_B_STAT) != 0 &&
631 1.72 tsutsui (v = zssint(cs1, zc)) != 0) {
632 1.72 tsutsui cs1->cs_rbuf[i++ & ZLRB_RING_MASK] = v;
633 1.72 tsutsui intflags |= 1;
634 1.1 leo }
635 1.72 tsutsui cs1->cs_rbput = i;
636 1.1 leo }
637 1.66 tsutsui } while (intflags & 4);
638 1.1 leo
639 1.66 tsutsui if (intflags & 1)
640 1.72 tsutsui softint_schedule(sc->sc_sicookie);
641 1.58 tjam
642 1.66 tsutsui return intflags & 2;
643 1.1 leo }
644 1.1 leo
645 1.1 leo static int
646 1.67 tsutsui zsrint(struct zs_chanstate *cs, struct zschan *zc)
647 1.1 leo {
648 1.66 tsutsui int c;
649 1.1 leo
650 1.8 leo /*
651 1.8 leo * First read the status, because read of the received char
652 1.8 leo * destroy the status of this char.
653 1.8 leo */
654 1.8 leo c = ZS_READ(zc, 1);
655 1.8 leo c |= (zc->zc_data << 8);
656 1.1 leo
657 1.1 leo /* clear receive error & interrupt condition */
658 1.1 leo zc->zc_csr = ZSWR0_RESET_ERRORS;
659 1.1 leo zc->zc_csr = ZSWR0_CLR_INTR;
660 1.1 leo
661 1.66 tsutsui return ZRING_MAKE(ZRING_RINT, c);
662 1.1 leo }
663 1.1 leo
664 1.1 leo static int
665 1.67 tsutsui zsxint(struct zs_chanstate *cs, struct zschan *zc)
666 1.1 leo {
667 1.66 tsutsui int i = cs->cs_tbc;
668 1.1 leo
669 1.66 tsutsui if (i == 0) {
670 1.1 leo zc->zc_csr = ZSWR0_RESET_TXINT;
671 1.1 leo zc->zc_csr = ZSWR0_CLR_INTR;
672 1.66 tsutsui return ZRING_MAKE(ZRING_XINT, 0);
673 1.1 leo }
674 1.1 leo cs->cs_tbc = i - 1;
675 1.1 leo zc->zc_data = *cs->cs_tba++;
676 1.1 leo zc->zc_csr = ZSWR0_CLR_INTR;
677 1.66 tsutsui return 0;
678 1.1 leo }
679 1.1 leo
680 1.1 leo static int
681 1.67 tsutsui zssint(struct zs_chanstate *cs, struct zschan *zc)
682 1.1 leo {
683 1.66 tsutsui int rr0;
684 1.1 leo
685 1.1 leo rr0 = zc->zc_csr;
686 1.1 leo zc->zc_csr = ZSWR0_RESET_STATUS;
687 1.1 leo zc->zc_csr = ZSWR0_CLR_INTR;
688 1.1 leo /*
689 1.1 leo * The chip's hardware flow control is, as noted in zsreg.h,
690 1.1 leo * busted---if the DCD line goes low the chip shuts off the
691 1.1 leo * receiver (!). If we want hardware CTS flow control but do
692 1.1 leo * not have it, and carrier is now on, turn HFC on; if we have
693 1.1 leo * HFC now but carrier has gone low, turn it off.
694 1.1 leo */
695 1.66 tsutsui if (rr0 & ZSRR0_DCD) {
696 1.66 tsutsui if (cs->cs_ttyp->t_cflag & CCTS_OFLOW &&
697 1.1 leo (cs->cs_creg[3] & ZSWR3_HFC) == 0) {
698 1.1 leo cs->cs_creg[3] |= ZSWR3_HFC;
699 1.1 leo ZS_WRITE(zc, 3, cs->cs_creg[3]);
700 1.1 leo }
701 1.66 tsutsui } else {
702 1.1 leo if (cs->cs_creg[3] & ZSWR3_HFC) {
703 1.1 leo cs->cs_creg[3] &= ~ZSWR3_HFC;
704 1.1 leo ZS_WRITE(zc, 3, cs->cs_creg[3]);
705 1.1 leo }
706 1.1 leo }
707 1.66 tsutsui return ZRING_MAKE(ZRING_SINT, rr0);
708 1.1 leo }
709 1.1 leo
710 1.1 leo /*
711 1.1 leo * Print out a ring or fifo overrun error message.
712 1.1 leo */
713 1.1 leo static void
714 1.60 dsl zsoverrun(int unit, long *ptime, const char *what)
715 1.1 leo {
716 1.55 joerg time_t cur_sec = time_second;
717 1.1 leo
718 1.70 tsutsui if (*ptime != cur_sec) {
719 1.55 joerg *ptime = cur_sec;
720 1.1 leo log(LOG_WARNING, "zs%d%c: %s overrun\n", unit >> 1,
721 1.1 leo (unit & 1) + 'a', what);
722 1.1 leo }
723 1.1 leo }
724 1.1 leo
725 1.1 leo /*
726 1.1 leo * ZS software interrupt. Scan all channels for deferred interrupts.
727 1.1 leo */
728 1.1 leo int
729 1.72 tsutsui zssoft(void *arg)
730 1.1 leo {
731 1.72 tsutsui struct zs_softc *sc;
732 1.66 tsutsui struct zs_chanstate *cs;
733 1.67 tsutsui struct zschan *zc;
734 1.66 tsutsui struct linesw *line;
735 1.66 tsutsui struct tty *tp;
736 1.72 tsutsui int chan, get, n, c, cc, s;
737 1.66 tsutsui int retval = 0;
738 1.66 tsutsui
739 1.72 tsutsui sc = arg;
740 1.66 tsutsui s = spltty();
741 1.72 tsutsui for (chan = 0; chan < 2; chan++) {
742 1.72 tsutsui cs = sc->sc_cs[chan];
743 1.66 tsutsui get = cs->cs_rbget;
744 1.1 leo again:
745 1.66 tsutsui n = cs->cs_rbput; /* atomic */
746 1.66 tsutsui if (get == n) /* nothing more on this line */
747 1.66 tsutsui continue;
748 1.66 tsutsui retval = 1;
749 1.66 tsutsui zc = cs->cs_zc;
750 1.66 tsutsui tp = cs->cs_ttyp;
751 1.66 tsutsui line = tp->t_linesw;
752 1.66 tsutsui /*
753 1.66 tsutsui * Compute the number of interrupts in the receive ring.
754 1.66 tsutsui * If the count is overlarge, we lost some events, and
755 1.66 tsutsui * must advance to the first valid one. It may get
756 1.66 tsutsui * overwritten if more data are arriving, but this is
757 1.66 tsutsui * too expensive to check and gains nothing (we already
758 1.66 tsutsui * lost out; all we can do at this point is trade one
759 1.66 tsutsui * kind of loss for another).
760 1.66 tsutsui */
761 1.66 tsutsui n -= get;
762 1.66 tsutsui if (n > ZLRB_RING_SIZE) {
763 1.72 tsutsui zsoverrun(chan, &cs->cs_rotime, "ring");
764 1.66 tsutsui get += n - ZLRB_RING_SIZE;
765 1.66 tsutsui n = ZLRB_RING_SIZE;
766 1.66 tsutsui }
767 1.66 tsutsui while (--n >= 0) {
768 1.66 tsutsui /* race to keep ahead of incoming interrupts */
769 1.66 tsutsui c = cs->cs_rbuf[get++ & ZLRB_RING_MASK];
770 1.66 tsutsui switch (ZRING_TYPE(c)) {
771 1.66 tsutsui
772 1.66 tsutsui case ZRING_RINT:
773 1.66 tsutsui c = ZRING_VALUE(c);
774 1.66 tsutsui if ((c & ZSRR1_DO) != 0)
775 1.72 tsutsui zsoverrun(chan, &cs->cs_fotime, "fifo");
776 1.66 tsutsui cc = c >> 8;
777 1.66 tsutsui if ((c & ZSRR1_FE) != 0)
778 1.66 tsutsui cc |= TTY_FE;
779 1.66 tsutsui if ((c & ZSRR1_PE) != 0)
780 1.66 tsutsui cc |= TTY_PE;
781 1.66 tsutsui line->l_rint(cc, tp);
782 1.66 tsutsui break;
783 1.66 tsutsui
784 1.66 tsutsui case ZRING_XINT:
785 1.66 tsutsui /*
786 1.66 tsutsui * Transmit done: change registers and resume,
787 1.66 tsutsui * or clear BUSY.
788 1.66 tsutsui */
789 1.66 tsutsui if (cs->cs_heldchange) {
790 1.66 tsutsui int sps;
791 1.66 tsutsui
792 1.66 tsutsui sps = splzs();
793 1.66 tsutsui c = zc->zc_csr;
794 1.66 tsutsui if ((c & ZSRR0_DCD) == 0)
795 1.66 tsutsui cs->cs_preg[3] &= ~ZSWR3_HFC;
796 1.66 tsutsui memcpy((void *)cs->cs_creg,
797 1.66 tsutsui (void *)cs->cs_preg, 16);
798 1.66 tsutsui zs_loadchannelregs(zc, cs->cs_creg);
799 1.66 tsutsui splx(sps);
800 1.66 tsutsui cs->cs_heldchange = 0;
801 1.66 tsutsui if (cs->cs_heldtbc &&
802 1.66 tsutsui (tp->t_state & TS_TTSTOP) == 0) {
803 1.66 tsutsui cs->cs_tbc = cs->cs_heldtbc - 1;
804 1.66 tsutsui zc->zc_data = *cs->cs_tba++;
805 1.66 tsutsui goto again;
806 1.66 tsutsui }
807 1.66 tsutsui }
808 1.66 tsutsui tp->t_state &= ~TS_BUSY;
809 1.66 tsutsui if ((tp->t_state & TS_FLUSH) != 0)
810 1.66 tsutsui tp->t_state &= ~TS_FLUSH;
811 1.66 tsutsui else
812 1.66 tsutsui ndflush(&tp->t_outq,
813 1.66 tsutsui cs->cs_tba - tp->t_outq.c_cf);
814 1.66 tsutsui line->l_start(tp);
815 1.66 tsutsui break;
816 1.1 leo
817 1.66 tsutsui case ZRING_SINT:
818 1.66 tsutsui /*
819 1.66 tsutsui * Status line change. HFC bit is run in
820 1.66 tsutsui * hardware interrupt, to avoid locking
821 1.66 tsutsui * at splzs here.
822 1.66 tsutsui */
823 1.66 tsutsui c = ZRING_VALUE(c);
824 1.66 tsutsui if (((c ^ cs->cs_rr0) & ZSRR0_DCD) != 0) {
825 1.66 tsutsui cc = (c & ZSRR0_DCD) != 0;
826 1.66 tsutsui if (line->l_modem(tp, cc) == 0)
827 1.66 tsutsui zs_modem(cs,
828 1.66 tsutsui ZSWR5_RTS | ZSWR5_DTR,
829 1.66 tsutsui cc ? DMBIS : DMBIC);
830 1.1 leo }
831 1.66 tsutsui cs->cs_rr0 = c;
832 1.66 tsutsui break;
833 1.1 leo
834 1.66 tsutsui default:
835 1.66 tsutsui log(LOG_ERR, "zs%d%c: bad ZRING_TYPE (%x)\n",
836 1.72 tsutsui chan >> 1, (chan & 1) + 'a', c);
837 1.66 tsutsui break;
838 1.1 leo }
839 1.1 leo }
840 1.66 tsutsui cs->cs_rbget = get;
841 1.66 tsutsui goto again;
842 1.1 leo }
843 1.66 tsutsui splx(s);
844 1.66 tsutsui return retval;
845 1.1 leo }
846 1.1 leo
847 1.1 leo int
848 1.60 dsl zsioctl(dev_t dev, u_long cmd, void * data, int flag, struct lwp *l)
849 1.1 leo {
850 1.66 tsutsui int unit = ZS_UNIT(dev);
851 1.68 tsutsui struct zs_softc *sc = device_lookup_private(&zs_cd, unit >> 1);
852 1.72 tsutsui struct zs_chanstate *cs = sc->sc_cs[unit & 1];
853 1.72 tsutsui struct tty *tp = cs->cs_ttyp;
854 1.66 tsutsui int error, s;
855 1.1 leo
856 1.45 christos error = tp->t_linesw->l_ioctl(tp, cmd, data, flag, l);
857 1.66 tsutsui if (error != EPASSTHROUGH)
858 1.66 tsutsui return error;
859 1.35 atatat
860 1.45 christos error = ttioctl(tp, cmd, data, flag, l);
861 1.66 tsutsui if (error !=EPASSTHROUGH)
862 1.66 tsutsui return error;
863 1.1 leo
864 1.1 leo switch (cmd) {
865 1.1 leo case TIOCSBRK:
866 1.1 leo s = splzs();
867 1.1 leo cs->cs_preg[5] |= ZSWR5_BREAK;
868 1.1 leo cs->cs_creg[5] |= ZSWR5_BREAK;
869 1.1 leo ZS_WRITE(cs->cs_zc, 5, cs->cs_creg[5]);
870 1.1 leo splx(s);
871 1.1 leo break;
872 1.1 leo case TIOCCBRK:
873 1.1 leo s = splzs();
874 1.1 leo cs->cs_preg[5] &= ~ZSWR5_BREAK;
875 1.1 leo cs->cs_creg[5] &= ~ZSWR5_BREAK;
876 1.1 leo ZS_WRITE(cs->cs_zc, 5, cs->cs_creg[5]);
877 1.1 leo splx(s);
878 1.1 leo break;
879 1.1 leo case TIOCGFLAGS: {
880 1.1 leo int bits = 0;
881 1.1 leo
882 1.66 tsutsui if (cs->cs_softcar)
883 1.1 leo bits |= TIOCFLAG_SOFTCAR;
884 1.66 tsutsui if ((cs->cs_creg[15] & ZSWR15_DCD_IE) != 0)
885 1.1 leo bits |= TIOCFLAG_CLOCAL;
886 1.66 tsutsui if ((cs->cs_creg[3] & ZSWR3_HFC) != 0)
887 1.1 leo bits |= TIOCFLAG_CRTSCTS;
888 1.1 leo *(int *)data = bits;
889 1.1 leo break;
890 1.1 leo }
891 1.1 leo case TIOCSFLAGS: {
892 1.15 leo int userbits = 0;
893 1.1 leo
894 1.51 elad error = kauth_authorize_device_tty(l->l_cred,
895 1.51 elad KAUTH_DEVICE_TTY_PRIVSET, tp);
896 1.66 tsutsui if (error != 0)
897 1.66 tsutsui return EPERM;
898 1.1 leo
899 1.1 leo userbits = *(int *)data;
900 1.1 leo
901 1.1 leo /*
902 1.1 leo * can have `local' or `softcar', and `rtscts' or `mdmbuf'
903 1.1 leo # defaulting to software flow control.
904 1.1 leo */
905 1.66 tsutsui if ((userbits & TIOCFLAG_SOFTCAR) != 0 &&
906 1.66 tsutsui (userbits & TIOCFLAG_CLOCAL) != 0)
907 1.66 tsutsui return EINVAL;
908 1.66 tsutsui if ((userbits & TIOCFLAG_MDMBUF) != 0)
909 1.66 tsutsui /* don't support this (yet?) */
910 1.66 tsutsui return ENODEV;
911 1.1 leo
912 1.1 leo s = splzs();
913 1.66 tsutsui if ((userbits & TIOCFLAG_SOFTCAR) != 0) {
914 1.1 leo cs->cs_softcar = 1; /* turn on softcar */
915 1.1 leo cs->cs_preg[15] &= ~ZSWR15_DCD_IE; /* turn off dcd */
916 1.1 leo cs->cs_creg[15] &= ~ZSWR15_DCD_IE;
917 1.1 leo ZS_WRITE(cs->cs_zc, 15, cs->cs_creg[15]);
918 1.66 tsutsui } else if ((userbits & TIOCFLAG_CLOCAL) != 0) {
919 1.1 leo cs->cs_softcar = 0; /* turn off softcar */
920 1.1 leo cs->cs_preg[15] |= ZSWR15_DCD_IE; /* turn on dcd */
921 1.1 leo cs->cs_creg[15] |= ZSWR15_DCD_IE;
922 1.1 leo ZS_WRITE(cs->cs_zc, 15, cs->cs_creg[15]);
923 1.1 leo tp->t_termios.c_cflag |= CLOCAL;
924 1.1 leo }
925 1.66 tsutsui if ((userbits & TIOCFLAG_CRTSCTS) != 0) {
926 1.1 leo cs->cs_preg[15] |= ZSWR15_CTS_IE;
927 1.1 leo cs->cs_creg[15] |= ZSWR15_CTS_IE;
928 1.1 leo ZS_WRITE(cs->cs_zc, 15, cs->cs_creg[15]);
929 1.1 leo cs->cs_preg[3] |= ZSWR3_HFC;
930 1.1 leo cs->cs_creg[3] |= ZSWR3_HFC;
931 1.1 leo ZS_WRITE(cs->cs_zc, 3, cs->cs_creg[3]);
932 1.1 leo tp->t_termios.c_cflag |= CRTSCTS;
933 1.66 tsutsui } else {
934 1.1 leo /* no mdmbuf, so we must want software flow control */
935 1.1 leo cs->cs_preg[15] &= ~ZSWR15_CTS_IE;
936 1.1 leo cs->cs_creg[15] &= ~ZSWR15_CTS_IE;
937 1.1 leo ZS_WRITE(cs->cs_zc, 15, cs->cs_creg[15]);
938 1.1 leo cs->cs_preg[3] &= ~ZSWR3_HFC;
939 1.1 leo cs->cs_creg[3] &= ~ZSWR3_HFC;
940 1.1 leo ZS_WRITE(cs->cs_zc, 3, cs->cs_creg[3]);
941 1.1 leo tp->t_termios.c_cflag &= ~CRTSCTS;
942 1.1 leo }
943 1.1 leo splx(s);
944 1.1 leo break;
945 1.1 leo }
946 1.1 leo case TIOCSDTR:
947 1.1 leo zs_modem(cs, ZSWR5_DTR, DMBIS);
948 1.1 leo break;
949 1.1 leo case TIOCCDTR:
950 1.1 leo zs_modem(cs, ZSWR5_DTR, DMBIC);
951 1.1 leo break;
952 1.1 leo case TIOCMGET:
953 1.1 leo zs_modem(cs, 0, DMGET);
954 1.1 leo break;
955 1.1 leo case TIOCMSET:
956 1.1 leo case TIOCMBIS:
957 1.1 leo case TIOCMBIC:
958 1.1 leo default:
959 1.66 tsutsui return EPASSTHROUGH;
960 1.1 leo }
961 1.66 tsutsui return 0;
962 1.1 leo }
963 1.1 leo
964 1.1 leo /*
965 1.1 leo * Start or restart transmission.
966 1.1 leo */
967 1.1 leo static void
968 1.66 tsutsui zsstart(struct tty *tp)
969 1.1 leo {
970 1.66 tsutsui struct zs_chanstate *cs;
971 1.66 tsutsui int s, nch;
972 1.66 tsutsui int unit = ZS_UNIT(tp->t_dev);
973 1.68 tsutsui struct zs_softc *sc = device_lookup_private(&zs_cd, unit >> 1);
974 1.1 leo
975 1.72 tsutsui cs = sc->sc_cs[unit & 1];
976 1.1 leo s = spltty();
977 1.1 leo
978 1.1 leo /*
979 1.1 leo * If currently active or delaying, no need to do anything.
980 1.1 leo */
981 1.66 tsutsui if ((tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) != 0)
982 1.1 leo goto out;
983 1.1 leo
984 1.1 leo /*
985 1.1 leo * If there are sleepers, and output has drained below low
986 1.1 leo * water mark, awaken.
987 1.1 leo */
988 1.54 ad ttypull(tp);
989 1.1 leo
990 1.1 leo nch = ndqb(&tp->t_outq, 0); /* XXX */
991 1.66 tsutsui if (nch) {
992 1.66 tsutsui char *p = tp->t_outq.c_cf;
993 1.1 leo
994 1.1 leo /* mark busy, enable tx done interrupts, & send first byte */
995 1.1 leo tp->t_state |= TS_BUSY;
996 1.66 tsutsui (void)splzs();
997 1.1 leo cs->cs_preg[1] |= ZSWR1_TIE;
998 1.1 leo cs->cs_creg[1] |= ZSWR1_TIE;
999 1.1 leo ZS_WRITE(cs->cs_zc, 1, cs->cs_creg[1]);
1000 1.1 leo cs->cs_zc->zc_data = *p;
1001 1.1 leo cs->cs_tba = p + 1;
1002 1.1 leo cs->cs_tbc = nch - 1;
1003 1.1 leo } else {
1004 1.1 leo /*
1005 1.1 leo * Nothing to send, turn off transmit done interrupts.
1006 1.1 leo * This is useful if something is doing polled output.
1007 1.1 leo */
1008 1.66 tsutsui (void)splzs();
1009 1.1 leo cs->cs_preg[1] &= ~ZSWR1_TIE;
1010 1.1 leo cs->cs_creg[1] &= ~ZSWR1_TIE;
1011 1.1 leo ZS_WRITE(cs->cs_zc, 1, cs->cs_creg[1]);
1012 1.1 leo }
1013 1.1 leo out:
1014 1.1 leo splx(s);
1015 1.1 leo }
1016 1.1 leo
1017 1.1 leo /*
1018 1.1 leo * Stop output, e.g., for ^S or output flush.
1019 1.1 leo */
1020 1.1 leo void
1021 1.66 tsutsui zsstop(struct tty *tp, int flag)
1022 1.1 leo {
1023 1.66 tsutsui struct zs_chanstate *cs;
1024 1.66 tsutsui int s, unit = ZS_UNIT(tp->t_dev);
1025 1.68 tsutsui struct zs_softc *sc = device_lookup_private(&zs_cd, unit >> 1);
1026 1.1 leo
1027 1.72 tsutsui cs = sc->sc_cs[unit & 1];
1028 1.1 leo s = splzs();
1029 1.66 tsutsui if ((tp->t_state & TS_BUSY) != 0) {
1030 1.1 leo /*
1031 1.1 leo * Device is transmitting; must stop it.
1032 1.1 leo */
1033 1.1 leo cs->cs_tbc = 0;
1034 1.1 leo if ((tp->t_state & TS_TTSTOP) == 0)
1035 1.1 leo tp->t_state |= TS_FLUSH;
1036 1.1 leo }
1037 1.29 leo splx(s);
1038 1.29 leo }
1039 1.29 leo
1040 1.29 leo static void
1041 1.60 dsl zs_shutdown(struct zs_chanstate *cs)
1042 1.29 leo {
1043 1.66 tsutsui struct tty *tp = cs->cs_ttyp;
1044 1.66 tsutsui int s;
1045 1.29 leo
1046 1.29 leo s = splzs();
1047 1.29 leo
1048 1.29 leo /*
1049 1.29 leo * Hang up if necessary. Wait a bit, so the other side has time to
1050 1.29 leo * notice even if we immediately open the port again.
1051 1.29 leo */
1052 1.66 tsutsui if ((tp->t_cflag & HUPCL) != 0) {
1053 1.29 leo zs_modem(cs, 0, DMSET);
1054 1.52 christos (void)tsleep((void *)cs, TTIPRI, ttclos, hz);
1055 1.29 leo }
1056 1.29 leo
1057 1.29 leo /* Clear any break condition set with TIOCSBRK. */
1058 1.66 tsutsui if ((cs->cs_creg[5] & ZSWR5_BREAK) != 0) {
1059 1.29 leo cs->cs_preg[5] &= ~ZSWR5_BREAK;
1060 1.29 leo cs->cs_creg[5] &= ~ZSWR5_BREAK;
1061 1.29 leo ZS_WRITE(cs->cs_zc, 5, cs->cs_creg[5]);
1062 1.29 leo }
1063 1.29 leo
1064 1.29 leo /*
1065 1.29 leo * Drop all lines and cancel interrupts
1066 1.29 leo */
1067 1.29 leo zs_loadchannelregs(cs->cs_zc, zs_init_regs);
1068 1.1 leo splx(s);
1069 1.1 leo }
1070 1.1 leo
1071 1.1 leo /*
1072 1.1 leo * Set ZS tty parameters from termios.
1073 1.1 leo *
1074 1.1 leo * This routine makes use of the fact that only registers
1075 1.1 leo * 1, 3, 4, 5, 9, 10, 11, 12, 13, 14, and 15 are written.
1076 1.1 leo */
1077 1.1 leo static int
1078 1.66 tsutsui zsparam(struct tty *tp, struct termios *t)
1079 1.1 leo {
1080 1.66 tsutsui int unit = ZS_UNIT(tp->t_dev);
1081 1.68 tsutsui struct zs_softc *sc = device_lookup_private(&zs_cd, unit >> 1);
1082 1.72 tsutsui struct zs_chanstate *cs = sc->sc_cs[unit & 1];
1083 1.66 tsutsui int cdiv = 0; /* XXX gcc4 -Wuninitialized */
1084 1.66 tsutsui int clkm = 0; /* XXX gcc4 -Wuninitialized */
1085 1.66 tsutsui int brgm = 0; /* XXX gcc4 -Wuninitialized */
1086 1.66 tsutsui int tcon = 0; /* XXX gcc4 -Wuninitialized */
1087 1.66 tsutsui int tmp, tmp5, cflag, s;
1088 1.1 leo
1089 1.6 leo tmp = t->c_ospeed;
1090 1.6 leo tmp5 = t->c_ispeed;
1091 1.66 tsutsui if (tmp < 0 || (tmp5 && tmp5 != tmp))
1092 1.66 tsutsui return EINVAL;
1093 1.66 tsutsui if (tmp == 0) {
1094 1.1 leo /* stty 0 => drop DTR and RTS */
1095 1.1 leo zs_modem(cs, 0, DMSET);
1096 1.66 tsutsui return 0;
1097 1.1 leo }
1098 1.6 leo tmp = zsbaudrate(unit, tmp, &cdiv, &clkm, &brgm, &tcon);
1099 1.6 leo if (tmp < 0)
1100 1.66 tsutsui return EINVAL;
1101 1.6 leo tp->t_ispeed = tp->t_ospeed = tmp;
1102 1.1 leo
1103 1.6 leo cflag = tp->t_cflag = t->c_cflag;
1104 1.66 tsutsui if ((cflag & CSTOPB) != 0)
1105 1.6 leo cdiv |= ZSWR4_TWOSB;
1106 1.6 leo else
1107 1.6 leo cdiv |= ZSWR4_ONESB;
1108 1.66 tsutsui if ((cflag & PARODD) == 0)
1109 1.6 leo cdiv |= ZSWR4_EVENP;
1110 1.66 tsutsui if ((cflag & PARENB) != 0)
1111 1.6 leo cdiv |= ZSWR4_PARENB;
1112 1.1 leo
1113 1.66 tsutsui switch (cflag & CSIZE) {
1114 1.1 leo case CS5:
1115 1.1 leo tmp = ZSWR3_RX_5;
1116 1.1 leo tmp5 = ZSWR5_TX_5;
1117 1.1 leo break;
1118 1.1 leo case CS6:
1119 1.1 leo tmp = ZSWR3_RX_6;
1120 1.1 leo tmp5 = ZSWR5_TX_6;
1121 1.1 leo break;
1122 1.1 leo case CS7:
1123 1.1 leo tmp = ZSWR3_RX_7;
1124 1.1 leo tmp5 = ZSWR5_TX_7;
1125 1.1 leo break;
1126 1.1 leo case CS8:
1127 1.1 leo default:
1128 1.1 leo tmp = ZSWR3_RX_8;
1129 1.1 leo tmp5 = ZSWR5_TX_8;
1130 1.1 leo break;
1131 1.1 leo }
1132 1.6 leo tmp |= ZSWR3_RX_ENABLE;
1133 1.6 leo tmp5 |= ZSWR5_TX_ENABLE | ZSWR5_DTR | ZSWR5_RTS;
1134 1.6 leo
1135 1.6 leo /*
1136 1.6 leo * Block interrupts so that state will not
1137 1.6 leo * be altered until we are done setting it up.
1138 1.6 leo */
1139 1.6 leo s = splzs();
1140 1.6 leo cs->cs_preg[4] = cdiv;
1141 1.6 leo cs->cs_preg[11] = clkm;
1142 1.6 leo cs->cs_preg[12] = tcon;
1143 1.6 leo cs->cs_preg[13] = tcon >> 8;
1144 1.6 leo cs->cs_preg[14] = brgm;
1145 1.6 leo cs->cs_preg[1] = ZSWR1_RIE | ZSWR1_TIE | ZSWR1_SIE;
1146 1.6 leo cs->cs_preg[9] = ZSWR9_MASTER_IE | ZSWR9_VECTOR_INCL_STAT;
1147 1.6 leo cs->cs_preg[10] = ZSWR10_NRZ;
1148 1.6 leo cs->cs_preg[15] = ZSWR15_BREAK_IE | ZSWR15_DCD_IE;
1149 1.1 leo
1150 1.1 leo /*
1151 1.1 leo * Output hardware flow control on the chip is horrendous: if
1152 1.1 leo * carrier detect drops, the receiver is disabled. Hence we
1153 1.1 leo * can only do this when the carrier is on.
1154 1.1 leo */
1155 1.66 tsutsui if ((cflag & CCTS_OFLOW) != 0 &&
1156 1.66 tsutsui (cs->cs_zc->zc_csr & ZSRR0_DCD) != 0)
1157 1.6 leo tmp |= ZSWR3_HFC;
1158 1.1 leo cs->cs_preg[3] = tmp;
1159 1.6 leo cs->cs_preg[5] = tmp5;
1160 1.1 leo
1161 1.1 leo /*
1162 1.1 leo * If nothing is being transmitted, set up new current values,
1163 1.1 leo * else mark them as pending.
1164 1.1 leo */
1165 1.66 tsutsui if (cs->cs_heldchange == 0) {
1166 1.66 tsutsui if ((cs->cs_ttyp->t_state & TS_BUSY) != 0) {
1167 1.1 leo cs->cs_heldtbc = cs->cs_tbc;
1168 1.1 leo cs->cs_tbc = 0;
1169 1.1 leo cs->cs_heldchange = 1;
1170 1.6 leo } else {
1171 1.63 tsutsui memcpy((void *)cs->cs_creg, (void *)cs->cs_preg, 16);
1172 1.1 leo zs_loadchannelregs(cs->cs_zc, cs->cs_creg);
1173 1.1 leo }
1174 1.1 leo }
1175 1.1 leo splx(s);
1176 1.66 tsutsui return 0;
1177 1.6 leo }
1178 1.6 leo
1179 1.6 leo /*
1180 1.6 leo * search for the best matching baudrate
1181 1.6 leo */
1182 1.6 leo static int
1183 1.66 tsutsui zsbaudrate(int unit, int wanted, int *divisor, int *clockmode, int *brgenmode,
1184 1.66 tsutsui int *timeconst)
1185 1.6 leo {
1186 1.66 tsutsui int bestdiff, bestbps, source;
1187 1.6 leo
1188 1.20 leo bestdiff = bestbps = 0;
1189 1.6 leo unit = (unit & 1) << 2;
1190 1.6 leo for (source = 0; source < 4; ++source) {
1191 1.71 tsutsui u_long freq = zs_frequencies[unit + source];
1192 1.66 tsutsui int diff, bps, div, clkm, brgm, tcon;
1193 1.20 leo
1194 1.20 leo bps = div = clkm = brgm = tcon = 0;
1195 1.6 leo switch (source) {
1196 1.66 tsutsui case 0: /* BRgen, PCLK */
1197 1.66 tsutsui brgm = ZSWR14_BAUD_ENA|ZSWR14_BAUD_FROM_PCLK;
1198 1.66 tsutsui break;
1199 1.66 tsutsui case 1: /* BRgen, RTxC */
1200 1.66 tsutsui brgm = ZSWR14_BAUD_ENA;
1201 1.66 tsutsui break;
1202 1.66 tsutsui case 2: /* RTxC */
1203 1.66 tsutsui clkm = ZSWR11_RXCLK_RTXC|ZSWR11_TXCLK_RTXC;
1204 1.66 tsutsui break;
1205 1.66 tsutsui case 3: /* TRxC */
1206 1.66 tsutsui clkm = ZSWR11_RXCLK_TRXC|ZSWR11_TXCLK_TRXC;
1207 1.66 tsutsui break;
1208 1.6 leo }
1209 1.6 leo switch (source) {
1210 1.66 tsutsui case 0:
1211 1.66 tsutsui case 1:
1212 1.66 tsutsui div = ZSWR4_CLK_X16;
1213 1.66 tsutsui clkm = ZSWR11_RXCLK_BAUD|ZSWR11_TXCLK_BAUD;
1214 1.66 tsutsui tcon = BPS_TO_TCONST(freq, wanted);
1215 1.66 tsutsui if (tcon < 0)
1216 1.66 tsutsui tcon = 0;
1217 1.66 tsutsui bps = TCONST_TO_BPS(freq, tcon);
1218 1.66 tsutsui break;
1219 1.66 tsutsui case 2:
1220 1.66 tsutsui case 3:
1221 1.66 tsutsui {
1222 1.66 tsutsui int b1 = freq / 16, d1 = abs(b1 - wanted);
1223 1.66 tsutsui int b2 = freq / 32, d2 = abs(b2 - wanted);
1224 1.66 tsutsui int b3 = freq / 64, d3 = abs(b3 - wanted);
1225 1.66 tsutsui
1226 1.66 tsutsui if (d1 < d2 && d1 < d3) {
1227 1.66 tsutsui div = ZSWR4_CLK_X16;
1228 1.66 tsutsui bps = b1;
1229 1.66 tsutsui } else if (d2 < d3 && d2 < d1) {
1230 1.66 tsutsui div = ZSWR4_CLK_X32;
1231 1.66 tsutsui bps = b2;
1232 1.66 tsutsui } else {
1233 1.66 tsutsui div = ZSWR4_CLK_X64;
1234 1.66 tsutsui bps = b3;
1235 1.6 leo }
1236 1.66 tsutsui brgm = tcon = 0;
1237 1.66 tsutsui break;
1238 1.66 tsutsui }
1239 1.6 leo }
1240 1.6 leo diff = abs(bps - wanted);
1241 1.6 leo if (!source || diff < bestdiff) {
1242 1.6 leo *divisor = div;
1243 1.6 leo *clockmode = clkm;
1244 1.6 leo *brgenmode = brgm;
1245 1.6 leo *timeconst = tcon;
1246 1.6 leo bestbps = bps;
1247 1.6 leo bestdiff = diff;
1248 1.6 leo if (diff == 0)
1249 1.6 leo break;
1250 1.6 leo }
1251 1.6 leo }
1252 1.6 leo /* Allow deviations upto 5% */
1253 1.6 leo if (20 * bestdiff > wanted)
1254 1.6 leo return -1;
1255 1.6 leo return bestbps;
1256 1.1 leo }
1257 1.1 leo
1258 1.1 leo /*
1259 1.1 leo * Raise or lower modem control (DTR/RTS) signals. If a character is
1260 1.1 leo * in transmission, the change is deferred.
1261 1.1 leo */
1262 1.1 leo static int
1263 1.61 dsl zs_modem(struct zs_chanstate *cs, int bits, int how)
1264 1.1 leo {
1265 1.1 leo int s, mbits;
1266 1.1 leo
1267 1.1 leo bits &= ZSWR5_DTR | ZSWR5_RTS;
1268 1.1 leo
1269 1.1 leo s = splzs();
1270 1.1 leo mbits = cs->cs_preg[5] & (ZSWR5_DTR | ZSWR5_RTS);
1271 1.1 leo
1272 1.66 tsutsui switch (how) {
1273 1.66 tsutsui case DMSET:
1274 1.66 tsutsui mbits = bits;
1275 1.66 tsutsui break;
1276 1.66 tsutsui case DMBIS:
1277 1.66 tsutsui mbits |= bits;
1278 1.66 tsutsui break;
1279 1.66 tsutsui case DMBIC:
1280 1.66 tsutsui mbits &= ~bits;
1281 1.66 tsutsui break;
1282 1.66 tsutsui case DMGET:
1283 1.66 tsutsui splx(s);
1284 1.66 tsutsui return mbits;
1285 1.1 leo }
1286 1.1 leo
1287 1.1 leo cs->cs_preg[5] = (cs->cs_preg[5] & ~(ZSWR5_DTR | ZSWR5_RTS)) | mbits;
1288 1.66 tsutsui if (cs->cs_heldchange == 0) {
1289 1.66 tsutsui if ((cs->cs_ttyp->t_state & TS_BUSY) != 0) {
1290 1.1 leo cs->cs_heldtbc = cs->cs_tbc;
1291 1.1 leo cs->cs_tbc = 0;
1292 1.1 leo cs->cs_heldchange = 1;
1293 1.66 tsutsui } else {
1294 1.1 leo ZS_WRITE(cs->cs_zc, 5, cs->cs_creg[5]);
1295 1.1 leo }
1296 1.1 leo }
1297 1.1 leo splx(s);
1298 1.66 tsutsui return 0;
1299 1.1 leo }
1300 1.1 leo
1301 1.1 leo /*
1302 1.1 leo * Write the given register set to the given zs channel in the proper order.
1303 1.1 leo * The channel must not be transmitting at the time. The receiver will
1304 1.1 leo * be disabled for the time it takes to write all the registers.
1305 1.1 leo */
1306 1.1 leo static void
1307 1.67 tsutsui zs_loadchannelregs(struct zschan *zc, uint8_t *reg)
1308 1.1 leo {
1309 1.1 leo int i;
1310 1.1 leo
1311 1.1 leo zc->zc_csr = ZSM_RESET_ERR; /* reset error condition */
1312 1.1 leo i = zc->zc_data; /* drain fifo */
1313 1.1 leo i = zc->zc_data;
1314 1.1 leo i = zc->zc_data;
1315 1.1 leo ZS_WRITE(zc, 4, reg[4]);
1316 1.1 leo ZS_WRITE(zc, 10, reg[10]);
1317 1.1 leo ZS_WRITE(zc, 3, reg[3] & ~ZSWR3_RX_ENABLE);
1318 1.1 leo ZS_WRITE(zc, 5, reg[5] & ~ZSWR5_TX_ENABLE);
1319 1.1 leo ZS_WRITE(zc, 1, reg[1]);
1320 1.1 leo ZS_WRITE(zc, 9, reg[9]);
1321 1.1 leo ZS_WRITE(zc, 11, reg[11]);
1322 1.1 leo ZS_WRITE(zc, 12, reg[12]);
1323 1.1 leo ZS_WRITE(zc, 13, reg[13]);
1324 1.1 leo ZS_WRITE(zc, 14, reg[14]);
1325 1.1 leo ZS_WRITE(zc, 15, reg[15]);
1326 1.1 leo ZS_WRITE(zc, 3, reg[3]);
1327 1.1 leo ZS_WRITE(zc, 5, reg[5]);
1328 1.1 leo }
1329 1.1 leo #endif /* NZS > 1 */
1330