VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/DevHdaStream.h@ 89887

Last change on this file since 89887 was 89887, checked in by vboxsync, 3 years ago

DevHda: Merged DevHdaCommon.h into DevHda.h and mostly likewise with the corresponding code. bugref:9890

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.4 KB
Line 
1/* $Id: DevHdaStream.h 89887 2021-06-24 12:30:53Z vboxsync $ */
2/** @file
3 * Intel HD Audio Controller Emulation - Streams.
4 */
5
6/*
7 * Copyright (C) 2017-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef VBOX_INCLUDED_SRC_Audio_DevHdaStream_h
19#define VBOX_INCLUDED_SRC_Audio_DevHdaStream_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#ifndef VBOX_INCLUDED_SRC_Audio_DevHda_h
25# error "Only include DevHda.h!"
26#endif
27
28
29/**
30 * Structure containing HDA stream debug stuff, configurable at runtime.
31 */
32typedef struct HDASTREAMDEBUGRT
33{
34 /** Whether debugging is enabled or not. */
35 bool fEnabled;
36 uint8_t Padding[7];
37 /** File for dumping stream reads / writes.
38 * For input streams, this dumps data being written to the device FIFO,
39 * whereas for output streams this dumps data being read from the device FIFO. */
40 R3PTRTYPE(PAUDIOHLPFILE) pFileStream;
41 /** File for dumping raw DMA reads / writes.
42 * For input streams, this dumps data being written to the device DMA,
43 * whereas for output streams this dumps data being read from the device DMA. */
44 R3PTRTYPE(PAUDIOHLPFILE) pFileDMARaw;
45 /** File for dumping mapped (that is, extracted) DMA reads / writes. */
46 R3PTRTYPE(PAUDIOHLPFILE) pFileDMAMapped;
47} HDASTREAMDEBUGRT;
48
49/**
50 * Structure containing HDA stream debug information.
51 */
52typedef struct HDASTREAMDEBUG
53{
54 /** Runtime debug info. */
55 HDASTREAMDEBUGRT Runtime;
56#ifdef DEBUG
57 /** Critical section to serialize access if needed. */
58 RTCRITSECT CritSect;
59 uint32_t Padding0[2];
60 /** Number of total read accesses. */
61 uint64_t cReadsTotal;
62 /** Number of total DMA bytes read. */
63 uint64_t cbReadTotal;
64 /** Timestamp (in ns) of last read access. */
65 uint64_t tsLastReadNs;
66 /** Number of total write accesses. */
67 uint64_t cWritesTotal;
68 /** Number of total DMA bytes written. */
69 uint64_t cbWrittenTotal;
70 /** Number of total write accesses since last iteration (Hz). */
71 uint64_t cWritesHz;
72 /** Number of total DMA bytes written since last iteration (Hz). */
73 uint64_t cbWrittenHz;
74 /** Timestamp (in ns) of beginning a new write slot. */
75 uint64_t tsWriteSlotBegin;
76 /** Number of current silence samples in a (consecutive) row. */
77 uint64_t csSilence;
78 /** Number of silent samples in a row to consider an audio block as audio gap (silence). */
79 uint64_t cSilenceThreshold;
80 /** How many bytes to skip in an audio stream before detecting silence.
81 * (useful for intros and silence at the beginning of a song). */
82 uint64_t cbSilenceReadMin;
83#else
84 uint64_t au64Alignment[2];
85#endif
86} HDASTREAMDEBUG;
87
88/**
89 * Internal state of a HDA stream.
90 */
91typedef struct HDASTREAMSTATE
92{
93 /** Flag indicating whether this stream currently is
94 * in reset mode and therefore not acccessible by the guest. */
95 volatile bool fInReset;
96 /** Flag indicating if the stream is in running state or not. */
97 volatile bool fRunning;
98 /** How many interrupts are pending due to
99 * BDLE interrupt-on-completion (IOC) bits set. */
100 uint8_t cTransferPendingInterrupts;
101 /** Input streams only: Set when we switch from feeding the guest silence and
102 * commits to proving actual audio input bytes. */
103 bool fInputPreBuffered;
104 /** Input streams only: The number of bytes we need to prebuffer. */
105 uint32_t cbInputPreBuffer;
106 /** Timestamp (absolute, in timer ticks) of the last DMA data transfer.
107 * @note This is used for wall clock (WALCLK) calculations. */
108 uint64_t volatile tsTransferLast;
109 /** The stream's current configuration (matches SDnFMT). */
110 PDMAUDIOSTREAMCFG Cfg;
111 /** Timestamp (real time, in ns) of last DMA transfer. */
112 uint64_t tsLastTransferNs;
113 /** Timestamp (real time, in ns) of last stream read (to backends).
114 * When running in async I/O mode, this differs from \a tsLastTransferNs,
115 * because reading / processing will be done in a separate stream. */
116 uint64_t tsLastReadNs;
117
118 /** The start time for the playback (on the timer clock). */
119 uint64_t tsStart;
120
121 /** @name DMA engine
122 * @{ */
123 /** Timestamp (absolute, in timer ticks) of the next DMA data transfer.
124 * Next for determining the next scheduling window.
125 * Can be 0 if no next transfer is scheduled. */
126 uint64_t tsTransferNext;
127 /** The size of the current DMA transfer period. */
128 uint32_t cbCurDmaPeriod;
129 /** The size of an average transfer. */
130 uint32_t cbAvgTransfer;
131
132 /** Current circular buffer read offset (for tracing & logging). */
133 uint64_t offRead;
134 /** Current circular buffer write offset (for tracing & logging). */
135 uint64_t offWrite;
136
137 /** The offset into the current BDLE. */
138 uint32_t offCurBdle;
139 /** LVI + 1 */
140 uint16_t cBdles;
141 /** The index of the current BDLE.
142 * This is the entry which period is currently "running" on the DMA timer. */
143 uint8_t idxCurBdle;
144 /** The number of prologue scheduling steps.
145 * This is used when the tail BDLEs doesn't have IOC set. */
146 uint8_t cSchedulePrologue;
147 /** Number of scheduling steps. */
148 uint16_t cSchedule;
149 /** Current scheduling step. */
150 uint16_t idxSchedule;
151 /** Current loop number within the current scheduling step. */
152 uint32_t idxScheduleLoop;
153
154 /** Buffer descriptors and additional timer scheduling state.
155 * (Same as HDABDLEDESC, with more sensible naming.) */
156 struct
157 {
158 /** The buffer address. */
159 uint64_t GCPhys;
160 /** The buffer size (guest bytes). */
161 uint32_t cb;
162 /** The flags (only bit 0 is defined). */
163 uint32_t fFlags;
164 } aBdl[256];
165 /** Scheduling steps. */
166 struct
167 {
168 /** Number of timer ticks per period.
169 * ASSUMES that we don't need a full second and that the timer resolution
170 * isn't much higher than nanoseconds. */
171 uint32_t cPeriodTicks;
172 /** The period length in host bytes. */
173 uint32_t cbPeriod;
174 /** Number of times to repeat the period. */
175 uint32_t cLoops;
176 /** The BDL index of the first entry. */
177 uint8_t idxFirst;
178 /** The number of BDL entries. */
179 uint8_t cEntries;
180 uint8_t abPadding[2];
181 } aSchedule[512+8];
182
183#ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
184 /** Number of valid bytes in abDma.
185 * @note Volatile to prevent the compiler from re-reading it after we've
186 * validated the value in ring-0. */
187 uint32_t volatile cbDma;
188 /** Total number of bytes going via abDma this timer period. */
189 uint32_t cbDmaTotal;
190 /** DMA bounce buffer for ring-0 register reads (LPIB). */
191 uint8_t abDma[2048 - 8];
192#endif
193 /** @} */
194} HDASTREAMSTATE;
195AssertCompileSizeAlignment(HDASTREAMSTATE, 16);
196AssertCompileMemberAlignment(HDASTREAMSTATE, aBdl, 8);
197AssertCompileMemberAlignment(HDASTREAMSTATE, aBdl, 16);
198AssertCompileMemberAlignment(HDASTREAMSTATE, aSchedule, 16);
199
200/**
201 * An HDA stream (SDI / SDO) - shared.
202 *
203 * @note This HDA stream has nothing to do with a regular audio stream handled
204 * by the audio connector or the audio mixer. This HDA stream is a serial
205 * data in/out stream (SDI/SDO) defined in hardware and can contain
206 * multiple audio streams in one single SDI/SDO (interleaving streams).
207 *
208 * Contains only register values which do *not* change until a stream reset
209 * occurs.
210 */
211typedef struct HDASTREAM
212{
213 /** Internal state of this stream. */
214 HDASTREAMSTATE State;
215
216 /** Stream descriptor number (SDn). */
217 uint8_t u8SD;
218 /** Current channel index.
219 * For a stereo stream, this is u8Channel + 1. */
220 uint8_t u8Channel;
221 /** FIFO Watermark (checked + translated in bytes, FIFOW).
222 * This will be update from hdaRegWriteSDFIFOW() and also copied
223 * hdaR3StreamInit() for some reason. */
224 uint8_t u8FIFOW;
225
226 /** @name Register values at stream setup.
227 * These will all be copied in hdaR3StreamInit().
228 * @{ */
229 /** FIFO Size (checked + translated in bytes, FIFOS).
230 * This is supposedly the max number of bytes we'll be DMA'ing in one chunk
231 * and correspondingly the LPIB & wall clock update jumps. However, we're
232 * not at all being honest with the guest about this. */
233 uint8_t u8FIFOS;
234 /** Cyclic Buffer Length (SDnCBL) - Represents the size of the ring buffer. */
235 uint32_t u32CBL;
236 /** Last Valid Index (SDnLVI). */
237 uint16_t u16LVI;
238 /** Format (SDnFMT). */
239 uint16_t u16FMT;
240 uint8_t abPadding[4];
241 /** DMA base address (SDnBDPU - SDnBDPL). */
242 uint64_t u64BDLBase;
243 /** @} */
244
245 /** The timer for pumping data thru the attached LUN drivers. */
246 TMTIMERHANDLE hTimer;
247
248 /** Pad the structure size to a 64 byte alignment. */
249 uint64_t au64Padding1[2];
250} HDASTREAM;
251AssertCompileMemberAlignment(HDASTREAM, State.aBdl, 16);
252AssertCompileMemberAlignment(HDASTREAM, State.aSchedule, 16);
253AssertCompileSizeAlignment(HDASTREAM, 64);
254/** Pointer to an HDA stream (SDI / SDO). */
255typedef HDASTREAM *PHDASTREAM;
256
257
258/**
259 * An HDA stream (SDI / SDO) - ring-3 bits.
260 */
261typedef struct HDASTREAMR3
262{
263 /** Stream descriptor number (SDn). */
264 uint8_t u8SD;
265 uint8_t abPadding[7];
266 /** The shared state for the parent HDA device. */
267 R3PTRTYPE(PHDASTATE) pHDAStateShared;
268 /** The ring-3 state for the parent HDA device. */
269 R3PTRTYPE(PHDASTATER3) pHDAStateR3;
270 /** Pointer to HDA sink this stream is attached to. */
271 R3PTRTYPE(PHDAMIXERSINK) pMixSink;
272 /** Internal state of this stream. */
273 struct
274 {
275 /** Circular buffer (FIFO) for holding DMA'ed data. */
276 R3PTRTYPE(PRTCIRCBUF) pCircBuf;
277 /** The mixer sink this stream has registered AIO update callback with.
278 * This is NULL till we register it, typically in hdaR3StreamEnable.
279 * (The problem with following the pMixSink assignment is that hdaR3StreamReset
280 * sets it without updating the HDA sink structure, so things get out of
281 * wack in hdaR3MixerControl later in the initial device reset.) */
282 PAUDMIXSINK pAioRegSink;
283
284 /** Size of the DMA buffer (pCircBuf) in bytes. */
285 uint32_t StatDmaBufSize;
286 /** Number of used bytes in the DMA buffer (pCircBuf). */
287 uint32_t StatDmaBufUsed;
288 /** Counter for all under/overflows problems. */
289 STAMCOUNTER StatDmaFlowProblems;
290 /** Counter for unresovled under/overflows problems. */
291 STAMCOUNTER StatDmaFlowErrors;
292 /** Number of bytes involved in unresolved flow errors. */
293 STAMCOUNTER StatDmaFlowErrorBytes;
294 /** DMA skipped because buffer interrupt pending. */
295 STAMCOUNTER StatDmaSkippedPendingBcis;
296
297 STAMPROFILE StatStart;
298 STAMPROFILE StatReset;
299 STAMPROFILE StatStop;
300 } State;
301 /** Debug bits. */
302 HDASTREAMDEBUG Dbg;
303 uint64_t au64Alignment[3];
304} HDASTREAMR3;
305AssertCompileSizeAlignment(HDASTREAMR3, 64);
306/** Pointer to an HDA stream (SDI / SDO). */
307typedef HDASTREAMR3 *PHDASTREAMR3;
308
309/** @name Stream functions (all contexts).
310 * @{
311 */
312VBOXSTRICTRC hdaStreamDoOnAccessDmaOutput(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared,
313 uint64_t tsNow, uint32_t cbToTransfer);
314VBOXSTRICTRC hdaStreamMaybeDoOnAccessDmaOutput(PPDMDEVINS pDevIns, PHDASTATE pThis,
315 PHDASTREAM pStreamShared, uint64_t tsNow);
316/** @} */
317
318#ifdef IN_RING3
319
320/** @name Stream functions (ring-3).
321 * @{
322 */
323int hdaR3StreamConstruct(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PHDASTATE pThis,
324 PHDASTATER3 pThisCC, uint8_t uSD);
325void hdaR3StreamDestroy(PHDASTREAMR3 pStreamR3);
326int hdaR3StreamSetUp(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared,
327 PHDASTREAMR3 pStreamR3, uint8_t uSD);
328void hdaR3StreamReset(PHDASTATE pThis, PHDASTATER3 pThisCC,
329 PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, uint8_t uSD);
330int hdaR3StreamEnable(PHDASTATE pThis, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, bool fEnable);
331void hdaR3StreamMarkStarted(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared, uint64_t tsNow);
332void hdaR3StreamMarkStopped(PHDASTREAM pStreamShared);
333
334uint64_t hdaR3StreamTimerMain(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTATER3 pThisCC,
335 PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3);
336DECLCALLBACK(void) hdaR3StreamUpdateAsyncIoJob(PPDMDEVINS pDevIns, PAUDMIXSINK pSink, void *pvUser);
337/** @} */
338
339/** @name Helper functions associated with the stream code.
340 * @{ */
341int hdaR3SDFMTToPCMProps(uint16_t u16SDFMT, PPDMAUDIOPCMPROPS pProps);
342# ifdef LOG_ENABLED
343void hdaR3BDLEDumpAll(PPDMDEVINS pDevIns, PHDASTATE pThis, uint64_t u64BDLBase, uint16_t cBDLE);
344# endif
345/** @} */
346
347#endif /* IN_RING3 */
348#endif /* !VBOX_INCLUDED_SRC_Audio_DevHdaStream_h */
349
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use