VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/HDAStreamPeriod.h@ 88163

Last change on this file since 88163 was 88139, checked in by vboxsync, 4 years ago

DevHDA: Reducing HDAStreamPeriod (will be eliminated). bugref:9890

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/* $Id: HDAStreamPeriod.h 88139 2021-03-16 12:33:30Z vboxsync $ */
2/** @file
3 * HDAStreamPeriod.h - Stream period functions for HD Audio.
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_HDAStreamPeriod_h
19#define VBOX_INCLUDED_SRC_Audio_HDAStreamPeriod_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <iprt/critsect.h>
25#ifdef DEBUG
26# include <iprt/time.h>
27#endif
28#include <VBox/log.h> /* LOG_ENABLED */
29
30
31#ifdef LOG_ENABLED
32/**
33 * Debug stuff for a HDA stream's period.
34 */
35typedef struct HDASTREAMPERIODDEBUG
36{
37 /** Host start time (in ns) of the period. */
38 uint64_t tsStartNs;
39} HDASTREAMPERIODDEBUG;
40#endif
41
42/** No flags set. */
43#define HDASTREAMPERIOD_F_NONE 0
44/** The stream period has been initialized and is in a valid state. */
45#define HDASTREAMPERIOD_F_VALID RT_BIT(0)
46/** The stream period is active. */
47#define HDASTREAMPERIOD_F_ACTIVE RT_BIT(1)
48
49/**
50 * HDA stream's time period.
51 *
52 * This is needed in order to keep track of stream timing and interrupt delivery.
53 */
54typedef struct HDASTREAMPERIOD
55{
56 /** Associated HDA stream descriptor (SD) number. */
57 uint8_t u8SD;
58 /** The period's status flags. */
59 uint8_t fStatus;
60 uint8_t abPadding[2];
61 /** Hertz (Hz) rate this period runs with. */
62 uint32_t u32Hz;
63 /** Period start time (in wall clock counts). */
64 uint64_t u64StartWalClk;
65 /** Period duration (in wall clock counts). */
66 uint64_t u64DurationWalClk;
67 /** The period's (relative) elapsed time (in wall clock counts). */
68 uint64_t u64ElapsedWalClk;
69 /** Delay (in wall clock counts) for tweaking the period timing. Optional. */
70 int64_t i64DelayWalClk;
71 /** Number of audio frames to transfer for this period. */
72 uint32_t cFramesToTransfer;
73 /** Number of audio frames already transfered. */
74 uint32_t cFramesTransferred;
75#ifdef LOG_ENABLED
76 /** Debugging state. */
77 HDASTREAMPERIODDEBUG Dbg;
78#else
79 uint64_t uPlaceholder;
80#endif
81} HDASTREAMPERIOD;
82AssertCompileSizeAlignment(HDASTREAMPERIOD, 8);
83/** Pointer to a HDA stream's time period keeper. */
84typedef HDASTREAMPERIOD *PHDASTREAMPERIOD;
85
86#ifdef IN_RING3
87int hdaR3StreamPeriodCreate(PHDASTREAMPERIOD pPeriod);
88void hdaR3StreamPeriodDestroy(PHDASTREAMPERIOD pPeriod);
89int hdaR3StreamPeriodInit(PHDASTREAMPERIOD pPeriod, uint8_t u8SD, uint16_t u16LVI, uint32_t u32CBL, PPDMAUDIOSTREAMCFG pStreamCfg);
90void hdaR3StreamPeriodReset(PHDASTREAMPERIOD pPeriod);
91int hdaR3StreamPeriodBegin(PHDASTREAMPERIOD pPeriod, uint64_t u64WalClk);
92void hdaR3StreamPeriodResume(PHDASTREAMPERIOD pPeriod);
93uint64_t hdaR3StreamPeriodFramesToWalClk(PHDASTREAMPERIOD pPeriod, uint32_t uFrames);
94uint64_t hdaR3StreamPeriodGetAbsEndWalClk(PHDASTREAMPERIOD pPeriod);
95uint64_t hdaR3StreamPeriodGetAbsElapsedWalClk(PHDASTREAMPERIOD pPeriod);
96uint32_t hdaR3StreamPeriodGetRemainingFrames(PHDASTREAMPERIOD pPeriod);
97bool hdaR3StreamPeriodHasElapsed(PHDASTREAMPERIOD pPeriod);
98bool hdaR3StreamPeriodHasPassedAbsWalClk(PHDASTREAMPERIOD pPeriod, uint64_t u64WalClk);
99void hdaR3StreamPeriodInc(PHDASTREAMPERIOD pPeriod, uint32_t framesInc);
100#endif /* IN_RING3 */
101
102#endif /* !VBOX_INCLUDED_SRC_Audio_HDAStreamPeriod_h */
103
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette