btsco.c revision 1.22.6.1 1 1.22.6.1 ad /* $NetBSD: btsco.c,v 1.22.6.1 2008/12/07 13:02:13 ad Exp $ */
2 1.1 tron
3 1.1 tron /*-
4 1.1 tron * Copyright (c) 2006 Itronix Inc.
5 1.1 tron * All rights reserved.
6 1.1 tron *
7 1.1 tron * Written by Iain Hibbert for Itronix Inc.
8 1.1 tron *
9 1.1 tron * Redistribution and use in source and binary forms, with or without
10 1.1 tron * modification, are permitted provided that the following conditions
11 1.1 tron * are met:
12 1.1 tron * 1. Redistributions of source code must retain the above copyright
13 1.1 tron * notice, this list of conditions and the following disclaimer.
14 1.1 tron * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 tron * notice, this list of conditions and the following disclaimer in the
16 1.1 tron * documentation and/or other materials provided with the distribution.
17 1.1 tron * 3. The name of Itronix Inc. may not be used to endorse
18 1.1 tron * or promote products derived from this software without specific
19 1.1 tron * prior written permission.
20 1.1 tron *
21 1.1 tron * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
22 1.1 tron * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 1.1 tron * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 1.1 tron * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
25 1.1 tron * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 1.1 tron * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 1.1 tron * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 1.1 tron * ON ANY THEORY OF LIABILITY, WHETHER IN
29 1.1 tron * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 1.1 tron * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 1.1 tron * POSSIBILITY OF SUCH DAMAGE.
32 1.1 tron */
33 1.1 tron
34 1.1 tron #include <sys/cdefs.h>
35 1.22.6.1 ad __KERNEL_RCSID(0, "$NetBSD: btsco.c,v 1.22.6.1 2008/12/07 13:02:13 ad Exp $");
36 1.1 tron
37 1.1 tron #include <sys/param.h>
38 1.1 tron #include <sys/audioio.h>
39 1.1 tron #include <sys/conf.h>
40 1.1 tron #include <sys/device.h>
41 1.1 tron #include <sys/fcntl.h>
42 1.1 tron #include <sys/kernel.h>
43 1.1 tron #include <sys/queue.h>
44 1.1 tron #include <sys/malloc.h>
45 1.1 tron #include <sys/mbuf.h>
46 1.1 tron #include <sys/proc.h>
47 1.22 plunky #include <sys/socketvar.h>
48 1.1 tron #include <sys/systm.h>
49 1.15 ad #include <sys/intr.h>
50 1.1 tron
51 1.1 tron #include <prop/proplib.h>
52 1.1 tron
53 1.1 tron #include <netbt/bluetooth.h>
54 1.1 tron #include <netbt/rfcomm.h>
55 1.1 tron #include <netbt/sco.h>
56 1.1 tron
57 1.1 tron #include <dev/audio_if.h>
58 1.1 tron #include <dev/auconv.h>
59 1.1 tron #include <dev/mulaw.h>
60 1.1 tron
61 1.1 tron #include <dev/bluetooth/btdev.h>
62 1.1 tron #include <dev/bluetooth/btsco.h>
63 1.1 tron
64 1.1 tron #undef DPRINTF
65 1.1 tron #undef DPRINTFN
66 1.1 tron
67 1.1 tron #ifdef BTSCO_DEBUG
68 1.1 tron int btsco_debug = BTSCO_DEBUG;
69 1.1 tron #define DPRINTF(fmt, args...) do { \
70 1.1 tron if (btsco_debug) \
71 1.1 tron printf("%s: "fmt, __func__ , ##args); \
72 1.1 tron } while (/* CONSTCOND */0)
73 1.1 tron
74 1.1 tron #define DPRINTFN(n, fmt, args...) do { \
75 1.1 tron if (btsco_debug > (n)) \
76 1.1 tron printf("%s: "fmt, __func__ , ##args); \
77 1.1 tron } while (/* CONSTCOND */0)
78 1.1 tron #else
79 1.1 tron #define DPRINTF(...)
80 1.1 tron #define DPRINTFN(...)
81 1.1 tron #endif
82 1.1 tron
83 1.1 tron /*****************************************************************************
84 1.1 tron *
85 1.1 tron * Bluetooth SCO Audio device
86 1.1 tron */
87 1.1 tron
88 1.1 tron /* btsco softc */
89 1.1 tron struct btsco_softc {
90 1.1 tron uint16_t sc_flags;
91 1.16 plunky const char *sc_name; /* our device_xname */
92 1.1 tron
93 1.16 plunky device_t sc_audio; /* MI audio device */
94 1.1 tron void *sc_intr; /* interrupt cookie */
95 1.20 ad kcondvar_t sc_connect; /* connect wait */
96 1.22.6.1 ad kmutex_t sc_intr_lock; /* for audio */
97 1.1 tron
98 1.1 tron /* Bluetooth */
99 1.1 tron bdaddr_t sc_laddr; /* local address */
100 1.1 tron bdaddr_t sc_raddr; /* remote address */
101 1.1 tron uint16_t sc_state; /* link state */
102 1.1 tron struct sco_pcb *sc_sco; /* SCO handle */
103 1.1 tron struct sco_pcb *sc_sco_l; /* SCO listen handle */
104 1.4 plunky uint16_t sc_mtu; /* SCO mtu */
105 1.1 tron uint8_t sc_channel; /* RFCOMM channel */
106 1.1 tron int sc_err; /* stored error */
107 1.1 tron
108 1.1 tron /* Receive */
109 1.1 tron int sc_rx_want; /* bytes wanted */
110 1.1 tron uint8_t *sc_rx_block; /* receive block */
111 1.1 tron void (*sc_rx_intr)(void *); /* callback */
112 1.1 tron void *sc_rx_intrarg; /* callback arg */
113 1.1 tron struct mbuf *sc_rx_mbuf; /* leftover mbuf */
114 1.1 tron
115 1.1 tron /* Transmit */
116 1.1 tron int sc_tx_size; /* bytes to send */
117 1.1 tron int sc_tx_pending; /* packets pending */
118 1.1 tron uint8_t *sc_tx_block; /* transmit block */
119 1.1 tron void (*sc_tx_intr)(void *); /* callback */
120 1.1 tron void *sc_tx_intrarg; /* callback arg */
121 1.1 tron void *sc_tx_buf; /* transmit buffer */
122 1.1 tron int sc_tx_refcnt; /* buffer refcnt */
123 1.1 tron
124 1.1 tron /* mixer data */
125 1.1 tron int sc_vgs; /* speaker volume */
126 1.1 tron int sc_vgm; /* mic volume */
127 1.1 tron };
128 1.1 tron
129 1.1 tron /* sc_state */
130 1.1 tron #define BTSCO_CLOSED 0
131 1.1 tron #define BTSCO_WAIT_CONNECT 1
132 1.1 tron #define BTSCO_OPEN 2
133 1.1 tron
134 1.1 tron /* sc_flags */
135 1.1 tron #define BTSCO_LISTEN (1 << 1)
136 1.1 tron
137 1.1 tron /* autoconf(9) glue */
138 1.16 plunky static int btsco_match(device_t, struct cfdata *, void *);
139 1.16 plunky static void btsco_attach(device_t, device_t, void *);
140 1.16 plunky static int btsco_detach(device_t, int);
141 1.1 tron
142 1.16 plunky CFATTACH_DECL_NEW(btsco, sizeof(struct btsco_softc),
143 1.1 tron btsco_match, btsco_attach, btsco_detach, NULL);
144 1.1 tron
145 1.1 tron /* audio(9) glue */
146 1.1 tron static int btsco_open(void *, int);
147 1.1 tron static void btsco_close(void *);
148 1.1 tron static int btsco_query_encoding(void *, struct audio_encoding *);
149 1.1 tron static int btsco_set_params(void *, int, int, audio_params_t *, audio_params_t *,
150 1.1 tron stream_filter_list_t *, stream_filter_list_t *);
151 1.1 tron static int btsco_round_blocksize(void *, int, int, const audio_params_t *);
152 1.1 tron static int btsco_start_output(void *, void *, int, void (*)(void *), void *);
153 1.1 tron static int btsco_start_input(void *, void *, int, void (*)(void *), void *);
154 1.1 tron static int btsco_halt_output(void *);
155 1.1 tron static int btsco_halt_input(void *);
156 1.1 tron static int btsco_getdev(void *, struct audio_device *);
157 1.1 tron static int btsco_setfd(void *, int);
158 1.1 tron static int btsco_set_port(void *, mixer_ctrl_t *);
159 1.1 tron static int btsco_get_port(void *, mixer_ctrl_t *);
160 1.1 tron static int btsco_query_devinfo(void *, mixer_devinfo_t *);
161 1.1 tron static void *btsco_allocm(void *, int, size_t, struct malloc_type *, int);
162 1.1 tron static void btsco_freem(void *, void *, struct malloc_type *);
163 1.1 tron static int btsco_get_props(void *);
164 1.12 christos static int btsco_dev_ioctl(void *, u_long, void *, int, struct lwp *);
165 1.22.6.1 ad static void btsco_get_locks(void *, kmutex_t **, kmutex_t **);
166 1.1 tron
167 1.1 tron static const struct audio_hw_if btsco_if = {
168 1.1 tron btsco_open, /* open */
169 1.1 tron btsco_close, /* close */
170 1.1 tron NULL, /* drain */
171 1.1 tron btsco_query_encoding, /* query_encoding */
172 1.1 tron btsco_set_params, /* set_params */
173 1.1 tron btsco_round_blocksize, /* round_blocksize */
174 1.1 tron NULL, /* commit_settings */
175 1.1 tron NULL, /* init_output */
176 1.1 tron NULL, /* init_input */
177 1.1 tron btsco_start_output, /* start_output */
178 1.1 tron btsco_start_input, /* start_input */
179 1.1 tron btsco_halt_output, /* halt_output */
180 1.1 tron btsco_halt_input, /* halt_input */
181 1.1 tron NULL, /* speaker_ctl */
182 1.1 tron btsco_getdev, /* getdev */
183 1.1 tron btsco_setfd, /* setfd */
184 1.7 plunky btsco_set_port, /* set_port */
185 1.7 plunky btsco_get_port, /* get_port */
186 1.1 tron btsco_query_devinfo, /* query_devinfo */
187 1.1 tron btsco_allocm, /* allocm */
188 1.1 tron btsco_freem, /* freem */
189 1.1 tron NULL, /* round_buffersize */
190 1.1 tron NULL, /* mappage */
191 1.1 tron btsco_get_props, /* get_props */
192 1.1 tron NULL, /* trigger_output */
193 1.1 tron NULL, /* trigger_input */
194 1.1 tron btsco_dev_ioctl, /* dev_ioctl */
195 1.1 tron NULL, /* powerstate */
196 1.22.6.1 ad btsco_get_locks, /* get_locks */
197 1.1 tron };
198 1.1 tron
199 1.1 tron static const struct audio_device btsco_device = {
200 1.1 tron "Bluetooth Audio",
201 1.1 tron "",
202 1.1 tron "btsco"
203 1.1 tron };
204 1.1 tron
205 1.8 plunky /* Voice_Setting == 0x0060: 8000Hz, mono, 16-bit, slinear_le */
206 1.8 plunky static const struct audio_format btsco_format = {
207 1.8 plunky NULL, /* driver_data */
208 1.8 plunky (AUMODE_PLAY | AUMODE_RECORD), /* mode */
209 1.8 plunky AUDIO_ENCODING_SLINEAR_LE, /* encoding */
210 1.8 plunky 16, /* validbits */
211 1.8 plunky 16, /* precision */
212 1.8 plunky 1, /* channels */
213 1.8 plunky AUFMT_MONAURAL, /* channel_mask */
214 1.8 plunky 1, /* frequency_type */
215 1.8 plunky { 8000 } /* frequency */
216 1.8 plunky };
217 1.8 plunky
218 1.1 tron /* bluetooth(9) glue for SCO */
219 1.1 tron static void btsco_sco_connecting(void *);
220 1.1 tron static void btsco_sco_connected(void *);
221 1.1 tron static void btsco_sco_disconnected(void *, int);
222 1.1 tron static void *btsco_sco_newconn(void *, struct sockaddr_bt *, struct sockaddr_bt *);
223 1.1 tron static void btsco_sco_complete(void *, int);
224 1.14 plunky static void btsco_sco_linkmode(void *, int);
225 1.1 tron static void btsco_sco_input(void *, struct mbuf *);
226 1.1 tron
227 1.1 tron static const struct btproto btsco_sco_proto = {
228 1.1 tron btsco_sco_connecting,
229 1.1 tron btsco_sco_connected,
230 1.1 tron btsco_sco_disconnected,
231 1.1 tron btsco_sco_newconn,
232 1.1 tron btsco_sco_complete,
233 1.14 plunky btsco_sco_linkmode,
234 1.1 tron btsco_sco_input,
235 1.1 tron };
236 1.1 tron
237 1.1 tron
238 1.1 tron /*****************************************************************************
239 1.1 tron *
240 1.1 tron * btsco definitions
241 1.1 tron */
242 1.1 tron
243 1.1 tron /*
244 1.1 tron * btsco mixer class
245 1.1 tron */
246 1.1 tron #define BTSCO_VGS 0
247 1.1 tron #define BTSCO_VGM 1
248 1.1 tron #define BTSCO_INPUT_CLASS 2
249 1.1 tron #define BTSCO_OUTPUT_CLASS 3
250 1.1 tron
251 1.1 tron /* connect timeout */
252 1.1 tron #define BTSCO_TIMEOUT (30 * hz)
253 1.1 tron
254 1.1 tron /* misc btsco functions */
255 1.12 christos static void btsco_extfree(struct mbuf *, void *, size_t, void *);
256 1.1 tron static void btsco_intr(void *);
257 1.1 tron
258 1.1 tron
259 1.1 tron /*****************************************************************************
260 1.1 tron *
261 1.1 tron * btsco autoconf(9) routines
262 1.1 tron */
263 1.1 tron
264 1.1 tron static int
265 1.16 plunky btsco_match(device_t self, struct cfdata *cfdata, void *aux)
266 1.1 tron {
267 1.1 tron prop_dictionary_t dict = aux;
268 1.1 tron prop_object_t obj;
269 1.1 tron
270 1.9 plunky obj = prop_dictionary_get(dict, BTDEVservice);
271 1.9 plunky if (prop_string_equals_cstring(obj, "HSET"))
272 1.9 plunky return 1;
273 1.9 plunky
274 1.9 plunky if (prop_string_equals_cstring(obj, "HF"))
275 1.9 plunky return 1;
276 1.9 plunky
277 1.9 plunky return 0;
278 1.1 tron }
279 1.1 tron
280 1.1 tron static void
281 1.16 plunky btsco_attach(device_t parent, device_t self, void *aux)
282 1.1 tron {
283 1.16 plunky struct btsco_softc *sc = device_private(self);
284 1.1 tron prop_dictionary_t dict = aux;
285 1.1 tron prop_object_t obj;
286 1.1 tron
287 1.1 tron /*
288 1.1 tron * Init softc
289 1.1 tron */
290 1.1 tron sc->sc_vgs = 200;
291 1.1 tron sc->sc_vgm = 200;
292 1.1 tron sc->sc_state = BTSCO_CLOSED;
293 1.16 plunky sc->sc_name = device_xname(self);
294 1.20 ad cv_init(&sc->sc_connect, "connect");
295 1.22.6.1 ad mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_SCHED);
296 1.1 tron
297 1.1 tron /*
298 1.1 tron * copy in our configuration info
299 1.1 tron */
300 1.3 plunky obj = prop_dictionary_get(dict, BTDEVladdr);
301 1.1 tron bdaddr_copy(&sc->sc_laddr, prop_data_data_nocopy(obj));
302 1.1 tron
303 1.3 plunky obj = prop_dictionary_get(dict, BTDEVraddr);
304 1.1 tron bdaddr_copy(&sc->sc_raddr, prop_data_data_nocopy(obj));
305 1.1 tron
306 1.9 plunky obj = prop_dictionary_get(dict, BTDEVservice);
307 1.9 plunky if (prop_string_equals_cstring(obj, "HF")) {
308 1.1 tron sc->sc_flags |= BTSCO_LISTEN;
309 1.2 plunky aprint_verbose(" listen mode");
310 1.1 tron }
311 1.1 tron
312 1.3 plunky obj = prop_dictionary_get(dict, BTSCOchannel);
313 1.3 plunky if (prop_object_type(obj) != PROP_TYPE_NUMBER
314 1.1 tron || prop_number_integer_value(obj) < RFCOMM_CHANNEL_MIN
315 1.1 tron || prop_number_integer_value(obj) > RFCOMM_CHANNEL_MAX) {
316 1.3 plunky aprint_error(" invalid %s", BTSCOchannel);
317 1.1 tron return;
318 1.1 tron }
319 1.1 tron sc->sc_channel = prop_number_integer_value(obj);
320 1.1 tron
321 1.1 tron aprint_verbose(" channel %d", sc->sc_channel);
322 1.1 tron aprint_normal("\n");
323 1.1 tron
324 1.1 tron DPRINTF("sc=%p\n", sc);
325 1.1 tron
326 1.1 tron /*
327 1.1 tron * set up transmit interrupt
328 1.1 tron */
329 1.15 ad sc->sc_intr = softint_establish(SOFTINT_NET, btsco_intr, sc);
330 1.1 tron if (sc->sc_intr == NULL) {
331 1.16 plunky aprint_error_dev(self, "softint_establish failed\n");
332 1.1 tron return;
333 1.1 tron }
334 1.1 tron
335 1.1 tron /*
336 1.1 tron * attach audio device
337 1.1 tron */
338 1.16 plunky sc->sc_audio = audio_attach_mi(&btsco_if, sc, self);
339 1.1 tron if (sc->sc_audio == NULL) {
340 1.16 plunky aprint_error_dev(self, "audio_attach_mi failed\n");
341 1.1 tron return;
342 1.1 tron }
343 1.1 tron }
344 1.1 tron
345 1.1 tron static int
346 1.16 plunky btsco_detach(device_t self, int flags)
347 1.1 tron {
348 1.16 plunky struct btsco_softc *sc = device_private(self);
349 1.1 tron
350 1.1 tron DPRINTF("sc=%p\n", sc);
351 1.1 tron
352 1.20 ad mutex_enter(bt_lock);
353 1.1 tron if (sc->sc_sco != NULL) {
354 1.1 tron DPRINTF("sc_sco=%p\n", sc->sc_sco);
355 1.1 tron sco_disconnect(sc->sc_sco, 0);
356 1.1 tron sco_detach(&sc->sc_sco);
357 1.1 tron sc->sc_sco = NULL;
358 1.1 tron }
359 1.1 tron
360 1.1 tron if (sc->sc_sco_l != NULL) {
361 1.1 tron DPRINTF("sc_sco_l=%p\n", sc->sc_sco_l);
362 1.1 tron sco_detach(&sc->sc_sco_l);
363 1.1 tron sc->sc_sco_l = NULL;
364 1.1 tron }
365 1.20 ad mutex_exit(bt_lock);
366 1.1 tron
367 1.1 tron if (sc->sc_audio != NULL) {
368 1.1 tron DPRINTF("sc_audio=%p\n", sc->sc_audio);
369 1.1 tron config_detach(sc->sc_audio, flags);
370 1.1 tron sc->sc_audio = NULL;
371 1.1 tron }
372 1.1 tron
373 1.1 tron if (sc->sc_intr != NULL) {
374 1.15 ad softint_disestablish(sc->sc_intr);
375 1.1 tron sc->sc_intr = NULL;
376 1.1 tron }
377 1.1 tron
378 1.1 tron if (sc->sc_rx_mbuf != NULL) {
379 1.1 tron m_freem(sc->sc_rx_mbuf);
380 1.1 tron sc->sc_rx_mbuf = NULL;
381 1.1 tron }
382 1.1 tron
383 1.1 tron if (sc->sc_tx_refcnt > 0) {
384 1.16 plunky aprint_error_dev(self, "tx_refcnt=%d!\n", sc->sc_tx_refcnt);
385 1.1 tron
386 1.1 tron if ((flags & DETACH_FORCE) == 0)
387 1.1 tron return EAGAIN;
388 1.1 tron }
389 1.1 tron
390 1.20 ad cv_destroy(&sc->sc_connect);
391 1.22.6.1 ad mutex_destroy(&sc->sc_intr_lock);
392 1.20 ad
393 1.1 tron return 0;
394 1.1 tron }
395 1.1 tron
396 1.1 tron /*****************************************************************************
397 1.1 tron *
398 1.1 tron * bluetooth(9) methods for SCO
399 1.1 tron *
400 1.1 tron * All these are called from Bluetooth Protocol code, in a soft
401 1.1 tron * interrupt context at IPL_SOFTNET.
402 1.1 tron */
403 1.1 tron
404 1.1 tron static void
405 1.11 christos btsco_sco_connecting(void *arg)
406 1.1 tron {
407 1.1 tron /* struct btsco_softc *sc = arg; */
408 1.1 tron
409 1.1 tron /* dont care */
410 1.1 tron }
411 1.1 tron
412 1.1 tron static void
413 1.1 tron btsco_sco_connected(void *arg)
414 1.1 tron {
415 1.1 tron struct btsco_softc *sc = arg;
416 1.1 tron
417 1.16 plunky DPRINTF("%s\n", sc->sc_name);
418 1.1 tron
419 1.1 tron KASSERT(sc->sc_sco != NULL);
420 1.1 tron KASSERT(sc->sc_state == BTSCO_WAIT_CONNECT);
421 1.1 tron
422 1.2 plunky /*
423 1.2 plunky * If we are listening, no more need
424 1.2 plunky */
425 1.2 plunky if (sc->sc_sco_l != NULL)
426 1.2 plunky sco_detach(&sc->sc_sco_l);
427 1.2 plunky
428 1.1 tron sc->sc_state = BTSCO_OPEN;
429 1.20 ad cv_broadcast(&sc->sc_connect);
430 1.1 tron }
431 1.1 tron
432 1.1 tron static void
433 1.1 tron btsco_sco_disconnected(void *arg, int err)
434 1.1 tron {
435 1.1 tron struct btsco_softc *sc = arg;
436 1.1 tron
437 1.16 plunky DPRINTF("%s sc_state %d\n", sc->sc_name, sc->sc_state);
438 1.1 tron
439 1.1 tron KASSERT(sc->sc_sco != NULL);
440 1.1 tron
441 1.1 tron sc->sc_err = err;
442 1.1 tron sco_detach(&sc->sc_sco);
443 1.1 tron
444 1.1 tron switch (sc->sc_state) {
445 1.1 tron case BTSCO_CLOSED: /* dont think this can happen */
446 1.1 tron break;
447 1.1 tron
448 1.1 tron case BTSCO_WAIT_CONNECT: /* connect failed */
449 1.20 ad cv_broadcast(&sc->sc_connect);
450 1.1 tron break;
451 1.1 tron
452 1.1 tron case BTSCO_OPEN: /* link lost */
453 1.2 plunky /*
454 1.2 plunky * If IO is in progress, tell the audio driver that it
455 1.2 plunky * has completed so that when it tries to send more, we
456 1.2 plunky * can indicate an error.
457 1.2 plunky */
458 1.22.6.1 ad mutex_spin_enter(&sc->sc_intr_lock);
459 1.2 plunky if (sc->sc_tx_pending > 0) {
460 1.2 plunky sc->sc_tx_pending = 0;
461 1.2 plunky (*sc->sc_tx_intr)(sc->sc_tx_intrarg);
462 1.2 plunky }
463 1.2 plunky if (sc->sc_rx_want > 0) {
464 1.2 plunky sc->sc_rx_want = 0;
465 1.2 plunky (*sc->sc_rx_intr)(sc->sc_rx_intrarg);
466 1.2 plunky }
467 1.22.6.1 ad mutex_spin_exit(&sc->sc_intr_lock);
468 1.1 tron break;
469 1.1 tron
470 1.1 tron default:
471 1.1 tron UNKNOWN(sc->sc_state);
472 1.1 tron }
473 1.1 tron
474 1.1 tron sc->sc_state = BTSCO_CLOSED;
475 1.1 tron }
476 1.1 tron
477 1.1 tron static void *
478 1.11 christos btsco_sco_newconn(void *arg, struct sockaddr_bt *laddr,
479 1.10 christos struct sockaddr_bt *raddr)
480 1.1 tron {
481 1.1 tron struct btsco_softc *sc = arg;
482 1.1 tron
483 1.16 plunky DPRINTF("%s\n", sc->sc_name);
484 1.16 plunky
485 1.1 tron if (bdaddr_same(&raddr->bt_bdaddr, &sc->sc_raddr) == 0
486 1.1 tron || sc->sc_state != BTSCO_WAIT_CONNECT
487 1.1 tron || sc->sc_sco != NULL)
488 1.1 tron return NULL;
489 1.1 tron
490 1.1 tron sco_attach(&sc->sc_sco, &btsco_sco_proto, sc);
491 1.1 tron return sc->sc_sco;
492 1.1 tron }
493 1.1 tron
494 1.1 tron static void
495 1.1 tron btsco_sco_complete(void *arg, int count)
496 1.1 tron {
497 1.1 tron struct btsco_softc *sc = arg;
498 1.1 tron
499 1.16 plunky DPRINTFN(10, "%s count %d\n", sc->sc_name, count);
500 1.1 tron
501 1.22.6.1 ad mutex_spin_enter(&sc->sc_intr_lock);
502 1.1 tron if (sc->sc_tx_pending > 0) {
503 1.1 tron sc->sc_tx_pending -= count;
504 1.1 tron if (sc->sc_tx_pending == 0)
505 1.1 tron (*sc->sc_tx_intr)(sc->sc_tx_intrarg);
506 1.1 tron }
507 1.22.6.1 ad mutex_spin_exit(&sc->sc_intr_lock);
508 1.1 tron }
509 1.1 tron
510 1.1 tron static void
511 1.14 plunky btsco_sco_linkmode(void *arg, int new)
512 1.14 plunky {
513 1.14 plunky /* struct btsco_softc *sc = arg; */
514 1.14 plunky
515 1.14 plunky /* dont care */
516 1.14 plunky }
517 1.14 plunky
518 1.14 plunky static void
519 1.1 tron btsco_sco_input(void *arg, struct mbuf *m)
520 1.1 tron {
521 1.1 tron struct btsco_softc *sc = arg;
522 1.22.6.1 ad int len;
523 1.1 tron
524 1.16 plunky DPRINTFN(10, "%s len=%d\n", sc->sc_name, m->m_pkthdr.len);
525 1.1 tron
526 1.22.6.1 ad mutex_spin_enter(&sc->sc_intr_lock);
527 1.1 tron if (sc->sc_rx_want == 0) {
528 1.1 tron m_freem(m);
529 1.1 tron } else {
530 1.1 tron KASSERT(sc->sc_rx_intr != NULL);
531 1.1 tron KASSERT(sc->sc_rx_block != NULL);
532 1.1 tron
533 1.1 tron len = MIN(sc->sc_rx_want, m->m_pkthdr.len);
534 1.1 tron m_copydata(m, 0, len, sc->sc_rx_block);
535 1.1 tron
536 1.1 tron sc->sc_rx_want -= len;
537 1.1 tron sc->sc_rx_block += len;
538 1.1 tron
539 1.1 tron if (len > m->m_pkthdr.len) {
540 1.1 tron if (sc->sc_rx_mbuf != NULL)
541 1.1 tron m_freem(sc->sc_rx_mbuf);
542 1.1 tron
543 1.1 tron m_adj(m, len);
544 1.1 tron sc->sc_rx_mbuf = m;
545 1.1 tron } else {
546 1.1 tron m_freem(m);
547 1.1 tron }
548 1.1 tron
549 1.1 tron if (sc->sc_rx_want == 0)
550 1.1 tron (*sc->sc_rx_intr)(sc->sc_rx_intrarg);
551 1.1 tron }
552 1.22.6.1 ad mutex_spin_exit(&sc->sc_intr_lock);
553 1.1 tron }
554 1.1 tron
555 1.1 tron
556 1.1 tron /*****************************************************************************
557 1.1 tron *
558 1.1 tron * audio(9) methods
559 1.1 tron *
560 1.1 tron */
561 1.1 tron
562 1.1 tron static int
563 1.11 christos btsco_open(void *hdl, int flags)
564 1.1 tron {
565 1.1 tron struct sockaddr_bt sa;
566 1.1 tron struct btsco_softc *sc = hdl;
567 1.22 plunky struct sockopt sopt;
568 1.20 ad int err, timo;
569 1.1 tron
570 1.16 plunky DPRINTF("%s flags 0x%x\n", sc->sc_name, flags);
571 1.1 tron /* flags FREAD & FWRITE? */
572 1.1 tron
573 1.1 tron if (sc->sc_sco != NULL || sc->sc_sco_l != NULL)
574 1.1 tron return EIO;
575 1.1 tron
576 1.20 ad mutex_enter(bt_lock);
577 1.1 tron
578 1.1 tron memset(&sa, 0, sizeof(sa));
579 1.1 tron sa.bt_len = sizeof(sa);
580 1.1 tron sa.bt_family = AF_BLUETOOTH;
581 1.1 tron bdaddr_copy(&sa.bt_bdaddr, &sc->sc_laddr);
582 1.1 tron
583 1.1 tron if (sc->sc_flags & BTSCO_LISTEN) {
584 1.1 tron err = sco_attach(&sc->sc_sco_l, &btsco_sco_proto, sc);
585 1.1 tron if (err)
586 1.1 tron goto done;
587 1.1 tron
588 1.1 tron err = sco_bind(sc->sc_sco_l, &sa);
589 1.1 tron if (err) {
590 1.1 tron sco_detach(&sc->sc_sco_l);
591 1.1 tron goto done;
592 1.1 tron }
593 1.1 tron
594 1.1 tron err = sco_listen(sc->sc_sco_l);
595 1.1 tron if (err) {
596 1.1 tron sco_detach(&sc->sc_sco_l);
597 1.1 tron goto done;
598 1.1 tron }
599 1.2 plunky
600 1.2 plunky timo = 0; /* no timeout */
601 1.1 tron } else {
602 1.1 tron err = sco_attach(&sc->sc_sco, &btsco_sco_proto, sc);
603 1.1 tron if (err)
604 1.1 tron goto done;
605 1.1 tron
606 1.1 tron err = sco_bind(sc->sc_sco, &sa);
607 1.1 tron if (err) {
608 1.1 tron sco_detach(&sc->sc_sco);
609 1.1 tron goto done;
610 1.1 tron }
611 1.1 tron
612 1.1 tron bdaddr_copy(&sa.bt_bdaddr, &sc->sc_raddr);
613 1.1 tron err = sco_connect(sc->sc_sco, &sa);
614 1.1 tron if (err) {
615 1.1 tron sco_detach(&sc->sc_sco);
616 1.1 tron goto done;
617 1.1 tron }
618 1.2 plunky
619 1.2 plunky timo = BTSCO_TIMEOUT;
620 1.1 tron }
621 1.1 tron
622 1.1 tron sc->sc_state = BTSCO_WAIT_CONNECT;
623 1.1 tron while (err == 0 && sc->sc_state == BTSCO_WAIT_CONNECT)
624 1.20 ad err = cv_timedwait_sig(&sc->sc_connect, bt_lock, timo);
625 1.1 tron
626 1.1 tron switch (sc->sc_state) {
627 1.1 tron case BTSCO_CLOSED: /* disconnected */
628 1.1 tron err = sc->sc_err;
629 1.1 tron
630 1.1 tron /* fall through to */
631 1.1 tron case BTSCO_WAIT_CONNECT: /* error */
632 1.1 tron if (sc->sc_sco != NULL)
633 1.1 tron sco_detach(&sc->sc_sco);
634 1.1 tron
635 1.1 tron if (sc->sc_sco_l != NULL)
636 1.1 tron sco_detach(&sc->sc_sco_l);
637 1.1 tron
638 1.1 tron break;
639 1.1 tron
640 1.1 tron case BTSCO_OPEN: /* hurrah */
641 1.22 plunky sockopt_init(&sopt, BTPROTO_SCO, SO_SCO_MTU, 0);
642 1.22 plunky (void)sco_getopt(sc->sc_sco, &sopt);
643 1.22 plunky (void)sockopt_get(&sopt, &sc->sc_mtu, sizeof(sc->sc_mtu));
644 1.22 plunky sockopt_destroy(&sopt);
645 1.1 tron break;
646 1.1 tron
647 1.1 tron default:
648 1.1 tron UNKNOWN(sc->sc_state);
649 1.1 tron break;
650 1.1 tron }
651 1.1 tron
652 1.1 tron done:
653 1.20 ad mutex_exit(bt_lock);
654 1.1 tron
655 1.1 tron DPRINTF("done err=%d, sc_state=%d, sc_mtu=%d\n",
656 1.1 tron err, sc->sc_state, sc->sc_mtu);
657 1.1 tron return err;
658 1.1 tron }
659 1.1 tron
660 1.1 tron static void
661 1.1 tron btsco_close(void *hdl)
662 1.1 tron {
663 1.1 tron struct btsco_softc *sc = hdl;
664 1.1 tron
665 1.16 plunky DPRINTF("%s\n", sc->sc_name);
666 1.1 tron
667 1.20 ad mutex_enter(bt_lock);
668 1.1 tron if (sc->sc_sco != NULL) {
669 1.1 tron sco_disconnect(sc->sc_sco, 0);
670 1.1 tron sco_detach(&sc->sc_sco);
671 1.1 tron }
672 1.1 tron
673 1.1 tron if (sc->sc_sco_l != NULL) {
674 1.1 tron sco_detach(&sc->sc_sco_l);
675 1.1 tron }
676 1.20 ad mutex_exit(bt_lock);
677 1.1 tron
678 1.1 tron if (sc->sc_rx_mbuf != NULL) {
679 1.1 tron m_freem(sc->sc_rx_mbuf);
680 1.1 tron sc->sc_rx_mbuf = NULL;
681 1.1 tron }
682 1.1 tron
683 1.1 tron sc->sc_rx_want = 0;
684 1.1 tron sc->sc_rx_block = NULL;
685 1.1 tron sc->sc_rx_intr = NULL;
686 1.1 tron sc->sc_rx_intrarg = NULL;
687 1.1 tron
688 1.1 tron sc->sc_tx_size = 0;
689 1.1 tron sc->sc_tx_block = NULL;
690 1.1 tron sc->sc_tx_pending = 0;
691 1.1 tron sc->sc_tx_intr = NULL;
692 1.1 tron sc->sc_tx_intrarg = NULL;
693 1.1 tron }
694 1.1 tron
695 1.1 tron static int
696 1.11 christos btsco_query_encoding(void *hdl, struct audio_encoding *ae)
697 1.1 tron {
698 1.1 tron /* struct btsco_softc *sc = hdl; */
699 1.1 tron int err = 0;
700 1.1 tron
701 1.1 tron switch (ae->index) {
702 1.1 tron case 0:
703 1.1 tron strcpy(ae->name, AudioEslinear_le);
704 1.1 tron ae->encoding = AUDIO_ENCODING_SLINEAR_LE;
705 1.1 tron ae->precision = 16;
706 1.1 tron ae->flags = 0;
707 1.1 tron break;
708 1.1 tron
709 1.1 tron default:
710 1.1 tron err = EINVAL;
711 1.1 tron }
712 1.1 tron
713 1.1 tron return err;
714 1.1 tron }
715 1.1 tron
716 1.1 tron static int
717 1.11 christos btsco_set_params(void *hdl, int setmode, int usemode,
718 1.1 tron audio_params_t *play, audio_params_t *rec,
719 1.1 tron stream_filter_list_t *pfil, stream_filter_list_t *rfil)
720 1.1 tron {
721 1.1 tron /* struct btsco_softc *sc = hdl; */
722 1.8 plunky const struct audio_format *f;
723 1.8 plunky int rv;
724 1.1 tron
725 1.1 tron DPRINTF("setmode 0x%x usemode 0x%x\n", setmode, usemode);
726 1.1 tron DPRINTF("rate %d, precision %d, channels %d encoding %d\n",
727 1.1 tron play->sample_rate, play->precision, play->channels, play->encoding);
728 1.1 tron
729 1.8 plunky /*
730 1.8 plunky * If we had a list of formats, we could check the HCI_Voice_Setting
731 1.8 plunky * and select the appropriate one to use. Currently only one is
732 1.8 plunky * supported: 0x0060 == 8000Hz, mono, 16-bit, slinear_le
733 1.8 plunky */
734 1.8 plunky f = &btsco_format;
735 1.1 tron
736 1.8 plunky if (setmode & AUMODE_PLAY) {
737 1.8 plunky rv = auconv_set_converter(f, 1, AUMODE_PLAY, play, TRUE, pfil);
738 1.8 plunky if (rv < 0)
739 1.8 plunky return EINVAL;
740 1.8 plunky }
741 1.1 tron
742 1.8 plunky if (setmode & AUMODE_RECORD) {
743 1.8 plunky rv = auconv_set_converter(f, 1, AUMODE_RECORD, rec, TRUE, rfil);
744 1.8 plunky if (rv < 0)
745 1.8 plunky return EINVAL;
746 1.1 tron }
747 1.1 tron
748 1.8 plunky return 0;
749 1.1 tron }
750 1.1 tron
751 1.1 tron /*
752 1.1 tron * If we have an MTU value to use, round the blocksize to that.
753 1.1 tron */
754 1.1 tron static int
755 1.11 christos btsco_round_blocksize(void *hdl, int bs, int mode,
756 1.11 christos const audio_params_t *param)
757 1.1 tron {
758 1.1 tron struct btsco_softc *sc = hdl;
759 1.1 tron
760 1.4 plunky if (sc->sc_mtu > 0) {
761 1.1 tron bs = (bs / sc->sc_mtu) * sc->sc_mtu;
762 1.4 plunky if (bs == 0)
763 1.4 plunky bs = sc->sc_mtu;
764 1.4 plunky }
765 1.13 plunky
766 1.1 tron DPRINTF("%s mode=0x%x, bs=%d, sc_mtu=%d\n",
767 1.16 plunky sc->sc_name, mode, bs, sc->sc_mtu);
768 1.1 tron
769 1.1 tron return bs;
770 1.1 tron }
771 1.1 tron
772 1.1 tron /*
773 1.1 tron * Start Output
774 1.1 tron *
775 1.22.6.1 ad * We dont want to be calling the network stack with a spinlock held
776 1.22.6.1 ad * so make a note of what is to be sent, and schedule an interrupt to
777 1.22.6.1 ad * bundle it up and queue it.
778 1.1 tron */
779 1.1 tron static int
780 1.1 tron btsco_start_output(void *hdl, void *block, int blksize,
781 1.1 tron void (*intr)(void *), void *intrarg)
782 1.1 tron {
783 1.1 tron struct btsco_softc *sc = hdl;
784 1.1 tron
785 1.16 plunky DPRINTFN(5, "%s blksize %d\n", sc->sc_name, blksize);
786 1.1 tron
787 1.1 tron if (sc->sc_sco == NULL)
788 1.1 tron return ENOTCONN; /* connection lost */
789 1.1 tron
790 1.1 tron sc->sc_tx_block = block;
791 1.1 tron sc->sc_tx_pending = 0;
792 1.1 tron sc->sc_tx_size = blksize;
793 1.1 tron sc->sc_tx_intr = intr;
794 1.1 tron sc->sc_tx_intrarg = intrarg;
795 1.1 tron
796 1.15 ad softint_schedule(sc->sc_intr);
797 1.1 tron return 0;
798 1.1 tron }
799 1.1 tron
800 1.1 tron /*
801 1.1 tron * Start Input
802 1.1 tron *
803 1.1 tron * When the SCO link is up, we are getting data in any case, so all we do
804 1.1 tron * is note what we want and where to put it and let the sco_input routine
805 1.1 tron * fill in the data.
806 1.1 tron *
807 1.1 tron * If there was any leftover data that didnt fit in the last block, retry
808 1.1 tron * it now.
809 1.1 tron */
810 1.1 tron static int
811 1.1 tron btsco_start_input(void *hdl, void *block, int blksize,
812 1.1 tron void (*intr)(void *), void *intrarg)
813 1.1 tron {
814 1.1 tron struct btsco_softc *sc = hdl;
815 1.1 tron struct mbuf *m;
816 1.1 tron
817 1.16 plunky DPRINTFN(5, "%s blksize %d\n", sc->sc_name, blksize);
818 1.1 tron
819 1.1 tron if (sc->sc_sco == NULL)
820 1.5 plunky return ENOTCONN;
821 1.1 tron
822 1.1 tron sc->sc_rx_want = blksize;
823 1.1 tron sc->sc_rx_block = block;
824 1.1 tron sc->sc_rx_intr = intr;
825 1.1 tron sc->sc_rx_intrarg = intrarg;
826 1.1 tron
827 1.1 tron if (sc->sc_rx_mbuf != NULL) {
828 1.1 tron m = sc->sc_rx_mbuf;
829 1.1 tron sc->sc_rx_mbuf = NULL;
830 1.1 tron btsco_sco_input(sc, m);
831 1.1 tron }
832 1.1 tron
833 1.1 tron return 0;
834 1.1 tron }
835 1.1 tron
836 1.1 tron /*
837 1.1 tron * Halt Output
838 1.1 tron *
839 1.1 tron * This doesnt really halt the output, but it will look
840 1.1 tron * that way to the audio driver. The current block will
841 1.1 tron * still be transmitted.
842 1.1 tron */
843 1.1 tron static int
844 1.1 tron btsco_halt_output(void *hdl)
845 1.1 tron {
846 1.1 tron struct btsco_softc *sc = hdl;
847 1.1 tron
848 1.16 plunky DPRINTFN(5, "%s\n", sc->sc_name);
849 1.1 tron
850 1.1 tron sc->sc_tx_size = 0;
851 1.1 tron sc->sc_tx_block = NULL;
852 1.1 tron sc->sc_tx_pending = 0;
853 1.1 tron sc->sc_tx_intr = NULL;
854 1.1 tron sc->sc_tx_intrarg = NULL;
855 1.1 tron
856 1.1 tron return 0;
857 1.1 tron }
858 1.1 tron
859 1.1 tron /*
860 1.1 tron * Halt Input
861 1.1 tron *
862 1.1 tron * This doesnt really halt the input, but it will look
863 1.1 tron * that way to the audio driver. Incoming data will be
864 1.1 tron * discarded.
865 1.1 tron */
866 1.1 tron static int
867 1.1 tron btsco_halt_input(void *hdl)
868 1.1 tron {
869 1.1 tron struct btsco_softc *sc = hdl;
870 1.1 tron
871 1.16 plunky DPRINTFN(5, "%s\n", sc->sc_name);
872 1.1 tron
873 1.1 tron sc->sc_rx_want = 0;
874 1.1 tron sc->sc_rx_block = NULL;
875 1.1 tron sc->sc_rx_intr = NULL;
876 1.1 tron sc->sc_rx_intrarg = NULL;
877 1.1 tron
878 1.1 tron if (sc->sc_rx_mbuf != NULL) {
879 1.1 tron m_freem(sc->sc_rx_mbuf);
880 1.1 tron sc->sc_rx_mbuf = NULL;
881 1.1 tron }
882 1.1 tron
883 1.1 tron return 0;
884 1.1 tron }
885 1.1 tron
886 1.1 tron static int
887 1.11 christos btsco_getdev(void *hdl, struct audio_device *ret)
888 1.1 tron {
889 1.1 tron
890 1.1 tron *ret = btsco_device;
891 1.1 tron return 0;
892 1.1 tron }
893 1.1 tron
894 1.1 tron static int
895 1.11 christos btsco_setfd(void *hdl, int fd)
896 1.1 tron {
897 1.1 tron DPRINTF("set %s duplex\n", fd ? "full" : "half");
898 1.1 tron
899 1.1 tron return 0;
900 1.1 tron }
901 1.1 tron
902 1.1 tron static int
903 1.1 tron btsco_set_port(void *hdl, mixer_ctrl_t *mc)
904 1.1 tron {
905 1.1 tron struct btsco_softc *sc = hdl;
906 1.1 tron int err = 0;
907 1.1 tron
908 1.16 plunky DPRINTF("%s dev %d type %d\n", sc->sc_name, mc->dev, mc->type);
909 1.1 tron
910 1.1 tron switch (mc->dev) {
911 1.1 tron case BTSCO_VGS:
912 1.1 tron if (mc->type != AUDIO_MIXER_VALUE ||
913 1.1 tron mc->un.value.num_channels != 1) {
914 1.1 tron err = EINVAL;
915 1.1 tron break;
916 1.1 tron }
917 1.1 tron
918 1.1 tron sc->sc_vgs = mc->un.value.level[AUDIO_MIXER_LEVEL_MONO];
919 1.1 tron break;
920 1.1 tron
921 1.1 tron case BTSCO_VGM:
922 1.1 tron if (mc->type != AUDIO_MIXER_VALUE ||
923 1.1 tron mc->un.value.num_channels != 1) {
924 1.1 tron err = EINVAL;
925 1.1 tron break;
926 1.1 tron }
927 1.1 tron
928 1.1 tron sc->sc_vgm = mc->un.value.level[AUDIO_MIXER_LEVEL_MONO];
929 1.1 tron break;
930 1.1 tron
931 1.1 tron default:
932 1.1 tron err = EINVAL;
933 1.1 tron break;
934 1.1 tron }
935 1.1 tron
936 1.1 tron return err;
937 1.1 tron }
938 1.1 tron
939 1.1 tron static int
940 1.1 tron btsco_get_port(void *hdl, mixer_ctrl_t *mc)
941 1.1 tron {
942 1.1 tron struct btsco_softc *sc = hdl;
943 1.1 tron int err = 0;
944 1.1 tron
945 1.16 plunky DPRINTF("%s dev %d\n", sc->sc_name, mc->dev);
946 1.1 tron
947 1.1 tron switch (mc->dev) {
948 1.1 tron case BTSCO_VGS:
949 1.1 tron mc->type = AUDIO_MIXER_VALUE;
950 1.1 tron mc->un.value.num_channels = 1;
951 1.1 tron mc->un.value.level[AUDIO_MIXER_LEVEL_MONO] = sc->sc_vgs;
952 1.1 tron break;
953 1.1 tron
954 1.1 tron case BTSCO_VGM:
955 1.1 tron mc->type = AUDIO_MIXER_VALUE;
956 1.1 tron mc->un.value.num_channels = 1;
957 1.1 tron mc->un.value.level[AUDIO_MIXER_LEVEL_MONO] = sc->sc_vgm;
958 1.1 tron break;
959 1.1 tron
960 1.1 tron default:
961 1.1 tron err = EINVAL;
962 1.1 tron break;
963 1.1 tron }
964 1.1 tron
965 1.1 tron return err;
966 1.1 tron }
967 1.1 tron
968 1.1 tron static int
969 1.11 christos btsco_query_devinfo(void *hdl, mixer_devinfo_t *di)
970 1.1 tron {
971 1.1 tron /* struct btsco_softc *sc = hdl; */
972 1.1 tron int err = 0;
973 1.1 tron
974 1.1 tron switch(di->index) {
975 1.1 tron case BTSCO_VGS:
976 1.1 tron di->mixer_class = BTSCO_INPUT_CLASS;
977 1.1 tron di->next = di->prev = AUDIO_MIXER_LAST;
978 1.1 tron strcpy(di->label.name, AudioNspeaker);
979 1.1 tron di->type = AUDIO_MIXER_VALUE;
980 1.1 tron strcpy(di->un.v.units.name, AudioNvolume);
981 1.1 tron di->un.v.num_channels = 1;
982 1.1 tron di->un.v.delta = BTSCO_DELTA;
983 1.1 tron break;
984 1.1 tron
985 1.1 tron case BTSCO_VGM:
986 1.1 tron di->mixer_class = BTSCO_INPUT_CLASS;
987 1.1 tron di->next = di->prev = AUDIO_MIXER_LAST;
988 1.1 tron strcpy(di->label.name, AudioNmicrophone);
989 1.1 tron di->type = AUDIO_MIXER_VALUE;
990 1.1 tron strcpy(di->un.v.units.name, AudioNvolume);
991 1.1 tron di->un.v.num_channels = 1;
992 1.1 tron di->un.v.delta = BTSCO_DELTA;
993 1.1 tron break;
994 1.1 tron
995 1.1 tron case BTSCO_INPUT_CLASS:
996 1.1 tron di->mixer_class = BTSCO_INPUT_CLASS;
997 1.1 tron di->next = di->prev = AUDIO_MIXER_LAST;
998 1.1 tron strcpy(di->label.name, AudioCinputs);
999 1.1 tron di->type = AUDIO_MIXER_CLASS;
1000 1.1 tron break;
1001 1.1 tron
1002 1.1 tron default:
1003 1.1 tron err = ENXIO;
1004 1.1 tron break;
1005 1.1 tron }
1006 1.1 tron
1007 1.1 tron return err;
1008 1.1 tron }
1009 1.1 tron
1010 1.1 tron /*
1011 1.1 tron * Allocate Ring Buffers.
1012 1.1 tron */
1013 1.1 tron static void *
1014 1.1 tron btsco_allocm(void *hdl, int direction, size_t size,
1015 1.1 tron struct malloc_type *type, int flags)
1016 1.1 tron {
1017 1.1 tron struct btsco_softc *sc = hdl;
1018 1.1 tron void *addr;
1019 1.1 tron
1020 1.16 plunky DPRINTF("%s: size %d direction %d\n", sc->sc_name, size, direction);
1021 1.1 tron
1022 1.1 tron addr = malloc(size, type, flags);
1023 1.1 tron
1024 1.1 tron if (direction == AUMODE_PLAY) {
1025 1.1 tron sc->sc_tx_buf = addr;
1026 1.1 tron sc->sc_tx_refcnt = 0;
1027 1.1 tron }
1028 1.1 tron
1029 1.1 tron return addr;
1030 1.1 tron }
1031 1.1 tron
1032 1.1 tron /*
1033 1.1 tron * Free Ring Buffers.
1034 1.1 tron *
1035 1.1 tron * Because we used external memory for the tx mbufs, we dont
1036 1.1 tron * want to free the memory until all the mbufs are done with
1037 1.1 tron *
1038 1.1 tron * Just to be sure, dont free if something is still pending.
1039 1.1 tron * This would be a memory leak but at least there is a warning..
1040 1.1 tron */
1041 1.1 tron static void
1042 1.1 tron btsco_freem(void *hdl, void *addr, struct malloc_type *type)
1043 1.1 tron {
1044 1.1 tron struct btsco_softc *sc = hdl;
1045 1.1 tron int count = hz / 2;
1046 1.1 tron
1047 1.1 tron if (addr == sc->sc_tx_buf) {
1048 1.16 plunky DPRINTF("%s: tx_refcnt=%d\n", sc->sc_name, sc->sc_tx_refcnt);
1049 1.1 tron
1050 1.1 tron sc->sc_tx_buf = NULL;
1051 1.1 tron
1052 1.1 tron while (sc->sc_tx_refcnt> 0 && count-- > 0)
1053 1.1 tron tsleep(sc, PWAIT, "drain", 1);
1054 1.1 tron
1055 1.1 tron if (sc->sc_tx_refcnt > 0) {
1056 1.18 plunky aprint_error("%s: ring buffer unreleased!\n", sc->sc_name);
1057 1.1 tron return;
1058 1.1 tron }
1059 1.1 tron }
1060 1.1 tron
1061 1.1 tron free(addr, type);
1062 1.1 tron }
1063 1.1 tron
1064 1.1 tron static int
1065 1.11 christos btsco_get_props(void *hdl)
1066 1.1 tron {
1067 1.1 tron
1068 1.1 tron return AUDIO_PROP_FULLDUPLEX;
1069 1.1 tron }
1070 1.1 tron
1071 1.22.6.1 ad static void
1072 1.22.6.1 ad btsco_get_locks(void *hdl, kmutex_t **intr, kmutex_t **proc)
1073 1.22.6.1 ad {
1074 1.22.6.1 ad struct btsco_softc *sc = hdl;
1075 1.22.6.1 ad
1076 1.22.6.1 ad *intr = &sc->sc_intr_lock;
1077 1.22.6.1 ad *proc = bt_lock;
1078 1.22.6.1 ad }
1079 1.22.6.1 ad
1080 1.1 tron /*
1081 1.1 tron * Handle private ioctl. We pass information out about how to talk
1082 1.1 tron * to the device and mixer.
1083 1.1 tron */
1084 1.1 tron static int
1085 1.12 christos btsco_dev_ioctl(void *hdl, u_long cmd, void *addr, int flag,
1086 1.11 christos struct lwp *l)
1087 1.1 tron {
1088 1.1 tron struct btsco_softc *sc = hdl;
1089 1.1 tron struct btsco_info *bi = (struct btsco_info *)addr;
1090 1.1 tron int err = 0;
1091 1.1 tron
1092 1.16 plunky DPRINTF("%s cmd 0x%lx flag %d\n", sc->sc_name, cmd, flag);
1093 1.1 tron
1094 1.1 tron switch (cmd) {
1095 1.1 tron case BTSCO_GETINFO:
1096 1.1 tron memset(bi, 0, sizeof(*bi));
1097 1.1 tron bdaddr_copy(&bi->laddr, &sc->sc_laddr);
1098 1.1 tron bdaddr_copy(&bi->raddr, &sc->sc_raddr);
1099 1.1 tron bi->channel = sc->sc_channel;
1100 1.1 tron bi->vgs = BTSCO_VGS;
1101 1.1 tron bi->vgm = BTSCO_VGM;
1102 1.1 tron break;
1103 1.1 tron
1104 1.1 tron default:
1105 1.1 tron err = EPASSTHROUGH;
1106 1.1 tron break;
1107 1.1 tron }
1108 1.1 tron
1109 1.1 tron return err;
1110 1.1 tron }
1111 1.1 tron
1112 1.1 tron
1113 1.1 tron /*****************************************************************************
1114 1.1 tron *
1115 1.1 tron * misc btsco functions
1116 1.1 tron *
1117 1.1 tron */
1118 1.1 tron
1119 1.1 tron /*
1120 1.1 tron * Our transmit interrupt. This is triggered when a new block is to be
1121 1.1 tron * sent. We send mtu sized chunks of the block as mbufs with external
1122 1.1 tron * storage to sco_send()
1123 1.1 tron */
1124 1.1 tron static void
1125 1.1 tron btsco_intr(void *arg)
1126 1.1 tron {
1127 1.1 tron struct btsco_softc *sc = arg;
1128 1.1 tron struct mbuf *m;
1129 1.1 tron uint8_t *block;
1130 1.1 tron int mlen, size;
1131 1.1 tron
1132 1.1 tron DPRINTFN(10, "%s block %p size %d\n",
1133 1.16 plunky sc->sc_name, sc->sc_tx_block, sc->sc_tx_size);
1134 1.1 tron
1135 1.1 tron if (sc->sc_sco == NULL)
1136 1.1 tron return; /* connection is lost */
1137 1.1 tron
1138 1.1 tron block = sc->sc_tx_block;
1139 1.1 tron size = sc->sc_tx_size;
1140 1.1 tron sc->sc_tx_block = NULL;
1141 1.1 tron sc->sc_tx_size = 0;
1142 1.1 tron
1143 1.21 plunky mutex_enter(bt_lock);
1144 1.1 tron while (size > 0) {
1145 1.1 tron MGETHDR(m, M_DONTWAIT, MT_DATA);
1146 1.1 tron if (m == NULL)
1147 1.1 tron break;
1148 1.1 tron
1149 1.1 tron mlen = MIN(sc->sc_mtu, size);
1150 1.1 tron
1151 1.1 tron /* I think M_DEVBUF is true but not relevant */
1152 1.1 tron MEXTADD(m, block, mlen, M_DEVBUF, btsco_extfree, sc);
1153 1.1 tron if ((m->m_flags & M_EXT) == 0) {
1154 1.1 tron m_free(m);
1155 1.1 tron break;
1156 1.1 tron }
1157 1.1 tron sc->sc_tx_refcnt++;
1158 1.1 tron
1159 1.1 tron m->m_pkthdr.len = m->m_len = mlen;
1160 1.1 tron sc->sc_tx_pending++;
1161 1.1 tron
1162 1.1 tron if (sco_send(sc->sc_sco, m) > 0) {
1163 1.1 tron sc->sc_tx_pending--;
1164 1.1 tron break;
1165 1.1 tron }
1166 1.1 tron
1167 1.1 tron block += mlen;
1168 1.1 tron size -= mlen;
1169 1.1 tron }
1170 1.21 plunky mutex_exit(bt_lock);
1171 1.1 tron }
1172 1.1 tron
1173 1.1 tron /*
1174 1.1 tron * Release the mbuf, we keep a reference count on the tx buffer so
1175 1.1 tron * that we dont release it before its free.
1176 1.1 tron */
1177 1.1 tron static void
1178 1.12 christos btsco_extfree(struct mbuf *m, void *addr, size_t size,
1179 1.10 christos void *arg)
1180 1.1 tron {
1181 1.1 tron struct btsco_softc *sc = arg;
1182 1.1 tron
1183 1.1 tron if (m != NULL)
1184 1.17 ad pool_cache_put(mb_cache, m);
1185 1.1 tron
1186 1.1 tron sc->sc_tx_refcnt--;
1187 1.1 tron }
1188