tms320av110.c revision 1.7 1 1.7 is /* $NetBSD: tms320av110.c,v 1.7 1999/02/16 22:46:58 is Exp $ */
2 1.1 is
3 1.1 is /*-
4 1.7 is * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.7 is * All rights reserved.
6 1.7 is *
7 1.7 is * This code is derived from software contributed to The NetBSD Foundation
8 1.7 is * by Ignatios Souvatzis.
9 1.1 is *
10 1.1 is * Redistribution and use in source and binary forms, with or without
11 1.1 is * modification, are permitted provided that the following conditions
12 1.1 is * are met:
13 1.1 is * 1. Redistributions of source code must retain the above copyright
14 1.1 is * notice, this list of conditions and the following disclaimer.
15 1.1 is * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 is * notice, this list of conditions and the following disclaimer in the
17 1.1 is * documentation and/or other materials provided with the distribution.
18 1.7 is * 3. All advertising materials mentioning features or use of this software
19 1.7 is * must display the following acknowledgement:
20 1.7 is * This product includes software developed by the NetBSD
21 1.7 is * Foundation, Inc. and its contributors.
22 1.7 is * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.7 is * contributors may be used to endorse or promote products derived
24 1.7 is * from this software without specific prior written permission.
25 1.1 is *
26 1.7 is * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.7 is * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.7 is * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.7 is * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.7 is * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.7 is * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.7 is * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.7 is * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.7 is * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.7 is * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.7 is * POSSIBILITY OF SUCH DAMAGE.
37 1.1 is */
38 1.1 is
39 1.1 is /*
40 1.1 is * Machine independent part of TMS320AV110 driver.
41 1.1 is *
42 1.1 is * Currently, only minimum support for audio output. For audio/video
43 1.1 is * synchronization, more is needed.
44 1.1 is */
45 1.1 is
46 1.1 is #include <sys/types.h>
47 1.1 is #include <sys/param.h>
48 1.1 is #include <sys/systm.h>
49 1.1 is #include <sys/kernel.h>
50 1.1 is #include <sys/device.h>
51 1.1 is #include <sys/proc.h>
52 1.1 is
53 1.1 is #include <sys/audioio.h>
54 1.1 is #include <dev/audio_if.h>
55 1.1 is
56 1.1 is #include <dev/ic/tms320av110reg.h>
57 1.1 is #include <dev/ic/tms320av110var.h>
58 1.1 is
59 1.1 is #include <machine/bus.h>
60 1.1 is
61 1.1 is int tav_open __P((void*, int));
62 1.1 is void tav_close __P((void *));
63 1.1 is int tav_drain __P((void *));
64 1.1 is int tav_query_encoding __P((void *, struct audio_encoding *));
65 1.1 is int tav_set_params __P((void *, int, int, struct audio_params *,
66 1.1 is struct audio_params *));
67 1.1 is int tav_round_blocksize __P((void *, int));
68 1.1 is int tav_init_output __P((void *, void *, int));
69 1.1 is int tav_start_output __P((void *, void *, int, void (*)(void *), void *));
70 1.1 is int tav_start_input __P((void *, void *, int, void (*)(void *), void *));
71 1.1 is int tav_halt_output __P((void *));
72 1.1 is int tav_halt_input __P((void *));
73 1.1 is int tav_speaker_ctl __P((void *, int));
74 1.1 is int tav_getdev __P((void *, struct audio_device *));
75 1.1 is int tav_setfd __P((void *, int));
76 1.1 is int tav_set_port __P((void *, mixer_ctrl_t *));
77 1.1 is int tav_get_port __P((void *, mixer_ctrl_t *));
78 1.1 is int tav_query_devinfo __P((void *, mixer_devinfo_t *));
79 1.1 is int tav_get_props __P((void *));
80 1.1 is
81 1.1 is struct audio_hw_if tav_audio_if = {
82 1.1 is tav_open,
83 1.1 is tav_close,
84 1.1 is 0 /* tav_drain*/, /* optional */
85 1.1 is tav_query_encoding,
86 1.1 is tav_set_params,
87 1.1 is tav_round_blocksize,
88 1.1 is 0 /* commit_settings */, /* optional */
89 1.1 is tav_init_output, /* optional */
90 1.1 is 0 /* tav_init_input */, /* optional */
91 1.1 is tav_start_output,
92 1.1 is tav_start_input,
93 1.1 is tav_halt_output,
94 1.1 is tav_halt_input,
95 1.1 is tav_speaker_ctl, /* optional */
96 1.1 is tav_getdev,
97 1.1 is 0 /* setfd */, /* optional */
98 1.1 is tav_set_port,
99 1.1 is tav_get_port,
100 1.1 is tav_query_devinfo,
101 1.1 is 0 /* alloc */, /* optional */
102 1.1 is 0 /* free */, /* optional */
103 1.1 is 0 /* round_buffersize */, /* optional */
104 1.1 is 0 /* mappage */, /* optional */
105 1.1 is tav_get_props
106 1.1 is };
107 1.1 is
108 1.1 is void
109 1.1 is tms320av110_attach_mi(sc)
110 1.1 is struct tav_softc *sc;
111 1.1 is {
112 1.1 is bus_space_tag_t iot = sc->sc_iot;
113 1.1 is bus_space_handle_t ioh = sc->sc_ioh;
114 1.1 is
115 1.1 is tav_write_byte(iot, ioh, TAV_RESET, 1);
116 1.1 is while (tav_read_byte(iot, ioh, TAV_RESET))
117 1.1 is delay(250);
118 1.1 is
119 1.1 is tav_write_byte(iot, ioh, TAV_PCM_ORD, sc->sc_pcm_ord);
120 1.1 is tav_write_byte(iot, ioh, TAV_PCM_18, sc->sc_pcm_18);
121 1.1 is tav_write_byte(iot, ioh, TAV_DIF, sc->sc_dif);
122 1.1 is tav_write_byte(iot, ioh, TAV_PCM_DIV, sc->sc_pcm_div);
123 1.1 is
124 1.1 is printf(": chip rev. %d, %d bytes buffer\n",
125 1.1 is tav_read_byte(iot, ioh, TAV_VERSION),
126 1.1 is TAV_DRAM_SIZE(tav_read_byte(iot, ioh, TAV_DRAM_EXT)));
127 1.1 is
128 1.1 is tav_write_byte(iot, ioh, TAV_AUD_ID_EN, 0);
129 1.1 is tav_write_byte(iot, ioh, TAV_SKIP, 0);
130 1.1 is tav_write_byte(iot, ioh, TAV_REPEAT, 0);
131 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, 0);
132 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 1);
133 1.1 is tav_write_byte(iot, ioh, TAV_SYNC_ECM, 0);
134 1.1 is tav_write_byte(iot, ioh, TAV_CRC_ECM, 0);
135 1.1 is tav_write_byte(iot, ioh, TAV_ATTEN_L, 0);
136 1.1 is tav_write_byte(iot, ioh, TAV_ATTEN_R, 0);
137 1.3 is tav_write_short(iot, ioh, TAV_FREE_FORM, 0);
138 1.1 is tav_write_byte(iot, ioh, TAV_SIN_EN, 0);
139 1.1 is tav_write_byte(iot, ioh, TAV_SYNC_ECM, TAV_ECM_REPEAT);
140 1.1 is tav_write_byte(iot, ioh, TAV_CRC_ECM, TAV_ECM_REPEAT);
141 1.1 is
142 1.6 augustss audio_attach_mi(&tav_audio_if, sc, &sc->sc_dev);
143 1.1 is }
144 1.1 is
145 1.1 is int
146 1.1 is tms320av110_intr(p)
147 1.1 is void *p;
148 1.1 is {
149 1.1 is struct tav_softc *sc = p;
150 1.1 is u_int16_t intlist;
151 1.1 is
152 1.1 is intlist = tav_read_short(sc->sc_iot, sc->sc_ioh, TAV_INTR)
153 1.1 is /* & tav_read_short(sc->sc_iot, sc->sc_ioh, TAV_INTR_EN)*/;
154 1.1 is
155 1.1 is if (!intlist)
156 1.1 is return 0;
157 1.1 is
158 1.1 is /* ack now, so that we don't miss later interupts */
159 1.1 is if (sc->sc_intack)
160 1.1 is (sc->sc_intack)(sc);
161 1.1 is
162 1.1 is if (intlist & TAV_INTR_LOWWATER) {
163 1.1 is (*sc->sc_intr)(sc->sc_intrarg);
164 1.1 is }
165 1.1 is
166 1.1 is if (intlist & TAV_INTR_PCM_OUTPUT_UNDERFLOW) {
167 1.1 is wakeup(sc);
168 1.1 is }
169 1.1 is
170 1.1 is return 1;
171 1.1 is }
172 1.1 is
173 1.1 is struct audio_encoding tav_encodings[] = {
174 1.2 augustss {0, AudioEmpeg_l2_stream, AUDIO_ENCODING_MPEG_L2_STREAM, 1, 0,},
175 1.2 augustss {1, AudioEmpeg_l2_packets, AUDIO_ENCODING_MPEG_L2_PACKETS, 1, 0,},
176 1.4 is {2, AudioEmpeg_l2_system, AUDIO_ENCODING_MPEG_L2_SYSTEM, 1, 0,},
177 1.2 augustss {3, AudioEslinear_be, AUDIO_ENCODING_SLINEAR_BE, 16, 0,},
178 1.1 is };
179 1.1 is
180 1.1 is int
181 1.1 is tav_open(hdl, flags)
182 1.1 is void *hdl;
183 1.1 is int flags;
184 1.1 is {
185 1.1 is struct tav_softc *sc;
186 1.1 is
187 1.1 is sc = hdl;
188 1.1 is
189 1.1 is /* dummy */
190 1.1 is return 0;
191 1.1 is }
192 1.1 is
193 1.1 is void
194 1.1 is tav_close(hdl)
195 1.1 is void *hdl;
196 1.1 is {
197 1.1 is struct tav_softc *sc;
198 1.1 is bus_space_tag_t iot;
199 1.1 is bus_space_handle_t ioh;
200 1.1 is
201 1.1 is sc = hdl;
202 1.1 is iot = sc->sc_iot;
203 1.1 is ioh = sc->sc_ioh;
204 1.1 is
205 1.1 is /* re"start" chip, also clears interupts and interupt enable */
206 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN, 0);
207 1.1 is if (sc->sc_intack)
208 1.1 is (*sc->sc_intack)(sc);
209 1.1 is }
210 1.1 is
211 1.1 is int
212 1.1 is tav_drain(hdl)
213 1.1 is void *hdl;
214 1.1 is {
215 1.1 is struct tav_softc *sc;
216 1.1 is bus_space_tag_t iot;
217 1.1 is bus_space_handle_t ioh;
218 1.1 is u_int16_t mask;
219 1.1 is
220 1.1 is sc = hdl;
221 1.1 is iot = sc->sc_iot;
222 1.1 is ioh = sc->sc_ioh;
223 1.1 is
224 1.1 is /*
225 1.1 is * tsleep waiting for underflow interupt.
226 1.1 is */
227 1.1 is if (tav_read_short(iot, ioh, TAV_BUFF)) {
228 1.1 is mask = tav_read_short(iot, ioh, TAV_INTR_EN);
229 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN,
230 1.1 is mask|TAV_INTR_PCM_OUTPUT_UNDERFLOW);
231 1.1 is
232 1.1 is /* still more than zero? */
233 1.1 is if (tav_read_short(iot, ioh, TAV_BUFF))
234 1.1 is (void)tsleep(sc, PCATCH, "tavdrain", 32*hz);
235 1.1 is
236 1.1 is /* can be really that long for mpeg */
237 1.1 is
238 1.1 is mask = tav_read_short(iot, ioh, TAV_INTR_EN);
239 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN,
240 1.1 is mask & ~TAV_INTR_PCM_OUTPUT_UNDERFLOW);
241 1.1 is }
242 1.1 is
243 1.1 is return 0;
244 1.1 is }
245 1.1 is
246 1.1 is int
247 1.1 is tav_query_encoding(hdl, ae)
248 1.1 is void *hdl;
249 1.1 is struct audio_encoding *ae;
250 1.1 is {
251 1.1 is struct tav_softc *sc;
252 1.1 is
253 1.1 is sc = hdl;
254 1.1 is if (ae->index >= sizeof(tav_encodings)/sizeof(*ae))
255 1.1 is return EINVAL;
256 1.1 is
257 1.1 is *ae = tav_encodings[ae->index];
258 1.1 is
259 1.1 is return 0;
260 1.1 is }
261 1.1 is
262 1.1 is int
263 1.1 is tav_start_input(hdl, block, bsize, intr, intrarg)
264 1.1 is void *hdl;
265 1.1 is void *block;
266 1.1 is int bsize;
267 1.1 is void (*intr) __P((void *));
268 1.1 is void *intrarg;
269 1.1 is {
270 1.1 is return ENOTTY;
271 1.1 is }
272 1.1 is
273 1.1 is int
274 1.1 is tav_halt_input(hdl)
275 1.1 is void *hdl;
276 1.1 is {
277 1.1 is return ENOTTY;
278 1.1 is }
279 1.1 is
280 1.1 is int
281 1.1 is tav_start_output(hdl, block, bsize, intr, intrarg)
282 1.1 is void *hdl;
283 1.1 is void *block;
284 1.1 is int bsize;
285 1.1 is void (*intr) __P((void *));
286 1.1 is void *intrarg;
287 1.1 is {
288 1.1 is struct tav_softc *sc;
289 1.1 is bus_space_tag_t iot;
290 1.1 is bus_space_handle_t ioh;
291 1.1 is u_int8_t *ptr;
292 1.1 is int count;
293 1.1 is
294 1.1 is
295 1.1 is sc = hdl;
296 1.1 is iot = sc->sc_iot;
297 1.1 is ioh = sc->sc_ioh;
298 1.1 is ptr = block;
299 1.1 is count = bsize;
300 1.1 is
301 1.1 is sc->sc_intr = intr;
302 1.1 is sc->sc_intrarg = intrarg;
303 1.1 is
304 1.5 is bus_space_write_multi_1(iot, ioh, TAV_DATAIN, ptr, count);
305 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN, TAV_INTR_LOWWATER);
306 1.1 is
307 1.1 is return 0;
308 1.1 is }
309 1.1 is
310 1.1 is int
311 1.1 is tav_init_output(hdl, buffer, size)
312 1.1 is void *hdl;
313 1.1 is void *buffer;
314 1.1 is int size;
315 1.1 is {
316 1.1 is struct tav_softc *sc;
317 1.1 is bus_space_tag_t iot;
318 1.1 is bus_space_handle_t ioh;
319 1.1 is
320 1.1 is sc = hdl;
321 1.1 is iot = sc->sc_iot;
322 1.1 is ioh = sc->sc_ioh;
323 1.1 is
324 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 1);
325 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, 0);
326 1.1 is
327 1.1 is return 0;
328 1.1 is }
329 1.1 is
330 1.1 is int
331 1.1 is tav_halt_output(hdl)
332 1.1 is void *hdl;
333 1.1 is {
334 1.1 is struct tav_softc *sc;
335 1.1 is bus_space_tag_t iot;
336 1.1 is bus_space_handle_t ioh;
337 1.1 is
338 1.1 is sc = hdl;
339 1.1 is iot = sc->sc_iot;
340 1.1 is ioh = sc->sc_ioh;
341 1.1 is
342 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 0);
343 1.1 is
344 1.1 is return 0;
345 1.1 is }
346 1.1 is
347 1.1 is int
348 1.1 is tav_getdev(hdl, ret)
349 1.1 is void *hdl;
350 1.1 is struct audio_device *ret;
351 1.1 is {
352 1.1 is struct tav_softc *sc;
353 1.1 is bus_space_tag_t iot;
354 1.1 is bus_space_handle_t ioh;
355 1.1 is
356 1.1 is sc = hdl;
357 1.1 is iot = sc->sc_iot;
358 1.1 is ioh = sc->sc_ioh;
359 1.1 is
360 1.1 is strncpy(ret->name, "tms320av110", MAX_AUDIO_DEV_LEN);
361 1.1 is sprintf(ret->version, "%u", /* guaranteed to be <= 4 in length */
362 1.1 is tav_read_byte(iot, ioh, TAV_VERSION));
363 1.1 is strncpy(ret->config, sc->sc_dev.dv_xname, MAX_AUDIO_DEV_LEN);
364 1.1 is
365 1.1 is return 0;
366 1.1 is }
367 1.1 is
368 1.1 is int
369 1.1 is tav_round_blocksize(hdl, size)
370 1.1 is void *hdl;
371 1.1 is int size;
372 1.1 is {
373 1.1 is struct tav_softc *sc;
374 1.1 is bus_space_tag_t iot;
375 1.1 is bus_space_handle_t ioh;
376 1.1 is int maxhalf;
377 1.1 is
378 1.1 is sc = hdl;
379 1.1 is iot = sc->sc_iot;
380 1.1 is ioh = sc->sc_ioh;
381 1.1 is
382 1.1 is maxhalf = TAV_DRAM_HSIZE(tav_read_byte(iot, ioh, TAV_DRAM_EXT));
383 1.1 is if (size > maxhalf)
384 1.1 is size = maxhalf;
385 1.1 is
386 1.1 is /* XXX should round to 128 bytes limits for audio bypass */
387 1.1 is size &= ~3;
388 1.1 is
389 1.1 is tav_write_short(iot, ioh, TAV_BALE_LIM, size/8);
390 1.1 is
391 1.1 is /* the buffer limits are in units of 4 bytes */
392 1.1 is return (size);
393 1.1 is }
394 1.1 is
395 1.1 is int
396 1.1 is tav_get_props(hdl)
397 1.1 is void *hdl;
398 1.1 is {
399 1.1 is return 0;
400 1.1 is }
401 1.1 is
402 1.1 is int
403 1.1 is tav_set_params(hdl, setmode, usemode, p, r)
404 1.1 is void *hdl;
405 1.1 is int setmode, usemode;
406 1.1 is struct audio_params *p, *r;
407 1.1 is {
408 1.1 is struct tav_softc *sc;
409 1.1 is bus_space_tag_t iot;
410 1.1 is bus_space_handle_t ioh;
411 1.1 is
412 1.1 is sc = hdl;
413 1.1 is iot = sc->sc_iot;
414 1.1 is ioh = sc->sc_ioh;
415 1.1 is
416 1.1 is if (!(setmode & AUMODE_PLAY))
417 1.1 is return 0;
418 1.1 is
419 1.1 is if (p->encoding == AUDIO_ENCODING_ULAW)
420 1.1 is p->encoding = AUDIO_ENCODING_MPEG_L2_STREAM;
421 1.1 is
422 1.1 is switch(p->encoding) {
423 1.1 is default:
424 1.1 is return EINVAL;
425 1.1 is
426 1.1 is case AUDIO_ENCODING_SLINEAR_BE:
427 1.1 is
428 1.1 is /* XXX: todo: add 8bit and mono using software */
429 1.1 is p->precision = 16;
430 1.1 is p->channels = 2;
431 1.1 is
432 1.1 is /* XXX: this might depend on the specific board.
433 1.1 is should be handled by the backend */
434 1.1 is
435 1.1 is p->sample_rate = 44100;
436 1.1 is
437 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
438 1.1 is TAV_STR_SEL_AUDIO_BYPASS);
439 1.1 is break;
440 1.1 is
441 1.1 is /* XXX: later: add ULINEAR, and LE using software encoding */
442 1.1 is
443 1.1 is case AUDIO_ENCODING_MPEG_L1_STREAM:
444 1.1 is /* FALLTHROUGH */
445 1.1 is case AUDIO_ENCODING_MPEG_L2_STREAM:
446 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
447 1.1 is TAV_STR_SEL_MPEG_AUDIO_STREAM);
448 1.1 is p->sample_rate = 44100;
449 1.1 is p->precision = 1;
450 1.1 is break;
451 1.1 is
452 1.1 is case AUDIO_ENCODING_MPEG_L1_PACKETS:
453 1.1 is /* FALLTHROUGH */
454 1.1 is case AUDIO_ENCODING_MPEG_L2_PACKETS:
455 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
456 1.1 is TAV_STR_SEL_MPEG_AUDIO_PACKETS);
457 1.1 is p->sample_rate = 44100;
458 1.1 is p->precision = 1;
459 1.1 is break;
460 1.1 is
461 1.1 is case AUDIO_ENCODING_MPEG_L1_SYSTEM:
462 1.1 is /* FALLTHROUGH */
463 1.1 is case AUDIO_ENCODING_MPEG_L2_SYSTEM:
464 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
465 1.1 is TAV_STR_SEL_MPEG_SYSTEM_STREAM);
466 1.1 is p->sample_rate = 44100;
467 1.1 is p->precision = 1;
468 1.1 is break;
469 1.1 is }
470 1.1 is tav_write_byte(iot, ioh, TAV_RESTART, 1);
471 1.1 is do {
472 1.1 is delay(10);
473 1.1 is } while (tav_read_byte(iot, ioh, TAV_RESTART));
474 1.1 is
475 1.1 is return 0;
476 1.1 is }
477 1.1 is
478 1.1 is int
479 1.1 is tav_set_port(hdl, mc)
480 1.1 is void *hdl;
481 1.1 is mixer_ctrl_t *mc;
482 1.1 is {
483 1.1 is struct tav_softc *sc;
484 1.1 is
485 1.1 is sc = hdl;
486 1.1 is /* dummy */
487 1.1 is return 0;
488 1.1 is }
489 1.1 is
490 1.1 is int
491 1.1 is tav_get_port(hdl, mc)
492 1.1 is void *hdl;
493 1.1 is mixer_ctrl_t *mc;
494 1.1 is {
495 1.1 is struct tav_softc *sc;
496 1.1 is
497 1.1 is sc = hdl;
498 1.1 is /* dummy */
499 1.1 is return 0;
500 1.1 is }
501 1.1 is
502 1.1 is int
503 1.1 is tav_query_devinfo(hdl, di)
504 1.1 is void *hdl;
505 1.1 is mixer_devinfo_t *di;
506 1.1 is {
507 1.2 augustss return ENXIO;
508 1.1 is }
509 1.1 is
510 1.1 is int
511 1.1 is tav_speaker_ctl(hdl, value)
512 1.1 is void *hdl;
513 1.1 is int value;
514 1.1 is {
515 1.1 is struct tav_softc *sc;
516 1.1 is bus_space_tag_t iot;
517 1.1 is bus_space_handle_t ioh;
518 1.1 is
519 1.1 is sc = hdl;
520 1.1 is iot = sc->sc_iot;
521 1.1 is ioh = sc->sc_ioh;
522 1.1 is
523 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, !value);
524 1.1 is
525 1.1 is return 0;
526 1.1 is }
527