VirtualBox

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

Last change on this file since 88037 was 87810, checked in by vboxsync, 4 years ago

HDA: Got rid of the stream period's additional locking; not needed, as it's part of the stream's own lock already. ticketoem2ref:36

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1/* $Id: HDAStreamPeriod.h 87810 2021-02-19 16:08:22Z 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 /** Number of pending interrupts required for this period. */
61 uint8_t cIntPending;
62 uint8_t bPadding0;
63 /** Hertz (Hz) rate this period runs with. */
64 uint32_t u32Hz;
65 /** Period start time (in wall clock counts). */
66 uint64_t u64StartWalClk;
67 /** Period duration (in wall clock counts). */
68 uint64_t u64DurationWalClk;
69 /** The period's (relative) elapsed time (in wall clock counts). */
70 uint64_t u64ElapsedWalClk;
71 /** Delay (in wall clock counts) for tweaking the period timing. Optional. */
72 int64_t i64DelayWalClk;
73 /** Number of audio frames to transfer for this period. */
74 uint32_t cFramesToTransfer;
75 /** Number of audio frames already transfered. */
76 uint32_t cFramesTransferred;
77#ifdef LOG_ENABLED
78 /** Debugging state. */
79 HDASTREAMPERIODDEBUG Dbg;
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 hdaR3StreamPeriodEnd(PHDASTREAMPERIOD pPeriod);
93void hdaR3StreamPeriodPause(PHDASTREAMPERIOD pPeriod);
94void hdaR3StreamPeriodResume(PHDASTREAMPERIOD pPeriod);
95uint64_t hdaR3StreamPeriodFramesToWalClk(PHDASTREAMPERIOD pPeriod, uint32_t uFrames);
96uint64_t hdaR3StreamPeriodGetAbsEndWalClk(PHDASTREAMPERIOD pPeriod);
97uint64_t hdaR3StreamPeriodGetAbsElapsedWalClk(PHDASTREAMPERIOD pPeriod);
98uint32_t hdaR3StreamPeriodGetRemainingFrames(PHDASTREAMPERIOD pPeriod);
99bool hdaR3StreamPeriodHasElapsed(PHDASTREAMPERIOD pPeriod);
100bool hdaR3StreamPeriodHasPassedAbsWalClk(PHDASTREAMPERIOD pPeriod, uint64_t u64WalClk);
101bool hdaR3StreamPeriodNeedsInterrupt(PHDASTREAMPERIOD pPeriod);
102void hdaR3StreamPeriodAcquireInterrupt(PHDASTREAMPERIOD pPeriod);
103void hdaR3StreamPeriodReleaseInterrupt(PHDASTREAMPERIOD pPeriod);
104void hdaR3StreamPeriodInc(PHDASTREAMPERIOD pPeriod, uint32_t framesInc);
105bool hdaR3StreamPeriodIsComplete(PHDASTREAMPERIOD pPeriod);
106#endif /* IN_RING3 */
107
108#endif /* !VBOX_INCLUDED_SRC_Audio_HDAStreamPeriod_h */
109
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