| [1412a184] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2014 Jiri Svoboda
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup hdaudio
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file High Definition Audio stream
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #include <as.h>
|
|---|
| [903eff5] | 36 | #include <bitops.h>
|
|---|
| 37 | #include <byteorder.h>
|
|---|
| [1412a184] | 38 | #include <ddf/log.h>
|
|---|
| 39 | #include <ddi.h>
|
|---|
| 40 | #include <errno.h>
|
|---|
| [dd8ab1c] | 41 | #include <str_error.h>
|
|---|
| [903eff5] | 42 | #include <macros.h>
|
|---|
| [1412a184] | 43 | #include <stdlib.h>
|
|---|
| 44 |
|
|---|
| 45 | #include "hdactl.h"
|
|---|
| 46 | #include "hdaudio.h"
|
|---|
| 47 | #include "regif.h"
|
|---|
| 48 | #include "spec/bdl.h"
|
|---|
| 49 | #include "stream.h"
|
|---|
| 50 |
|
|---|
| [b7fd2a0] | 51 | errno_t hda_stream_buffers_alloc(hda_t *hda, hda_stream_buffers_t **rbufs)
|
|---|
| [1412a184] | 52 | {
|
|---|
| 53 | void *bdl;
|
|---|
| 54 | void *buffer;
|
|---|
| 55 | uintptr_t buffer_phys;
|
|---|
| [0e4c5f0] | 56 | hda_stream_buffers_t *bufs = NULL;
|
|---|
| [1412a184] | 57 | size_t i;
|
|---|
| [3fafe5e0] | 58 | //size_t j, k;
|
|---|
| [b7fd2a0] | 59 | errno_t rc;
|
|---|
| [1412a184] | 60 |
|
|---|
| [0e4c5f0] | 61 | bufs = calloc(1, sizeof(hda_stream_buffers_t));
|
|---|
| 62 | if (bufs == NULL) {
|
|---|
| 63 | rc = ENOMEM;
|
|---|
| 64 | goto error;
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | bufs->nbuffers = 4;
|
|---|
| 68 | bufs->bufsize = 16384;
|
|---|
| [1412a184] | 69 |
|
|---|
| 70 | /*
|
|---|
| 71 | * BDL must be aligned to 128 bytes. If 64OK is not set,
|
|---|
| 72 | * it must be within the 32-bit address space.
|
|---|
| 73 | */
|
|---|
| 74 | bdl = AS_AREA_ANY;
|
|---|
| [0e4c5f0] | 75 | rc = dmamem_map_anonymous(bufs->nbuffers * sizeof(hda_buffer_desc_t),
|
|---|
| 76 | hda->ctl->ok64bit ? 0 : DMAMEM_4GiB, AS_AREA_READ | AS_AREA_WRITE,
|
|---|
| 77 | 0, &bufs->bdl_phys, &bdl);
|
|---|
| [1412a184] | 78 | if (rc != EOK)
|
|---|
| 79 | goto error;
|
|---|
| 80 |
|
|---|
| [0e4c5f0] | 81 | bufs->bdl = bdl;
|
|---|
| [1412a184] | 82 |
|
|---|
| 83 | /* Allocate arrays of buffer pointers */
|
|---|
| 84 |
|
|---|
| [0e4c5f0] | 85 | bufs->buf = calloc(bufs->nbuffers, sizeof(void *));
|
|---|
| 86 | if (bufs->buf == NULL)
|
|---|
| [1412a184] | 87 | goto error;
|
|---|
| 88 |
|
|---|
| [0e4c5f0] | 89 | bufs->buf_phys = calloc(bufs->nbuffers, sizeof(uintptr_t));
|
|---|
| 90 | if (bufs->buf_phys == NULL)
|
|---|
| [1412a184] | 91 | goto error;
|
|---|
| 92 |
|
|---|
| 93 | /* Allocate buffers */
|
|---|
| [47e00b83] | 94 | #if 0
|
|---|
| [0e4c5f0] | 95 | for (i = 0; i < bufs->nbuffers; i++) {
|
|---|
| [1412a184] | 96 | buffer = AS_AREA_ANY;
|
|---|
| [0e4c5f0] | 97 | rc = dmamem_map_anonymous(bufs->bufsize,
|
|---|
| 98 | bufs->hda->ctl->ok64bit ? 0 : DMAMEM_4GiB, AS_AREA_READ | AS_AREA_WRITE,
|
|---|
| [1412a184] | 99 | 0, &buffer_phys, &buffer);
|
|---|
| 100 | if (rc != EOK)
|
|---|
| 101 | goto error;
|
|---|
| 102 |
|
|---|
| [903eff5] | 103 | ddf_msg(LVL_NOTE, "Stream buf phys=0x%llx virt=%p",
|
|---|
| 104 | (unsigned long long)buffer_phys, buffer);
|
|---|
| 105 |
|
|---|
| [0e4c5f0] | 106 | bufs->buf[i] = buffer;
|
|---|
| 107 | bufs->buf_phys[i] = buffer_phys;
|
|---|
| [1412a184] | 108 |
|
|---|
| 109 | k = 0;
|
|---|
| [0e4c5f0] | 110 | for (j = 0; j < bufs->bufsize / 2; j++) {
|
|---|
| 111 | int16_t *bp = bufs->buf[i];
|
|---|
| [99cb9bf] | 112 | bp[j] = (k > 128) ? -100 : 100;
|
|---|
| [1412a184] | 113 | ++k;
|
|---|
| 114 | if (k >= 256)
|
|---|
| 115 | k = 0;
|
|---|
| 116 | }
|
|---|
| 117 | }
|
|---|
| [47e00b83] | 118 | #endif
|
|---|
| [159c722d] | 119 | /* audio_pcm_iface requires a single contiguous buffer */
|
|---|
| 120 | buffer = AS_AREA_ANY;
|
|---|
| [0e4c5f0] | 121 | rc = dmamem_map_anonymous(bufs->bufsize * bufs->nbuffers,
|
|---|
| 122 | hda->ctl->ok64bit ? 0 : DMAMEM_4GiB, AS_AREA_READ | AS_AREA_WRITE,
|
|---|
| [159c722d] | 123 | 0, &buffer_phys, &buffer);
|
|---|
| 124 | if (rc != EOK) {
|
|---|
| [dd8ab1c] | 125 | ddf_msg(LVL_NOTE, "dmamem_map_anon -> %s", str_error_name(rc));
|
|---|
| [159c722d] | 126 | goto error;
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| [0e4c5f0] | 129 | for (i = 0; i < bufs->nbuffers; i++) {
|
|---|
| 130 | bufs->buf[i] = buffer + i * bufs->bufsize;
|
|---|
| 131 | bufs->buf_phys[i] = buffer_phys + i * bufs->bufsize;
|
|---|
| [159c722d] | 132 |
|
|---|
| 133 | ddf_msg(LVL_NOTE, "Stream buf phys=0x%llx virt=%p",
|
|---|
| [0e4c5f0] | 134 | (long long unsigned)(uintptr_t)bufs->buf[i],
|
|---|
| 135 | (void *)bufs->buf_phys[i]);
|
|---|
| [159c722d] | 136 | }
|
|---|
| [1412a184] | 137 |
|
|---|
| 138 | /* Fill in BDL */
|
|---|
| [0e4c5f0] | 139 | for (i = 0; i < bufs->nbuffers; i++) {
|
|---|
| 140 | bufs->bdl[i].address = host2uint64_t_le(bufs->buf_phys[i]);
|
|---|
| 141 | bufs->bdl[i].length = host2uint32_t_le(bufs->bufsize);
|
|---|
| 142 | bufs->bdl[i].flags = BIT_V(uint32_t, bdf_ioc);
|
|---|
| [1412a184] | 143 | }
|
|---|
| 144 |
|
|---|
| [0e4c5f0] | 145 | *rbufs = bufs;
|
|---|
| [1412a184] | 146 | return EOK;
|
|---|
| 147 | error:
|
|---|
| [0e4c5f0] | 148 | hda_stream_buffers_free(bufs);
|
|---|
| [1412a184] | 149 | return ENOMEM;
|
|---|
| 150 | }
|
|---|
| 151 |
|
|---|
| [0e4c5f0] | 152 | void hda_stream_buffers_free(hda_stream_buffers_t *bufs)
|
|---|
| 153 | {
|
|---|
| 154 | if (bufs == NULL)
|
|---|
| 155 | return;
|
|---|
| 156 |
|
|---|
| 157 | /* XXX */
|
|---|
| 158 | free(bufs);
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| [1412a184] | 161 | static void hda_stream_desc_configure(hda_stream_t *stream)
|
|---|
| 162 | {
|
|---|
| 163 | hda_sdesc_regs_t *sdregs;
|
|---|
| [0e4c5f0] | 164 | hda_stream_buffers_t *bufs = stream->buffers;
|
|---|
| [903eff5] | 165 | uint8_t ctl1;
|
|---|
| 166 | uint8_t ctl3;
|
|---|
| 167 |
|
|---|
| 168 | ctl3 = (stream->sid << 4);
|
|---|
| 169 | ctl1 = 0x4;
|
|---|
| [1412a184] | 170 |
|
|---|
| 171 | sdregs = &stream->hda->regs->sdesc[stream->sdid];
|
|---|
| [903eff5] | 172 | hda_reg8_write(&sdregs->ctl3, ctl3);
|
|---|
| 173 | hda_reg8_write(&sdregs->ctl1, ctl1);
|
|---|
| [0e4c5f0] | 174 | hda_reg32_write(&sdregs->cbl, bufs->nbuffers * bufs->bufsize);
|
|---|
| 175 | hda_reg16_write(&sdregs->lvi, bufs->nbuffers - 1);
|
|---|
| [1412a184] | 176 | hda_reg16_write(&sdregs->fmt, stream->fmt);
|
|---|
| [0e4c5f0] | 177 | hda_reg32_write(&sdregs->bdpl, LOWER32(bufs->bdl_phys));
|
|---|
| 178 | hda_reg32_write(&sdregs->bdpu, UPPER32(bufs->bdl_phys));
|
|---|
| [1412a184] | 179 | }
|
|---|
| 180 |
|
|---|
| 181 | static void hda_stream_set_run(hda_stream_t *stream, bool run)
|
|---|
| 182 | {
|
|---|
| 183 | uint32_t ctl;
|
|---|
| 184 | hda_sdesc_regs_t *sdregs;
|
|---|
| 185 |
|
|---|
| 186 | sdregs = &stream->hda->regs->sdesc[stream->sdid];
|
|---|
| 187 |
|
|---|
| 188 | ctl = hda_reg8_read(&sdregs->ctl1);
|
|---|
| [6747b929] | 189 | if (run)
|
|---|
| 190 | ctl = ctl | BIT_V(uint8_t, sdctl1_run);
|
|---|
| 191 | else
|
|---|
| 192 | ctl = ctl & ~BIT_V(uint8_t, sdctl1_run);
|
|---|
| 193 |
|
|---|
| [1412a184] | 194 | hda_reg8_write(&sdregs->ctl1, ctl);
|
|---|
| 195 | }
|
|---|
| 196 |
|
|---|
| [6747b929] | 197 | static void hda_stream_reset_noinit(hda_stream_t *stream)
|
|---|
| 198 | {
|
|---|
| 199 | uint32_t ctl;
|
|---|
| 200 | hda_sdesc_regs_t *sdregs;
|
|---|
| 201 |
|
|---|
| 202 | sdregs = &stream->hda->regs->sdesc[stream->sdid];
|
|---|
| 203 |
|
|---|
| 204 | ctl = hda_reg8_read(&sdregs->ctl1);
|
|---|
| 205 | ctl = ctl | BIT_V(uint8_t, sdctl1_srst);
|
|---|
| 206 | hda_reg8_write(&sdregs->ctl1, ctl);
|
|---|
| 207 |
|
|---|
| 208 | async_usleep(100 * 1000);
|
|---|
| 209 |
|
|---|
| [fff4f21] | 210 | ctl = hda_reg8_read(&sdregs->ctl1);
|
|---|
| 211 | ctl = ctl & ~BIT_V(uint8_t, sdctl1_srst);
|
|---|
| 212 | hda_reg8_write(&sdregs->ctl1, ctl);
|
|---|
| [6747b929] | 213 |
|
|---|
| [fff4f21] | 214 | async_usleep(100 * 1000);
|
|---|
| [6747b929] | 215 | }
|
|---|
| 216 |
|
|---|
| [1412a184] | 217 | hda_stream_t *hda_stream_create(hda_t *hda, hda_stream_dir_t dir,
|
|---|
| [0e4c5f0] | 218 | hda_stream_buffers_t *bufs, uint32_t fmt)
|
|---|
| [1412a184] | 219 | {
|
|---|
| 220 | hda_stream_t *stream;
|
|---|
| [0e4c5f0] | 221 | uint8_t sdid;
|
|---|
| [1412a184] | 222 |
|
|---|
| 223 | stream = calloc(1, sizeof(hda_stream_t));
|
|---|
| 224 | if (stream == NULL)
|
|---|
| 225 | return NULL;
|
|---|
| 226 |
|
|---|
| [0e4c5f0] | 227 | sdid = 0;
|
|---|
| 228 |
|
|---|
| 229 | switch (dir) {
|
|---|
| 230 | case sdir_input:
|
|---|
| 231 | sdid = 0; /* XXX Allocate - first input SDESC */
|
|---|
| 232 | break;
|
|---|
| 233 | case sdir_output:
|
|---|
| 234 | sdid = hda->ctl->iss; /* XXX Allocate - First output SDESC */
|
|---|
| 235 | break;
|
|---|
| 236 | case sdir_bidi:
|
|---|
| 237 | sdid = hda->ctl->iss + hda->ctl->oss; /* XXX Allocate - First bidi SDESC */
|
|---|
| 238 | break;
|
|---|
| 239 | }
|
|---|
| 240 |
|
|---|
| [1412a184] | 241 | stream->hda = hda;
|
|---|
| 242 | stream->dir = dir;
|
|---|
| 243 | stream->sid = 1; /* XXX Allocate this */
|
|---|
| [0e4c5f0] | 244 | stream->sdid = sdid;
|
|---|
| [1412a184] | 245 | stream->fmt = fmt;
|
|---|
| [0e4c5f0] | 246 | stream->buffers = bufs;
|
|---|
| [1412a184] | 247 |
|
|---|
| 248 | ddf_msg(LVL_NOTE, "snum=%d sdidx=%d", stream->sid, stream->sdid);
|
|---|
| 249 |
|
|---|
| 250 | ddf_msg(LVL_NOTE, "Configure stream descriptor");
|
|---|
| 251 | hda_stream_desc_configure(stream);
|
|---|
| 252 | return stream;
|
|---|
| 253 | }
|
|---|
| 254 |
|
|---|
| 255 | void hda_stream_destroy(hda_stream_t *stream)
|
|---|
| 256 | {
|
|---|
| 257 | ddf_msg(LVL_NOTE, "hda_stream_destroy()");
|
|---|
| [6747b929] | 258 | hda_stream_reset_noinit(stream);
|
|---|
| [1412a184] | 259 | free(stream);
|
|---|
| 260 | }
|
|---|
| 261 |
|
|---|
| 262 | void hda_stream_start(hda_stream_t *stream)
|
|---|
| 263 | {
|
|---|
| [a333b7f] | 264 | ddf_msg(LVL_NOTE, "hda_stream_start()");
|
|---|
| [1412a184] | 265 | hda_stream_set_run(stream, true);
|
|---|
| 266 | }
|
|---|
| 267 |
|
|---|
| [6747b929] | 268 | void hda_stream_stop(hda_stream_t *stream)
|
|---|
| 269 | {
|
|---|
| 270 | ddf_msg(LVL_NOTE, "hda_stream_stop()");
|
|---|
| 271 | hda_stream_set_run(stream, false);
|
|---|
| 272 | }
|
|---|
| 273 |
|
|---|
| 274 | void hda_stream_reset(hda_stream_t *stream)
|
|---|
| 275 | {
|
|---|
| 276 | ddf_msg(LVL_NOTE, "hda_stream_reset()");
|
|---|
| 277 | hda_stream_reset_noinit(stream);
|
|---|
| 278 | hda_stream_desc_configure(stream);
|
|---|
| 279 | }
|
|---|
| 280 |
|
|---|
| [1412a184] | 281 | /** @}
|
|---|
| 282 | */
|
|---|