ppi.c revision 1.38.16.2 1 1.38.16.1 mjf /* $NetBSD: ppi.c,v 1.38.16.2 2008/06/02 13:22:06 mjf Exp $ */
2 1.15 thorpej
3 1.15 thorpej /*-
4 1.15 thorpej * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
5 1.15 thorpej * All rights reserved.
6 1.15 thorpej *
7 1.15 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.15 thorpej * by Jason R. Thorpe.
9 1.15 thorpej *
10 1.15 thorpej * Redistribution and use in source and binary forms, with or without
11 1.15 thorpej * modification, are permitted provided that the following conditions
12 1.15 thorpej * are met:
13 1.15 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.15 thorpej * notice, this list of conditions and the following disclaimer.
15 1.15 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.15 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.15 thorpej * documentation and/or other materials provided with the distribution.
18 1.15 thorpej *
19 1.15 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.15 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.15 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.15 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.15 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.15 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.15 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.15 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.15 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.15 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.15 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.15 thorpej */
31 1.6 cgd
32 1.1 cgd /*
33 1.5 mycroft * Copyright (c) 1982, 1990, 1993
34 1.5 mycroft * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.27 agc * 3. Neither the name of the University nor the names of its contributors
45 1.1 cgd * may be used to endorse or promote products derived from this software
46 1.1 cgd * without specific prior written permission.
47 1.1 cgd *
48 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 cgd * SUCH DAMAGE.
59 1.1 cgd *
60 1.6 cgd * @(#)ppi.c 8.1 (Berkeley) 6/16/93
61 1.1 cgd */
62 1.1 cgd
63 1.1 cgd /*
64 1.1 cgd * Printer/Plotter HPIB interface
65 1.1 cgd */
66 1.20 gmcgarry
67 1.20 gmcgarry #include <sys/cdefs.h>
68 1.38.16.1 mjf __KERNEL_RCSID(0, "$NetBSD: ppi.c,v 1.38.16.2 2008/06/02 13:22:06 mjf Exp $");
69 1.1 cgd
70 1.3 mycroft #include <sys/param.h>
71 1.3 mycroft #include <sys/systm.h>
72 1.18 thorpej #include <sys/callout.h>
73 1.12 scottr #include <sys/conf.h>
74 1.12 scottr #include <sys/device.h>
75 1.3 mycroft #include <sys/errno.h>
76 1.12 scottr #include <sys/malloc.h>
77 1.12 scottr #include <sys/proc.h>
78 1.3 mycroft #include <sys/uio.h>
79 1.11 thorpej
80 1.11 thorpej #include <hp300/dev/hpibvar.h>
81 1.1 cgd
82 1.3 mycroft #include <hp300/dev/ppiioctl.h>
83 1.1 cgd
84 1.30 tsutsui #include "ioconf.h"
85 1.30 tsutsui
86 1.1 cgd struct ppi_softc {
87 1.38.16.1 mjf device_t sc_dev;
88 1.1 cgd int sc_flags;
89 1.11 thorpej struct hpibqueue sc_hq; /* HP-IB job queue entry */
90 1.1 cgd struct ppiparam sc_param;
91 1.1 cgd #define sc_burst sc_param.burst
92 1.1 cgd #define sc_timo sc_param.timo
93 1.1 cgd #define sc_delay sc_param.delay
94 1.1 cgd int sc_sec;
95 1.11 thorpej int sc_slave; /* HP-IB slave address */
96 1.18 thorpej struct callout sc_timo_ch;
97 1.18 thorpej struct callout sc_start_ch;
98 1.11 thorpej };
99 1.1 cgd
100 1.1 cgd /* sc_flags values */
101 1.28 tsutsui #define PPIF_ALIVE 0x01
102 1.28 tsutsui #define PPIF_OPEN 0x02
103 1.1 cgd #define PPIF_UIO 0x04
104 1.1 cgd #define PPIF_TIMO 0x08
105 1.1 cgd #define PPIF_DELAY 0x10
106 1.1 cgd
107 1.38.16.1 mjf static int ppimatch(device_t, cfdata_t, void *);
108 1.38.16.1 mjf static void ppiattach(device_t, device_t, void *);
109 1.11 thorpej
110 1.38.16.1 mjf CFATTACH_DECL_NEW(ppi, sizeof(struct ppi_softc),
111 1.23 thorpej ppimatch, ppiattach, NULL, NULL);
112 1.11 thorpej
113 1.29 thorpej static dev_type_open(ppiopen);
114 1.29 thorpej static dev_type_close(ppiclose);
115 1.29 thorpej static dev_type_read(ppiread);
116 1.29 thorpej static dev_type_write(ppiwrite);
117 1.29 thorpej static dev_type_ioctl(ppiioctl);
118 1.21 gehenna
119 1.21 gehenna const struct cdevsw ppi_cdevsw = {
120 1.21 gehenna ppiopen, ppiclose, ppiread, ppiwrite, ppiioctl,
121 1.24 jdolecek nostop, notty, nopoll, nommap, nokqfilter,
122 1.21 gehenna };
123 1.21 gehenna
124 1.29 thorpej static void ppistart(void *);
125 1.29 thorpej static void ppinoop(void *);
126 1.11 thorpej
127 1.29 thorpej static void ppitimo(void *);
128 1.29 thorpej static int ppirw(dev_t, struct uio *);
129 1.29 thorpej static int ppihztoms(int);
130 1.29 thorpej static int ppimstohz(int);
131 1.11 thorpej
132 1.1 cgd #define UNIT(x) minor(x)
133 1.1 cgd
134 1.1 cgd #ifdef DEBUG
135 1.1 cgd int ppidebug = 0x80;
136 1.1 cgd #define PDB_FOLLOW 0x01
137 1.1 cgd #define PDB_IO 0x02
138 1.1 cgd #define PDB_NOCHECK 0x80
139 1.1 cgd #endif
140 1.1 cgd
141 1.29 thorpej static int
142 1.38.16.1 mjf ppimatch(device_t parent, cfdata_t cf, void *aux)
143 1.1 cgd {
144 1.11 thorpej struct hpibbus_attach_args *ha = aux;
145 1.11 thorpej
146 1.11 thorpej /*
147 1.11 thorpej * The printer/plotter doesn't return an ID tag.
148 1.11 thorpej * The check below prevents us from matching a CS80
149 1.11 thorpej * device by mistake.
150 1.11 thorpej */
151 1.11 thorpej if (ha->ha_id & 0x200)
152 1.34 tsutsui return 0;
153 1.1 cgd
154 1.1 cgd /*
155 1.11 thorpej * To prevent matching all unused slots on the bus, we
156 1.11 thorpej * don't allow wildcarded locators.
157 1.1 cgd */
158 1.38.16.1 mjf if (cf->hpibbuscf_slave == HPIBBUSCF_SLAVE_DEFAULT ||
159 1.38.16.1 mjf cf->hpibbuscf_punit == HPIBBUSCF_PUNIT_DEFAULT)
160 1.34 tsutsui return 0;
161 1.7 thorpej
162 1.34 tsutsui return 1;
163 1.7 thorpej }
164 1.7 thorpej
165 1.29 thorpej static void
166 1.38.16.1 mjf ppiattach(device_t parent, device_t self, void *aux)
167 1.7 thorpej {
168 1.38.16.1 mjf struct ppi_softc *sc = device_private(self);
169 1.11 thorpej struct hpibbus_attach_args *ha = aux;
170 1.7 thorpej
171 1.38.16.1 mjf sc->sc_dev = self;
172 1.38.16.1 mjf aprint_normal("\n");
173 1.7 thorpej
174 1.11 thorpej sc->sc_slave = ha->ha_slave;
175 1.11 thorpej
176 1.37 he callout_init(&sc->sc_timo_ch, 0);
177 1.37 he callout_init(&sc->sc_start_ch, 0);
178 1.18 thorpej
179 1.11 thorpej /* Initialize the hpib queue entry. */
180 1.11 thorpej sc->sc_hq.hq_softc = sc;
181 1.11 thorpej sc->sc_hq.hq_slave = sc->sc_slave;
182 1.11 thorpej sc->sc_hq.hq_start = ppistart;
183 1.11 thorpej sc->sc_hq.hq_go = ppinoop;
184 1.11 thorpej sc->sc_hq.hq_intr = ppinoop;
185 1.11 thorpej
186 1.1 cgd sc->sc_flags = PPIF_ALIVE;
187 1.1 cgd }
188 1.1 cgd
189 1.29 thorpej static void
190 1.29 thorpej ppinoop(void *arg)
191 1.11 thorpej {
192 1.11 thorpej /* Noop! */
193 1.11 thorpej }
194 1.11 thorpej
195 1.11 thorpej int
196 1.31 christos ppiopen(dev_t dev, int flags, int fmt, struct lwp *l)
197 1.1 cgd {
198 1.12 scottr int unit = UNIT(dev);
199 1.11 thorpej struct ppi_softc *sc;
200 1.11 thorpej
201 1.11 thorpej if (unit >= ppi_cd.cd_ndevs ||
202 1.38.16.1 mjf (sc = device_private(ppi_cd.cd_devs[unit])) == NULL ||
203 1.11 thorpej (sc->sc_flags & PPIF_ALIVE) == 0)
204 1.34 tsutsui return ENXIO;
205 1.1 cgd
206 1.1 cgd #ifdef DEBUG
207 1.1 cgd if (ppidebug & PDB_FOLLOW)
208 1.10 christos printf("ppiopen(%x, %x): flags %x\n",
209 1.1 cgd dev, flags, sc->sc_flags);
210 1.1 cgd #endif
211 1.1 cgd if (sc->sc_flags & PPIF_OPEN)
212 1.34 tsutsui return EBUSY;
213 1.1 cgd sc->sc_flags |= PPIF_OPEN;
214 1.1 cgd sc->sc_burst = PPI_BURST;
215 1.1 cgd sc->sc_timo = ppimstohz(PPI_TIMO);
216 1.1 cgd sc->sc_delay = ppimstohz(PPI_DELAY);
217 1.1 cgd sc->sc_sec = -1;
218 1.34 tsutsui return 0;
219 1.1 cgd }
220 1.1 cgd
221 1.29 thorpej static int
222 1.31 christos ppiclose(dev_t dev, int flags, int fmt, struct lwp *l)
223 1.1 cgd {
224 1.12 scottr int unit = UNIT(dev);
225 1.38.16.1 mjf struct ppi_softc *sc = device_private(ppi_cd.cd_devs[unit]);
226 1.1 cgd
227 1.1 cgd #ifdef DEBUG
228 1.1 cgd if (ppidebug & PDB_FOLLOW)
229 1.10 christos printf("ppiclose(%x, %x): flags %x\n",
230 1.1 cgd dev, flags, sc->sc_flags);
231 1.1 cgd #endif
232 1.1 cgd sc->sc_flags &= ~PPIF_OPEN;
233 1.34 tsutsui return 0;
234 1.1 cgd }
235 1.1 cgd
236 1.29 thorpej static void
237 1.29 thorpej ppistart(void *arg)
238 1.1 cgd {
239 1.11 thorpej struct ppi_softc *sc = arg;
240 1.11 thorpej
241 1.1 cgd #ifdef DEBUG
242 1.1 cgd if (ppidebug & PDB_FOLLOW)
243 1.38.16.1 mjf printf("ppistart(%x)\n", device_unit(sc->sc_dev));
244 1.1 cgd #endif
245 1.11 thorpej sc->sc_flags &= ~PPIF_DELAY;
246 1.11 thorpej wakeup(sc);
247 1.1 cgd }
248 1.1 cgd
249 1.29 thorpej static void
250 1.29 thorpej ppitimo(void *arg)
251 1.1 cgd {
252 1.11 thorpej struct ppi_softc *sc = arg;
253 1.11 thorpej
254 1.1 cgd #ifdef DEBUG
255 1.1 cgd if (ppidebug & PDB_FOLLOW)
256 1.38.16.1 mjf printf("ppitimo(%x)\n", device_unit(sc->sc_dev));
257 1.1 cgd #endif
258 1.11 thorpej sc->sc_flags &= ~(PPIF_UIO|PPIF_TIMO);
259 1.11 thorpej wakeup(sc);
260 1.1 cgd }
261 1.1 cgd
262 1.29 thorpej static int
263 1.29 thorpej ppiread(dev_t dev, struct uio *uio, int flags)
264 1.1 cgd {
265 1.1 cgd
266 1.1 cgd #ifdef DEBUG
267 1.1 cgd if (ppidebug & PDB_FOLLOW)
268 1.13 scottr printf("ppiread(%x, %p)\n", dev, uio);
269 1.1 cgd #endif
270 1.34 tsutsui return ppirw(dev, uio);
271 1.1 cgd }
272 1.1 cgd
273 1.29 thorpej static int
274 1.29 thorpej ppiwrite(dev_t dev, struct uio *uio, int flags)
275 1.1 cgd {
276 1.1 cgd
277 1.1 cgd #ifdef DEBUG
278 1.1 cgd if (ppidebug & PDB_FOLLOW)
279 1.13 scottr printf("ppiwrite(%x, %p)\n", dev, uio);
280 1.1 cgd #endif
281 1.34 tsutsui return ppirw(dev, uio);
282 1.1 cgd }
283 1.1 cgd
284 1.29 thorpej static int
285 1.29 thorpej ppirw(dev_t dev, struct uio *uio)
286 1.1 cgd {
287 1.1 cgd int unit = UNIT(dev);
288 1.38.16.1 mjf struct ppi_softc *sc = device_private(ppi_cd.cd_devs[unit]);
289 1.35 ad int s, s2, len, cnt;
290 1.12 scottr char *cp;
291 1.1 cgd int error = 0, gotdata = 0;
292 1.11 thorpej int buflen, ctlr, slave;
293 1.1 cgd char *buf;
294 1.1 cgd
295 1.1 cgd if (uio->uio_resid == 0)
296 1.34 tsutsui return 0;
297 1.1 cgd
298 1.38.16.1 mjf ctlr = device_unit(device_parent(sc->sc_dev));
299 1.11 thorpej slave = sc->sc_slave;
300 1.11 thorpej
301 1.1 cgd #ifdef DEBUG
302 1.1 cgd if (ppidebug & (PDB_FOLLOW|PDB_IO))
303 1.13 scottr printf("ppirw(%x, %p, %c): burst %d, timo %d, resid %x\n",
304 1.1 cgd dev, uio, uio->uio_rw == UIO_READ ? 'R' : 'W',
305 1.1 cgd sc->sc_burst, sc->sc_timo, uio->uio_resid);
306 1.1 cgd #endif
307 1.5 mycroft buflen = min(sc->sc_burst, uio->uio_resid);
308 1.1 cgd buf = (char *)malloc(buflen, M_DEVBUF, M_WAITOK);
309 1.1 cgd sc->sc_flags |= PPIF_UIO;
310 1.1 cgd if (sc->sc_timo > 0) {
311 1.1 cgd sc->sc_flags |= PPIF_TIMO;
312 1.18 thorpej callout_reset(&sc->sc_timo_ch, sc->sc_timo, ppitimo, sc);
313 1.1 cgd }
314 1.12 scottr len = cnt = 0;
315 1.1 cgd while (uio->uio_resid > 0) {
316 1.5 mycroft len = min(buflen, uio->uio_resid);
317 1.1 cgd cp = buf;
318 1.1 cgd if (uio->uio_rw == UIO_WRITE) {
319 1.1 cgd error = uiomove(cp, len, uio);
320 1.1 cgd if (error)
321 1.1 cgd break;
322 1.1 cgd }
323 1.1 cgd again:
324 1.35 ad s = splsoftclock();
325 1.35 ad s2 = splbio();
326 1.11 thorpej if ((sc->sc_flags & PPIF_UIO) &&
327 1.38.16.1 mjf hpibreq(device_parent(sc->sc_dev), &sc->sc_hq) == 0)
328 1.19 thorpej (void) tsleep(sc, PRIBIO + 1, "ppirw", 0);
329 1.1 cgd /*
330 1.1 cgd * Check if we timed out during sleep or uiomove
331 1.1 cgd */
332 1.35 ad splx(s2);
333 1.1 cgd if ((sc->sc_flags & PPIF_UIO) == 0) {
334 1.1 cgd #ifdef DEBUG
335 1.1 cgd if (ppidebug & PDB_IO)
336 1.10 christos printf("ppirw: uiomove/sleep timo, flags %x\n",
337 1.1 cgd sc->sc_flags);
338 1.1 cgd #endif
339 1.1 cgd if (sc->sc_flags & PPIF_TIMO) {
340 1.18 thorpej callout_stop(&sc->sc_timo_ch);
341 1.1 cgd sc->sc_flags &= ~PPIF_TIMO;
342 1.1 cgd }
343 1.1 cgd splx(s);
344 1.1 cgd break;
345 1.1 cgd }
346 1.1 cgd splx(s);
347 1.1 cgd /*
348 1.1 cgd * Perform the operation
349 1.1 cgd */
350 1.1 cgd if (uio->uio_rw == UIO_WRITE)
351 1.11 thorpej cnt = hpibsend(ctlr, slave, sc->sc_sec, cp, len);
352 1.1 cgd else
353 1.11 thorpej cnt = hpibrecv(ctlr, slave, sc->sc_sec, cp, len);
354 1.1 cgd s = splbio();
355 1.38.16.1 mjf hpibfree(device_parent(sc->sc_dev), &sc->sc_hq);
356 1.1 cgd #ifdef DEBUG
357 1.1 cgd if (ppidebug & PDB_IO)
358 1.13 scottr printf("ppirw: %s(%d, %d, %x, %p, %d) -> %d\n",
359 1.1 cgd uio->uio_rw == UIO_READ ? "recv" : "send",
360 1.11 thorpej ctlr, slave, sc->sc_sec, cp, len, cnt);
361 1.1 cgd #endif
362 1.1 cgd splx(s);
363 1.1 cgd if (uio->uio_rw == UIO_READ) {
364 1.1 cgd if (cnt) {
365 1.1 cgd error = uiomove(cp, cnt, uio);
366 1.1 cgd if (error)
367 1.1 cgd break;
368 1.1 cgd gotdata++;
369 1.1 cgd }
370 1.1 cgd /*
371 1.1 cgd * Didn't get anything this time, but did in the past.
372 1.1 cgd * Consider us done.
373 1.1 cgd */
374 1.1 cgd else if (gotdata)
375 1.1 cgd break;
376 1.1 cgd }
377 1.1 cgd s = splsoftclock();
378 1.1 cgd /*
379 1.1 cgd * Operation timeout (or non-blocking), quit now.
380 1.1 cgd */
381 1.1 cgd if ((sc->sc_flags & PPIF_UIO) == 0) {
382 1.1 cgd #ifdef DEBUG
383 1.1 cgd if (ppidebug & PDB_IO)
384 1.10 christos printf("ppirw: timeout/done\n");
385 1.1 cgd #endif
386 1.1 cgd splx(s);
387 1.1 cgd break;
388 1.1 cgd }
389 1.1 cgd /*
390 1.1 cgd * Implement inter-read delay
391 1.1 cgd */
392 1.1 cgd if (sc->sc_delay > 0) {
393 1.1 cgd sc->sc_flags |= PPIF_DELAY;
394 1.18 thorpej callout_reset(&sc->sc_start_ch, sc->sc_delay,
395 1.18 thorpej ppistart, sc);
396 1.12 scottr error = tsleep(sc, (PCATCH|PZERO) + 1, "hpib", 0);
397 1.1 cgd if (error) {
398 1.1 cgd splx(s);
399 1.1 cgd break;
400 1.1 cgd }
401 1.1 cgd }
402 1.1 cgd splx(s);
403 1.1 cgd /*
404 1.1 cgd * Must not call uiomove again til we've used all data
405 1.1 cgd * that we already grabbed.
406 1.1 cgd */
407 1.1 cgd if (uio->uio_rw == UIO_WRITE && cnt != len) {
408 1.1 cgd cp += cnt;
409 1.1 cgd len -= cnt;
410 1.1 cgd cnt = 0;
411 1.1 cgd goto again;
412 1.1 cgd }
413 1.1 cgd }
414 1.1 cgd s = splsoftclock();
415 1.1 cgd if (sc->sc_flags & PPIF_TIMO) {
416 1.18 thorpej callout_stop(&sc->sc_timo_ch);
417 1.1 cgd sc->sc_flags &= ~PPIF_TIMO;
418 1.1 cgd }
419 1.1 cgd if (sc->sc_flags & PPIF_DELAY) {
420 1.18 thorpej callout_stop(&sc->sc_start_ch);
421 1.1 cgd sc->sc_flags &= ~PPIF_DELAY;
422 1.1 cgd }
423 1.1 cgd splx(s);
424 1.1 cgd /*
425 1.1 cgd * Adjust for those chars that we uiomove'ed but never wrote
426 1.1 cgd */
427 1.1 cgd if (uio->uio_rw == UIO_WRITE && cnt != len) {
428 1.1 cgd uio->uio_resid += (len - cnt);
429 1.1 cgd #ifdef DEBUG
430 1.1 cgd if (ppidebug & PDB_IO)
431 1.10 christos printf("ppirw: short write, adjust by %d\n",
432 1.1 cgd len-cnt);
433 1.1 cgd #endif
434 1.1 cgd }
435 1.1 cgd free(buf, M_DEVBUF);
436 1.1 cgd #ifdef DEBUG
437 1.1 cgd if (ppidebug & (PDB_FOLLOW|PDB_IO))
438 1.10 christos printf("ppirw: return %d, resid %d\n", error, uio->uio_resid);
439 1.1 cgd #endif
440 1.34 tsutsui return error;
441 1.1 cgd }
442 1.1 cgd
443 1.29 thorpej static int
444 1.36 christos ppiioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
445 1.1 cgd {
446 1.38.16.1 mjf struct ppi_softc *sc = device_private(ppi_cd.cd_devs[UNIT(dev)]);
447 1.1 cgd struct ppiparam *pp, *upp;
448 1.1 cgd int error = 0;
449 1.1 cgd
450 1.1 cgd switch (cmd) {
451 1.1 cgd case PPIIOCGPARAM:
452 1.1 cgd pp = &sc->sc_param;
453 1.1 cgd upp = (struct ppiparam *)data;
454 1.1 cgd upp->burst = pp->burst;
455 1.1 cgd upp->timo = ppihztoms(pp->timo);
456 1.1 cgd upp->delay = ppihztoms(pp->delay);
457 1.1 cgd break;
458 1.1 cgd case PPIIOCSPARAM:
459 1.1 cgd pp = &sc->sc_param;
460 1.1 cgd upp = (struct ppiparam *)data;
461 1.1 cgd if (upp->burst < PPI_BURST_MIN || upp->burst > PPI_BURST_MAX ||
462 1.1 cgd upp->delay < PPI_DELAY_MIN || upp->delay > PPI_DELAY_MAX)
463 1.34 tsutsui return EINVAL;
464 1.1 cgd pp->burst = upp->burst;
465 1.1 cgd pp->timo = ppimstohz(upp->timo);
466 1.1 cgd pp->delay = ppimstohz(upp->delay);
467 1.1 cgd break;
468 1.1 cgd case PPIIOCSSEC:
469 1.1 cgd sc->sc_sec = *(int *)data;
470 1.1 cgd break;
471 1.1 cgd default:
472 1.34 tsutsui return EINVAL;
473 1.1 cgd }
474 1.34 tsutsui return error;
475 1.1 cgd }
476 1.1 cgd
477 1.29 thorpej static int
478 1.29 thorpej ppihztoms(int h)
479 1.1 cgd {
480 1.1 cgd extern int hz;
481 1.12 scottr int m = h;
482 1.1 cgd
483 1.1 cgd if (m > 0)
484 1.1 cgd m = m * 1000 / hz;
485 1.34 tsutsui return m;
486 1.1 cgd }
487 1.1 cgd
488 1.29 thorpej static int
489 1.29 thorpej ppimstohz(int m)
490 1.1 cgd {
491 1.1 cgd extern int hz;
492 1.12 scottr int h = m;
493 1.1 cgd
494 1.1 cgd if (h > 0) {
495 1.1 cgd h = h * hz / 1000;
496 1.1 cgd if (h == 0)
497 1.1 cgd h = 1000 / hz;
498 1.1 cgd }
499 1.34 tsutsui return h;
500 1.1 cgd }
501