1 /* $NetBSD: bba.c,v 1.40 2017/06/01 02:45:11 chs Exp $ */ 2 3 /* 4 * Copyright (c) 2000 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 * POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /* maxine/alpha baseboard audio (bba) */ 30 31 #include <sys/cdefs.h> 32 __KERNEL_RCSID(0, "$NetBSD: bba.c,v 1.40 2017/06/01 02:45:11 chs Exp $"); 33 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/kernel.h> 37 #include <sys/device.h> 38 #include <sys/kmem.h> 39 40 #include <sys/bus.h> 41 #include <machine/autoconf.h> 42 #include <sys/cpu.h> 43 44 #include <sys/audioio.h> 45 #include <dev/audio_if.h> 46 #include <dev/auconv.h> 47 48 #include <dev/ic/am7930reg.h> 49 #include <dev/ic/am7930var.h> 50 51 #include <dev/tc/tcvar.h> 52 #include <dev/tc/ioasicreg.h> 53 #include <dev/tc/ioasicvar.h> 54 55 #ifdef AUDIO_DEBUG 56 #define DPRINTF(x) if (am7930debug) printf x 57 #else 58 #define DPRINTF(x) 59 #endif /* AUDIO_DEBUG */ 60 61 #define BBA_MAX_DMA_SEGMENTS 16 62 #define BBA_DMABUF_SIZE (BBA_MAX_DMA_SEGMENTS*IOASIC_DMA_BLOCKSIZE) 63 #define BBA_DMABUF_ALIGN IOASIC_DMA_BLOCKSIZE 64 #define BBA_DMABUF_BOUNDARY 0 65 66 struct bba_mem { 67 struct bba_mem *next; 68 bus_addr_t addr; 69 bus_size_t size; 70 void *kva; 71 }; 72 73 struct bba_dma_state { 74 bus_dmamap_t dmam; /* DMA map */ 75 int active; 76 int curseg; /* current segment in DMA buffer */ 77 void (*intr)(void *); /* higher-level audio handler */ 78 void *intr_arg; 79 }; 80 81 struct bba_softc { 82 struct am7930_softc sc_am7930; /* glue to MI code */ 83 84 bus_space_tag_t sc_bst; /* IOASIC bus tag/handle */ 85 bus_space_handle_t sc_bsh; 86 bus_dma_tag_t sc_dmat; 87 bus_space_handle_t sc_codec_bsh; /* codec bus space handle */ 88 89 struct bba_mem *sc_mem_head; /* list of buffers */ 90 91 struct bba_dma_state sc_tx_dma_state; 92 struct bba_dma_state sc_rx_dma_state; 93 }; 94 95 static int bba_match(device_t, cfdata_t, void *); 96 static void bba_attach(device_t, device_t, void *); 97 98 CFATTACH_DECL_NEW(bba, sizeof(struct bba_softc), 99 bba_match, bba_attach, NULL, NULL); 100 101 /* 102 * Define our interface into the am7930 MI driver. 103 */ 104 105 static uint8_t bba_codec_iread(struct am7930_softc *, int); 106 static uint16_t bba_codec_iread16(struct am7930_softc *, int); 107 static void bba_codec_iwrite(struct am7930_softc *, int, uint8_t); 108 static void bba_codec_iwrite16(struct am7930_softc *, int, uint16_t); 109 static void bba_onopen(struct am7930_softc *); 110 static void bba_onclose(struct am7930_softc *); 111 112 static stream_filter_factory_t bba_output_conv; 113 static stream_filter_factory_t bba_input_conv; 114 static int bba_output_conv_fetch_to(struct audio_softc *, stream_fetcher_t *, 115 audio_stream_t *, int); 116 static int bba_input_conv_fetch_to(struct audio_softc *, stream_fetcher_t *, 117 audio_stream_t *, int); 118 119 struct am7930_glue bba_glue = { 120 bba_codec_iread, 121 bba_codec_iwrite, 122 bba_codec_iread16, 123 bba_codec_iwrite16, 124 bba_onopen, 125 bba_onclose, 126 4, 127 bba_input_conv, 128 bba_output_conv, 129 }; 130 131 /* 132 * Define our interface to the higher level audio driver. 133 */ 134 135 static int bba_round_blocksize(void *, int, int, const audio_params_t *); 136 static int bba_halt_output(void *); 137 static int bba_halt_input(void *); 138 static int bba_getdev(void *, struct audio_device *); 139 static void *bba_allocm(void *, int, size_t); 140 static void bba_freem(void *, void *, size_t); 141 static size_t bba_round_buffersize(void *, int, size_t); 142 static int bba_get_props(void *); 143 static paddr_t bba_mappage(void *, void *, off_t, int); 144 static int bba_trigger_output(void *, void *, void *, int, 145 void (*)(void *), void *, 146 const audio_params_t *); 147 static int bba_trigger_input(void *, void *, void *, int, 148 void (*)(void *), void *, 149 const audio_params_t *); 150 static void bba_get_locks(void *opaque, kmutex_t **intr, 151 kmutex_t **thread); 152 153 static const struct audio_hw_if sa_hw_if = { 154 am7930_open, 155 am7930_close, 156 0, 157 am7930_query_encoding, 158 am7930_set_params, 159 bba_round_blocksize, /* md */ 160 am7930_commit_settings, 161 0, 162 0, 163 0, 164 0, 165 bba_halt_output, /* md */ 166 bba_halt_input, /* md */ 167 0, 168 bba_getdev, 169 0, 170 am7930_set_port, 171 am7930_get_port, 172 am7930_query_devinfo, 173 bba_allocm, /* md */ 174 bba_freem, /* md */ 175 bba_round_buffersize, /* md */ 176 bba_mappage, 177 bba_get_props, 178 bba_trigger_output, /* md */ 179 bba_trigger_input, /* md */ 180 0, 181 bba_get_locks, 182 }; 183 184 static struct audio_device bba_device = { 185 "am7930", 186 "x", 187 "bba" 188 }; 189 190 static int bba_intr(void *); 191 static void bba_reset(struct bba_softc *, int); 192 static void bba_codec_dwrite(struct am7930_softc *, int, uint8_t); 193 static uint8_t bba_codec_dread(struct am7930_softc *, int); 194 195 static int 196 bba_match(device_t parent, cfdata_t cf, void *aux) 197 { 198 struct ioasicdev_attach_args *ia; 199 200 ia = aux; 201 if (strcmp(ia->iada_modname, "isdn") != 0 && 202 strcmp(ia->iada_modname, "AMD79c30") != 0) 203 return 0; 204 205 return 1; 206 } 207 208 209 static void 210 bba_attach(device_t parent, device_t self, void *aux) 211 { 212 struct ioasicdev_attach_args *ia; 213 struct bba_softc *sc; 214 struct am7930_softc *asc; 215 struct ioasic_softc *iosc = device_private(parent); 216 217 ia = aux; 218 sc = device_private(self); 219 asc = &sc->sc_am7930; 220 asc->sc_dev = self; 221 sc->sc_bst = iosc->sc_bst; 222 sc->sc_bsh = iosc->sc_bsh; 223 sc->sc_dmat = iosc->sc_dmat; 224 225 /* get the bus space handle for codec */ 226 if (bus_space_subregion(sc->sc_bst, sc->sc_bsh, 227 ia->iada_offset, 0, &sc->sc_codec_bsh)) { 228 aprint_error_dev(self, "unable to map device\n"); 229 return; 230 } 231 232 printf("\n"); 233 234 bba_reset(sc,1); 235 236 /* 237 * Set up glue for MI code early; we use some of it here. 238 */ 239 asc->sc_glue = &bba_glue; 240 241 /* 242 * MI initialisation. We will be doing DMA. 243 */ 244 am7930_init(asc, AUDIOAMD_DMA_MODE); 245 246 ioasic_intr_establish(parent, ia->iada_cookie, TC_IPL_NONE, 247 bba_intr, sc); 248 249 audio_attach_mi(&sa_hw_if, asc, self); 250 } 251 252 253 static void 254 bba_onopen(struct am7930_softc *sc) 255 { 256 } 257 258 259 static void 260 bba_onclose(struct am7930_softc *sc) 261 { 262 } 263 264 265 static void 266 bba_reset(struct bba_softc *sc, int reset) 267 { 268 uint32_t ssr; 269 270 /* disable any DMA and reset the codec */ 271 ssr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR); 272 ssr &= ~(IOASIC_CSR_DMAEN_ISDN_T | IOASIC_CSR_DMAEN_ISDN_R); 273 if (reset) 274 ssr &= ~IOASIC_CSR_ISDN_ENABLE; 275 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 276 DELAY(10); /* 400ns required for codec to reset */ 277 278 /* initialise DMA pointers */ 279 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_DMAPTR, -1); 280 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_NEXTPTR, -1); 281 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_DMAPTR, -1); 282 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_NEXTPTR, -1); 283 284 /* take out of reset state */ 285 if (reset) { 286 ssr |= IOASIC_CSR_ISDN_ENABLE; 287 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 288 } 289 290 } 291 292 293 static void * 294 bba_allocm(void *addr, int direction, size_t size) 295 { 296 struct am7930_softc *asc; 297 struct bba_softc *sc; 298 bus_dma_segment_t seg; 299 int rseg; 300 void *kva; 301 struct bba_mem *m; 302 int state; 303 304 DPRINTF(("bba_allocm: size = %zu\n", size)); 305 asc = addr; 306 sc = addr; 307 state = 0; 308 309 if (bus_dmamem_alloc(sc->sc_dmat, size, BBA_DMABUF_ALIGN, 310 BBA_DMABUF_BOUNDARY, &seg, 1, &rseg, BUS_DMA_WAITOK)) { 311 aprint_error_dev(asc->sc_dev, "can't allocate DMA buffer\n"); 312 goto bad; 313 } 314 state |= 1; 315 316 if (bus_dmamem_map(sc->sc_dmat, &seg, rseg, size, 317 &kva, BUS_DMA_WAITOK | BUS_DMA_COHERENT)) { 318 aprint_error_dev(asc->sc_dev, "can't map DMA buffer\n"); 319 goto bad; 320 } 321 state |= 2; 322 323 m = kmem_alloc(sizeof(struct bba_mem), KM_SLEEP); 324 m->addr = seg.ds_addr; 325 m->size = seg.ds_len; 326 m->kva = kva; 327 m->next = sc->sc_mem_head; 328 sc->sc_mem_head = m; 329 330 return (void *)kva; 331 332 bad: 333 if (state & 2) 334 bus_dmamem_unmap(sc->sc_dmat, kva, size); 335 if (state & 1) 336 bus_dmamem_free(sc->sc_dmat, &seg, 1); 337 return NULL; 338 } 339 340 341 static void 342 bba_freem(void *addr, void *ptr, size_t size) 343 { 344 struct bba_softc *sc; 345 struct bba_mem **mp, *m; 346 bus_dma_segment_t seg; 347 void *kva; 348 349 sc = addr; 350 kva = (void *)addr; 351 for (mp = &sc->sc_mem_head; *mp && (*mp)->kva != kva; 352 mp = &(*mp)->next) 353 continue; 354 m = *mp; 355 if (m == NULL) { 356 printf("bba_freem: freeing unallocated memory\n"); 357 return; 358 } 359 *mp = m->next; 360 bus_dmamem_unmap(sc->sc_dmat, kva, m->size); 361 362 seg.ds_addr = m->addr; 363 seg.ds_len = m->size; 364 bus_dmamem_free(sc->sc_dmat, &seg, 1); 365 kmem_free(m, sizeof(struct bba_mem)); 366 } 367 368 369 static size_t 370 bba_round_buffersize(void *addr, int direction, size_t size) 371 { 372 373 DPRINTF(("bba_round_buffersize: size=%zu\n", size)); 374 return size > BBA_DMABUF_SIZE ? BBA_DMABUF_SIZE : 375 roundup(size, IOASIC_DMA_BLOCKSIZE); 376 } 377 378 379 static int 380 bba_halt_output(void *addr) 381 { 382 struct bba_softc *sc; 383 struct bba_dma_state *d; 384 uint32_t ssr; 385 386 sc = addr; 387 d = &sc->sc_tx_dma_state; 388 /* disable any DMA */ 389 ssr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR); 390 ssr &= ~IOASIC_CSR_DMAEN_ISDN_T; 391 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 392 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_DMAPTR, -1); 393 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_NEXTPTR, -1); 394 395 if (d->active) { 396 bus_dmamap_unload(sc->sc_dmat, d->dmam); 397 bus_dmamap_destroy(sc->sc_dmat, d->dmam); 398 d->active = 0; 399 } 400 401 return 0; 402 } 403 404 405 static int 406 bba_halt_input(void *addr) 407 { 408 struct bba_softc *sc; 409 struct bba_dma_state *d; 410 uint32_t ssr; 411 412 sc = addr; 413 d = &sc->sc_rx_dma_state; 414 /* disable any DMA */ 415 ssr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR); 416 ssr &= ~IOASIC_CSR_DMAEN_ISDN_R; 417 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 418 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_DMAPTR, -1); 419 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_NEXTPTR, -1); 420 421 if (d->active) { 422 bus_dmamap_unload(sc->sc_dmat, d->dmam); 423 bus_dmamap_destroy(sc->sc_dmat, d->dmam); 424 d->active = 0; 425 } 426 427 return 0; 428 } 429 430 431 static int 432 bba_getdev(void *addr, struct audio_device *retp) 433 { 434 435 *retp = bba_device; 436 return 0; 437 } 438 439 440 static int 441 bba_trigger_output(void *addr, void *start, void *end, int blksize, 442 void (*intr)(void *), void *arg, 443 const audio_params_t *param) 444 { 445 struct bba_softc *sc; 446 struct bba_dma_state *d; 447 uint32_t ssr; 448 tc_addr_t phys, nphys; 449 int state; 450 451 DPRINTF(("bba_trigger_output: sc=%p start=%p end=%p blksize=%d intr=%p(%p)\n", 452 addr, start, end, blksize, intr, arg)); 453 sc = addr; 454 d = &sc->sc_tx_dma_state; 455 state = 0; 456 457 /* disable any DMA */ 458 ssr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR); 459 ssr &= ~IOASIC_CSR_DMAEN_ISDN_T; 460 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 461 462 if (bus_dmamap_create(sc->sc_dmat, (char *)end - (char *)start, 463 BBA_MAX_DMA_SEGMENTS, IOASIC_DMA_BLOCKSIZE, 464 BBA_DMABUF_BOUNDARY, BUS_DMA_NOWAIT, &d->dmam)) { 465 printf("bba_trigger_output: can't create DMA map\n"); 466 goto bad; 467 } 468 state |= 1; 469 470 if (bus_dmamap_load(sc->sc_dmat, d->dmam, start, 471 (char *)end - (char *)start, NULL, BUS_DMA_WRITE|BUS_DMA_NOWAIT)) { 472 printf("bba_trigger_output: can't load DMA map\n"); 473 goto bad; 474 } 475 state |= 2; 476 477 d->intr = intr; 478 d->intr_arg = arg; 479 d->curseg = 1; 480 481 /* get physical address of buffer start */ 482 phys = (tc_addr_t)d->dmam->dm_segs[0].ds_addr; 483 nphys = (tc_addr_t)d->dmam->dm_segs[1].ds_addr; 484 485 /* setup DMA pointer */ 486 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_DMAPTR, 487 IOASIC_DMA_ADDR(phys)); 488 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_X_NEXTPTR, 489 IOASIC_DMA_ADDR(nphys)); 490 491 /* kick off DMA */ 492 ssr |= IOASIC_CSR_DMAEN_ISDN_T; 493 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 494 495 d->active = 1; 496 497 return 0; 498 499 bad: 500 if (state & 2) 501 bus_dmamap_unload(sc->sc_dmat, d->dmam); 502 if (state & 1) 503 bus_dmamap_destroy(sc->sc_dmat, d->dmam); 504 return 1; 505 } 506 507 508 static int 509 bba_trigger_input(void *addr, void *start, void *end, int blksize, 510 void (*intr)(void *), void *arg, const audio_params_t *param) 511 { 512 struct bba_softc *sc; 513 struct bba_dma_state *d; 514 tc_addr_t phys, nphys; 515 uint32_t ssr; 516 int state = 0; 517 518 DPRINTF(("bba_trigger_input: sc=%p start=%p end=%p blksize=%d intr=%p(%p)\n", 519 addr, start, end, blksize, intr, arg)); 520 sc = addr; 521 d = &sc->sc_rx_dma_state; 522 state = 0; 523 524 /* disable any DMA */ 525 ssr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR); 526 ssr &= ~IOASIC_CSR_DMAEN_ISDN_R; 527 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 528 529 if (bus_dmamap_create(sc->sc_dmat, (char *)end - (char *)start, 530 BBA_MAX_DMA_SEGMENTS, IOASIC_DMA_BLOCKSIZE, 531 BBA_DMABUF_BOUNDARY, BUS_DMA_NOWAIT, &d->dmam)) { 532 printf("bba_trigger_input: can't create DMA map\n"); 533 goto bad; 534 } 535 state |= 1; 536 537 if (bus_dmamap_load(sc->sc_dmat, d->dmam, start, 538 (char *)end - (char *)start, NULL, BUS_DMA_READ|BUS_DMA_NOWAIT)) { 539 printf("bba_trigger_input: can't load DMA map\n"); 540 goto bad; 541 } 542 state |= 2; 543 544 d->intr = intr; 545 d->intr_arg = arg; 546 d->curseg = 1; 547 548 /* get physical address of buffer start */ 549 phys = (tc_addr_t)d->dmam->dm_segs[0].ds_addr; 550 nphys = (tc_addr_t)d->dmam->dm_segs[1].ds_addr; 551 552 /* setup DMA pointer */ 553 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_DMAPTR, 554 IOASIC_DMA_ADDR(phys)); 555 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_ISDN_R_NEXTPTR, 556 IOASIC_DMA_ADDR(nphys)); 557 558 /* kick off DMA */ 559 ssr |= IOASIC_CSR_DMAEN_ISDN_R; 560 bus_space_write_4(sc->sc_bst, sc->sc_bsh, IOASIC_CSR, ssr); 561 562 d->active = 1; 563 564 return 0; 565 566 bad: 567 if (state & 2) 568 bus_dmamap_unload(sc->sc_dmat, d->dmam); 569 if (state & 1) 570 bus_dmamap_destroy(sc->sc_dmat, d->dmam); 571 return 1; 572 } 573 574 static void 575 bba_get_locks(void *opaque, kmutex_t **intr, kmutex_t **thread) 576 { 577 struct bba_softc *bsc = opaque; 578 struct am7930_softc *sc = &bsc->sc_am7930; 579 580 *intr = &sc->sc_intr_lock; 581 *thread = &sc->sc_lock; 582 } 583 584 static int 585 bba_intr(void *addr) 586 { 587 struct bba_softc *sc; 588 struct bba_dma_state *d; 589 tc_addr_t nphys; 590 int mask; 591 592 sc = addr; 593 mutex_enter(&sc->sc_am7930.sc_intr_lock); 594 595 mask = bus_space_read_4(sc->sc_bst, sc->sc_bsh, IOASIC_INTR); 596 597 if (mask & IOASIC_INTR_ISDN_TXLOAD) { 598 d = &sc->sc_tx_dma_state; 599 d->curseg = (d->curseg+1) % d->dmam->dm_nsegs; 600 nphys = (tc_addr_t)d->dmam->dm_segs[d->curseg].ds_addr; 601 bus_space_write_4(sc->sc_bst, sc->sc_bsh, 602 IOASIC_ISDN_X_NEXTPTR, IOASIC_DMA_ADDR(nphys)); 603 if (d->intr != NULL) 604 (*d->intr)(d->intr_arg); 605 } 606 if (mask & IOASIC_INTR_ISDN_RXLOAD) { 607 d = &sc->sc_rx_dma_state; 608 d->curseg = (d->curseg+1) % d->dmam->dm_nsegs; 609 nphys = (tc_addr_t)d->dmam->dm_segs[d->curseg].ds_addr; 610 bus_space_write_4(sc->sc_bst, sc->sc_bsh, 611 IOASIC_ISDN_R_NEXTPTR, IOASIC_DMA_ADDR(nphys)); 612 if (d->intr != NULL) 613 (*d->intr)(d->intr_arg); 614 } 615 616 mutex_exit(&sc->sc_am7930.sc_intr_lock); 617 618 return 0; 619 } 620 621 static int 622 bba_get_props(void *addr) 623 { 624 625 return AUDIO_PROP_MMAP | am7930_get_props(addr); 626 } 627 628 static paddr_t 629 bba_mappage(void *addr, void *mem, off_t offset, int prot) 630 { 631 struct bba_softc *sc; 632 struct bba_mem **mp; 633 bus_dma_segment_t seg; 634 void *kva; 635 636 sc = addr; 637 kva = (void *)mem; 638 for (mp = &sc->sc_mem_head; *mp && (*mp)->kva != kva; 639 mp = &(*mp)->next) 640 continue; 641 if (*mp == NULL || offset < 0) { 642 return -1; 643 } 644 645 seg.ds_addr = (*mp)->addr; 646 seg.ds_len = (*mp)->size; 647 648 return bus_dmamem_mmap(sc->sc_dmat, &seg, 1, offset, 649 prot, BUS_DMA_WAITOK); 650 } 651 652 static stream_filter_t * 653 bba_input_conv(struct audio_softc *sc, const audio_params_t *from, 654 const audio_params_t *to) 655 { 656 return auconv_nocontext_filter_factory(bba_input_conv_fetch_to); 657 } 658 659 static int 660 bba_input_conv_fetch_to(struct audio_softc *sc, stream_fetcher_t *self, 661 audio_stream_t *dst, int max_used) 662 { 663 stream_filter_t *this; 664 int m, err; 665 666 this = (stream_filter_t *)self; 667 if ((err = this->prev->fetch_to(sc, this->prev, this->src, max_used * 4))) 668 return err; 669 m = dst->end - dst->start; 670 m = min(m, max_used); 671 FILTER_LOOP_PROLOGUE(this->src, 4, dst, 1, m) { 672 *d = ((*(const uint32_t *)s) >> 16) & 0xff; 673 } FILTER_LOOP_EPILOGUE(this->src, dst); 674 return 0; 675 } 676 677 static stream_filter_t * 678 bba_output_conv(struct audio_softc *sc, const audio_params_t *from, 679 const audio_params_t *to) 680 { 681 return auconv_nocontext_filter_factory(bba_output_conv_fetch_to); 682 } 683 684 static int 685 bba_output_conv_fetch_to(struct audio_softc *sc, stream_fetcher_t *self, 686 audio_stream_t *dst, int max_used) 687 { 688 stream_filter_t *this; 689 int m, err; 690 691 this = (stream_filter_t *)self; 692 max_used = (max_used + 3) & ~3; 693 if ((err = this->prev->fetch_to(sc, this->prev, this->src, max_used / 4))) 694 return err; 695 m = (dst->end - dst->start) & ~3; 696 m = min(m, max_used); 697 FILTER_LOOP_PROLOGUE(this->src, 1, dst, 4, m) { 698 *(uint32_t *)d = (*s << 16); 699 } FILTER_LOOP_EPILOGUE(this->src, dst); 700 return 0; 701 } 702 703 static int 704 bba_round_blocksize(void *addr, int blk, int mode, const audio_params_t *param) 705 { 706 707 return IOASIC_DMA_BLOCKSIZE; 708 } 709 710 711 /* indirect write */ 712 static void 713 bba_codec_iwrite(struct am7930_softc *sc, int reg, uint8_t val) 714 { 715 716 DPRINTF(("bba_codec_iwrite(): sc=%p, reg=%d, val=%d\n", sc, reg, val)); 717 bba_codec_dwrite(sc, AM7930_DREG_CR, reg); 718 bba_codec_dwrite(sc, AM7930_DREG_DR, val); 719 } 720 721 722 static void 723 bba_codec_iwrite16(struct am7930_softc *sc, int reg, uint16_t val) 724 { 725 726 DPRINTF(("bba_codec_iwrite16(): sc=%p, reg=%d, val=%d\n", sc, reg, val)); 727 bba_codec_dwrite(sc, AM7930_DREG_CR, reg); 728 bba_codec_dwrite(sc, AM7930_DREG_DR, val); 729 bba_codec_dwrite(sc, AM7930_DREG_DR, val>>8); 730 } 731 732 733 static uint16_t 734 bba_codec_iread16(struct am7930_softc *sc, int reg) 735 { 736 uint16_t val; 737 738 DPRINTF(("bba_codec_iread16(): sc=%p, reg=%d\n", sc, reg)); 739 bba_codec_dwrite(sc, AM7930_DREG_CR, reg); 740 val = bba_codec_dread(sc, AM7930_DREG_DR) << 8; 741 val |= bba_codec_dread(sc, AM7930_DREG_DR); 742 743 return val; 744 } 745 746 747 /* indirect read */ 748 static uint8_t 749 bba_codec_iread(struct am7930_softc *sc, int reg) 750 { 751 uint8_t val; 752 753 DPRINTF(("bba_codec_iread(): sc=%p, reg=%d\n", sc, reg)); 754 bba_codec_dwrite(sc, AM7930_DREG_CR, reg); 755 val = bba_codec_dread(sc, AM7930_DREG_DR); 756 757 DPRINTF(("read 0x%x (%d)\n", val, val)); 758 759 return val; 760 } 761 762 /* direct write */ 763 static void 764 bba_codec_dwrite(struct am7930_softc *asc, int reg, uint8_t val) 765 { 766 struct bba_softc *sc; 767 768 sc = (struct bba_softc *)asc; 769 DPRINTF(("bba_codec_dwrite(): sc=%p, reg=%d, val=%d\n", sc, reg, val)); 770 771 #if defined(__alpha__) 772 bus_space_write_4(sc->sc_bst, sc->sc_codec_bsh, 773 reg << 2, val << 8); 774 #else 775 bus_space_write_4(sc->sc_bst, sc->sc_codec_bsh, 776 reg << 6, val); 777 #endif 778 } 779 780 /* direct read */ 781 static uint8_t 782 bba_codec_dread(struct am7930_softc *asc, int reg) 783 { 784 struct bba_softc *sc; 785 786 sc = (struct bba_softc *)asc; 787 DPRINTF(("bba_codec_dread(): sc=%p, reg=%d\n", sc, reg)); 788 789 #if defined(__alpha__) 790 return ((bus_space_read_4(sc->sc_bst, sc->sc_codec_bsh, 791 reg << 2) >> 8) & 0xff); 792 #else 793 return (bus_space_read_4(sc->sc_bst, sc->sc_codec_bsh, 794 reg << 6) & 0xff); 795 #endif 796 } 797