tms320av110.c revision 1.18.28.1 1 1.18.28.1 ad /* $NetBSD: tms320av110.c,v 1.18.28.1 2007/02/27 14:16:03 ad Exp $ */
2 1.1 is
3 1.1 is /*-
4 1.18.28.1 ad * Copyright (c) 1997, 2007 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.10 lukem
46 1.10 lukem #include <sys/cdefs.h>
47 1.18.28.1 ad __KERNEL_RCSID(0, "$NetBSD: tms320av110.c,v 1.18.28.1 2007/02/27 14:16:03 ad Exp $");
48 1.1 is
49 1.1 is #include <sys/param.h>
50 1.1 is #include <sys/systm.h>
51 1.1 is #include <sys/kernel.h>
52 1.1 is #include <sys/device.h>
53 1.1 is #include <sys/proc.h>
54 1.1 is
55 1.1 is #include <sys/audioio.h>
56 1.1 is #include <dev/audio_if.h>
57 1.1 is
58 1.1 is #include <dev/ic/tms320av110reg.h>
59 1.1 is #include <dev/ic/tms320av110var.h>
60 1.1 is
61 1.1 is #include <machine/bus.h>
62 1.1 is
63 1.17 kent int tav_open(void *, int);
64 1.17 kent void tav_close(void *);
65 1.17 kent int tav_drain(void *);
66 1.17 kent int tav_query_encoding(void *, struct audio_encoding *);
67 1.17 kent int tav_set_params(void *, int, int, audio_params_t *, audio_params_t *,
68 1.17 kent stream_filter_list_t *, stream_filter_list_t *);
69 1.17 kent int tav_round_blocksize(void *, int, int, const audio_params_t *);
70 1.17 kent int tav_init_output(void *, void *, int);
71 1.17 kent int tav_start_output(void *, void *, int, void (*)(void *), void *);
72 1.17 kent int tav_start_input(void *, void *, int, void (*)(void *), void *);
73 1.17 kent int tav_halt_output(void *);
74 1.17 kent int tav_halt_input(void *);
75 1.17 kent int tav_speaker_ctl(void *, int);
76 1.17 kent int tav_getdev(void *, struct audio_device *);
77 1.17 kent int tav_setfd(void *, int);
78 1.17 kent int tav_set_port(void *, mixer_ctrl_t *);
79 1.17 kent int tav_get_port(void *, mixer_ctrl_t *);
80 1.17 kent int tav_query_devinfo(void *, mixer_devinfo_t *);
81 1.17 kent int tav_get_props(void *);
82 1.1 is
83 1.15 yamt const struct audio_hw_if tav_audio_if = {
84 1.1 is tav_open,
85 1.1 is tav_close,
86 1.1 is 0 /* tav_drain*/, /* optional */
87 1.1 is tav_query_encoding,
88 1.1 is tav_set_params,
89 1.1 is tav_round_blocksize,
90 1.1 is 0 /* commit_settings */, /* optional */
91 1.1 is tav_init_output, /* optional */
92 1.1 is 0 /* tav_init_input */, /* optional */
93 1.1 is tav_start_output,
94 1.1 is tav_start_input,
95 1.1 is tav_halt_output,
96 1.1 is tav_halt_input,
97 1.1 is tav_speaker_ctl, /* optional */
98 1.1 is tav_getdev,
99 1.1 is 0 /* setfd */, /* optional */
100 1.1 is tav_set_port,
101 1.1 is tav_get_port,
102 1.1 is tav_query_devinfo,
103 1.1 is 0 /* alloc */, /* optional */
104 1.1 is 0 /* free */, /* optional */
105 1.1 is 0 /* round_buffersize */, /* optional */
106 1.1 is 0 /* mappage */, /* optional */
107 1.9 augustss tav_get_props,
108 1.18.28.1 ad 0 /* dev_ioctl */ /* optional */,
109 1.18.28.1 ad tav_get_lock,
110 1.1 is };
111 1.1 is
112 1.1 is void
113 1.17 kent tms320av110_attach_mi(struct tav_softc *sc)
114 1.1 is {
115 1.17 kent bus_space_tag_t iot;
116 1.17 kent bus_space_handle_t ioh;
117 1.1 is
118 1.17 kent iot = sc->sc_iot;
119 1.17 kent ioh = sc->sc_ioh;
120 1.1 is tav_write_byte(iot, ioh, TAV_RESET, 1);
121 1.1 is while (tav_read_byte(iot, ioh, TAV_RESET))
122 1.1 is delay(250);
123 1.1 is
124 1.1 is tav_write_byte(iot, ioh, TAV_PCM_ORD, sc->sc_pcm_ord);
125 1.1 is tav_write_byte(iot, ioh, TAV_PCM_18, sc->sc_pcm_18);
126 1.1 is tav_write_byte(iot, ioh, TAV_DIF, sc->sc_dif);
127 1.1 is tav_write_byte(iot, ioh, TAV_PCM_DIV, sc->sc_pcm_div);
128 1.1 is
129 1.1 is printf(": chip rev. %d, %d bytes buffer\n",
130 1.1 is tav_read_byte(iot, ioh, TAV_VERSION),
131 1.1 is TAV_DRAM_SIZE(tav_read_byte(iot, ioh, TAV_DRAM_EXT)));
132 1.1 is
133 1.1 is tav_write_byte(iot, ioh, TAV_AUD_ID_EN, 0);
134 1.1 is tav_write_byte(iot, ioh, TAV_SKIP, 0);
135 1.1 is tav_write_byte(iot, ioh, TAV_REPEAT, 0);
136 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, 0);
137 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 1);
138 1.1 is tav_write_byte(iot, ioh, TAV_SYNC_ECM, 0);
139 1.1 is tav_write_byte(iot, ioh, TAV_CRC_ECM, 0);
140 1.1 is tav_write_byte(iot, ioh, TAV_ATTEN_L, 0);
141 1.1 is tav_write_byte(iot, ioh, TAV_ATTEN_R, 0);
142 1.3 is tav_write_short(iot, ioh, TAV_FREE_FORM, 0);
143 1.1 is tav_write_byte(iot, ioh, TAV_SIN_EN, 0);
144 1.1 is tav_write_byte(iot, ioh, TAV_SYNC_ECM, TAV_ECM_REPEAT);
145 1.1 is tav_write_byte(iot, ioh, TAV_CRC_ECM, TAV_ECM_REPEAT);
146 1.1 is
147 1.6 augustss audio_attach_mi(&tav_audio_if, sc, &sc->sc_dev);
148 1.1 is }
149 1.1 is
150 1.1 is int
151 1.17 kent tms320av110_intr(void *p)
152 1.1 is {
153 1.17 kent struct tav_softc *sc;
154 1.17 kent uint16_t intlist;
155 1.1 is
156 1.17 kent sc = p;
157 1.18.28.1 ad
158 1.18.28.1 ad mutex_enter(&sc->sc_lock);
159 1.18.28.1 ad
160 1.1 is intlist = tav_read_short(sc->sc_iot, sc->sc_ioh, TAV_INTR)
161 1.1 is /* & tav_read_short(sc->sc_iot, sc->sc_ioh, TAV_INTR_EN)*/;
162 1.1 is
163 1.18.28.1 ad if (!intlist) {
164 1.18.28.1 ad mutex_exit(&sc->sc_lock);
165 1.1 is return 0;
166 1.18.28.1 ad }
167 1.1 is
168 1.12 wiz /* ack now, so that we don't miss later interrupts */
169 1.1 is if (sc->sc_intack)
170 1.1 is (sc->sc_intack)(sc);
171 1.1 is
172 1.1 is if (intlist & TAV_INTR_LOWWATER) {
173 1.1 is (*sc->sc_intr)(sc->sc_intrarg);
174 1.1 is }
175 1.1 is
176 1.1 is if (intlist & TAV_INTR_PCM_OUTPUT_UNDERFLOW) {
177 1.1 is wakeup(sc);
178 1.1 is }
179 1.1 is
180 1.18.28.1 ad mutex_exit(&sc->sc_lock);
181 1.18.28.1 ad
182 1.1 is return 1;
183 1.1 is }
184 1.1 is
185 1.1 is struct audio_encoding tav_encodings[] = {
186 1.2 augustss {0, AudioEmpeg_l2_stream, AUDIO_ENCODING_MPEG_L2_STREAM, 1, 0,},
187 1.2 augustss {1, AudioEmpeg_l2_packets, AUDIO_ENCODING_MPEG_L2_PACKETS, 1, 0,},
188 1.4 is {2, AudioEmpeg_l2_system, AUDIO_ENCODING_MPEG_L2_SYSTEM, 1, 0,},
189 1.2 augustss {3, AudioEslinear_be, AUDIO_ENCODING_SLINEAR_BE, 16, 0,},
190 1.1 is };
191 1.1 is
192 1.1 is int
193 1.17 kent tav_open(void *hdl, int flags)
194 1.1 is {
195 1.17 kent
196 1.1 is /* dummy */
197 1.1 is return 0;
198 1.1 is }
199 1.1 is
200 1.1 is void
201 1.17 kent tav_close(void *hdl)
202 1.1 is {
203 1.17 kent struct tav_softc *sc;
204 1.1 is bus_space_tag_t iot;
205 1.1 is bus_space_handle_t ioh;
206 1.1 is
207 1.1 is sc = hdl;
208 1.1 is iot = sc->sc_iot;
209 1.1 is ioh = sc->sc_ioh;
210 1.1 is
211 1.12 wiz /* re"start" chip, also clears interrupts and interrupt enable */
212 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN, 0);
213 1.1 is if (sc->sc_intack)
214 1.1 is (*sc->sc_intack)(sc);
215 1.1 is }
216 1.1 is
217 1.1 is int
218 1.17 kent tav_drain(void *hdl)
219 1.1 is {
220 1.17 kent struct tav_softc *sc;
221 1.1 is bus_space_tag_t iot;
222 1.1 is bus_space_handle_t ioh;
223 1.1 is u_int16_t mask;
224 1.1 is
225 1.17 kent sc = hdl;
226 1.1 is iot = sc->sc_iot;
227 1.1 is ioh = sc->sc_ioh;
228 1.1 is
229 1.1 is /*
230 1.12 wiz * tsleep waiting for underflow interrupt.
231 1.1 is */
232 1.1 is if (tav_read_short(iot, ioh, TAV_BUFF)) {
233 1.1 is mask = tav_read_short(iot, ioh, TAV_INTR_EN);
234 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN,
235 1.1 is mask|TAV_INTR_PCM_OUTPUT_UNDERFLOW);
236 1.1 is
237 1.1 is /* still more than zero? */
238 1.1 is if (tav_read_short(iot, ioh, TAV_BUFF))
239 1.18.28.1 ad kpause("tavdrain", &sc->sc_lock, TRUE, 32*hz);
240 1.1 is
241 1.1 is /* can be really that long for mpeg */
242 1.1 is
243 1.1 is mask = tav_read_short(iot, ioh, TAV_INTR_EN);
244 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN,
245 1.1 is mask & ~TAV_INTR_PCM_OUTPUT_UNDERFLOW);
246 1.1 is }
247 1.17 kent
248 1.1 is return 0;
249 1.1 is }
250 1.1 is
251 1.1 is int
252 1.17 kent tav_query_encoding(void *hdl, struct audio_encoding *ae)
253 1.1 is {
254 1.17 kent struct tav_softc *sc;
255 1.1 is
256 1.1 is sc = hdl;
257 1.1 is if (ae->index >= sizeof(tav_encodings)/sizeof(*ae))
258 1.1 is return EINVAL;
259 1.1 is
260 1.1 is *ae = tav_encodings[ae->index];
261 1.1 is
262 1.1 is return 0;
263 1.1 is }
264 1.1 is
265 1.1 is int
266 1.17 kent tav_start_input(void *hdl, void *block, int bsize,
267 1.17 kent void (*intr)(void *), void *intrarg)
268 1.1 is {
269 1.17 kent
270 1.1 is return ENOTTY;
271 1.1 is }
272 1.1 is
273 1.1 is int
274 1.17 kent tav_halt_input(void *hdl)
275 1.1 is {
276 1.17 kent
277 1.1 is return ENOTTY;
278 1.1 is }
279 1.1 is
280 1.1 is int
281 1.17 kent tav_start_output(void *hdl, void *block, int bsize,
282 1.17 kent void (*intr)(void *), void *intrarg)
283 1.1 is {
284 1.17 kent struct tav_softc *sc;
285 1.1 is bus_space_tag_t iot;
286 1.1 is bus_space_handle_t ioh;
287 1.17 kent uint8_t *ptr;
288 1.1 is int count;
289 1.1 is
290 1.17 kent sc = hdl;
291 1.1 is iot = sc->sc_iot;
292 1.1 is ioh = sc->sc_ioh;
293 1.1 is ptr = block;
294 1.1 is count = bsize;
295 1.17 kent
296 1.1 is sc->sc_intr = intr;
297 1.1 is sc->sc_intrarg = intrarg;
298 1.1 is
299 1.5 is bus_space_write_multi_1(iot, ioh, TAV_DATAIN, ptr, count);
300 1.1 is tav_write_short(iot, ioh, TAV_INTR_EN, TAV_INTR_LOWWATER);
301 1.1 is
302 1.1 is return 0;
303 1.1 is }
304 1.1 is
305 1.1 is int
306 1.17 kent tav_init_output(void *hdl, void *buffer, int size)
307 1.1 is {
308 1.17 kent struct tav_softc *sc;
309 1.1 is bus_space_tag_t iot;
310 1.1 is bus_space_handle_t ioh;
311 1.1 is
312 1.17 kent sc = hdl;
313 1.1 is iot = sc->sc_iot;
314 1.1 is ioh = sc->sc_ioh;
315 1.1 is
316 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 1);
317 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, 0);
318 1.1 is
319 1.1 is return 0;
320 1.1 is }
321 1.1 is
322 1.1 is int
323 1.17 kent tav_halt_output(void *hdl)
324 1.1 is {
325 1.17 kent struct tav_softc *sc;
326 1.1 is bus_space_tag_t iot;
327 1.1 is bus_space_handle_t ioh;
328 1.1 is
329 1.17 kent sc = hdl;
330 1.1 is iot = sc->sc_iot;
331 1.1 is ioh = sc->sc_ioh;
332 1.1 is
333 1.1 is tav_write_byte(iot, ioh, TAV_PLAY, 0);
334 1.1 is
335 1.1 is return 0;
336 1.1 is }
337 1.1 is
338 1.1 is int
339 1.17 kent tav_getdev(void *hdl, struct audio_device *ret)
340 1.1 is {
341 1.17 kent struct tav_softc *sc;
342 1.1 is bus_space_tag_t iot;
343 1.1 is bus_space_handle_t ioh;
344 1.1 is
345 1.17 kent sc = hdl;
346 1.1 is iot = sc->sc_iot;
347 1.1 is ioh = sc->sc_ioh;
348 1.1 is
349 1.13 itojun strlcpy(ret->name, "tms320av110", sizeof(ret->name));
350 1.13 itojun /* guaranteed to be <= 4 in length */
351 1.13 itojun snprintf(ret->version, sizeof(ret->version), "%u",
352 1.1 is tav_read_byte(iot, ioh, TAV_VERSION));
353 1.13 itojun strlcpy(ret->config, sc->sc_dev.dv_xname, sizeof(ret->config));
354 1.1 is
355 1.1 is return 0;
356 1.1 is }
357 1.1 is
358 1.1 is int
359 1.17 kent tav_round_blocksize(void *hdl, int size, int mode, const audio_params_t *param)
360 1.1 is {
361 1.17 kent struct tav_softc *sc;
362 1.1 is bus_space_tag_t iot;
363 1.1 is bus_space_handle_t ioh;
364 1.1 is int maxhalf;
365 1.1 is
366 1.17 kent sc = hdl;
367 1.1 is iot = sc->sc_iot;
368 1.1 is ioh = sc->sc_ioh;
369 1.1 is
370 1.1 is maxhalf = TAV_DRAM_HSIZE(tav_read_byte(iot, ioh, TAV_DRAM_EXT));
371 1.1 is if (size > maxhalf)
372 1.1 is size = maxhalf;
373 1.1 is
374 1.1 is /* XXX should round to 128 bytes limits for audio bypass */
375 1.1 is size &= ~3;
376 1.1 is
377 1.1 is tav_write_short(iot, ioh, TAV_BALE_LIM, size/8);
378 1.1 is
379 1.1 is /* the buffer limits are in units of 4 bytes */
380 1.1 is return (size);
381 1.1 is }
382 1.1 is
383 1.1 is int
384 1.17 kent tav_get_props(void *hdl)
385 1.1 is {
386 1.1 is return 0;
387 1.1 is }
388 1.1 is
389 1.1 is int
390 1.17 kent tav_set_params(void *hdl, int setmode, int usemode, audio_params_t *p,
391 1.17 kent audio_params_t *r, stream_filter_list_t *pfil, stream_filter_list_t *rfil)
392 1.1 is {
393 1.16 kent struct tav_softc *sc;
394 1.1 is bus_space_tag_t iot;
395 1.1 is bus_space_handle_t ioh;
396 1.1 is
397 1.16 kent sc = hdl;
398 1.1 is iot = sc->sc_iot;
399 1.1 is ioh = sc->sc_ioh;
400 1.1 is
401 1.1 is if (!(setmode & AUMODE_PLAY))
402 1.1 is return 0;
403 1.1 is
404 1.1 is if (p->encoding == AUDIO_ENCODING_ULAW)
405 1.1 is p->encoding = AUDIO_ENCODING_MPEG_L2_STREAM;
406 1.1 is
407 1.1 is switch(p->encoding) {
408 1.1 is default:
409 1.1 is return EINVAL;
410 1.1 is
411 1.1 is case AUDIO_ENCODING_SLINEAR_BE:
412 1.1 is
413 1.17 kent /* XXX: todo: add 8bit and mono using software */
414 1.1 is p->precision = 16;
415 1.1 is p->channels = 2;
416 1.1 is
417 1.17 kent /* XXX: this might depend on the specific board.
418 1.1 is should be handled by the backend */
419 1.1 is
420 1.1 is p->sample_rate = 44100;
421 1.1 is
422 1.17 kent bus_space_write_1(iot, ioh, TAV_STR_SEL,
423 1.1 is TAV_STR_SEL_AUDIO_BYPASS);
424 1.1 is break;
425 1.1 is
426 1.1 is /* XXX: later: add ULINEAR, and LE using software encoding */
427 1.1 is
428 1.1 is case AUDIO_ENCODING_MPEG_L1_STREAM:
429 1.1 is /* FALLTHROUGH */
430 1.1 is case AUDIO_ENCODING_MPEG_L2_STREAM:
431 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
432 1.1 is TAV_STR_SEL_MPEG_AUDIO_STREAM);
433 1.1 is p->sample_rate = 44100;
434 1.1 is p->precision = 1;
435 1.1 is break;
436 1.1 is
437 1.1 is case AUDIO_ENCODING_MPEG_L1_PACKETS:
438 1.1 is /* FALLTHROUGH */
439 1.1 is case AUDIO_ENCODING_MPEG_L2_PACKETS:
440 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
441 1.1 is TAV_STR_SEL_MPEG_AUDIO_PACKETS);
442 1.1 is p->sample_rate = 44100;
443 1.1 is p->precision = 1;
444 1.1 is break;
445 1.1 is
446 1.1 is case AUDIO_ENCODING_MPEG_L1_SYSTEM:
447 1.1 is /* FALLTHROUGH */
448 1.1 is case AUDIO_ENCODING_MPEG_L2_SYSTEM:
449 1.1 is bus_space_write_1(iot, ioh, TAV_STR_SEL,
450 1.1 is TAV_STR_SEL_MPEG_SYSTEM_STREAM);
451 1.1 is p->sample_rate = 44100;
452 1.1 is p->precision = 1;
453 1.1 is break;
454 1.1 is }
455 1.1 is tav_write_byte(iot, ioh, TAV_RESTART, 1);
456 1.1 is do {
457 1.1 is delay(10);
458 1.1 is } while (tav_read_byte(iot, ioh, TAV_RESTART));
459 1.1 is
460 1.1 is return 0;
461 1.1 is }
462 1.1 is
463 1.1 is int
464 1.17 kent tav_set_port(void *hdl, mixer_ctrl_t *mc)
465 1.1 is {
466 1.17 kent struct tav_softc *sc;
467 1.1 is
468 1.1 is sc = hdl;
469 1.1 is /* dummy */
470 1.1 is return 0;
471 1.1 is }
472 1.1 is
473 1.1 is int
474 1.17 kent tav_get_port(void *hdl, mixer_ctrl_t *mc)
475 1.1 is {
476 1.17 kent struct tav_softc *sc;
477 1.1 is
478 1.1 is sc = hdl;
479 1.1 is /* dummy */
480 1.1 is return 0;
481 1.1 is }
482 1.1 is
483 1.1 is int
484 1.17 kent tav_query_devinfo(void *hdl, mixer_devinfo_t *di)
485 1.1 is {
486 1.2 augustss return ENXIO;
487 1.1 is }
488 1.1 is
489 1.1 is int
490 1.17 kent tav_speaker_ctl(void *hdl, int value)
491 1.1 is {
492 1.17 kent struct tav_softc *sc;
493 1.1 is bus_space_tag_t iot;
494 1.1 is bus_space_handle_t ioh;
495 1.1 is
496 1.1 is sc = hdl;
497 1.1 is iot = sc->sc_iot;
498 1.1 is ioh = sc->sc_ioh;
499 1.1 is
500 1.1 is tav_write_byte(iot, ioh, TAV_MUTE, !value);
501 1.1 is
502 1.1 is return 0;
503 1.1 is }
504