VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/DevIchIntelHDA.cpp@ 39436

Last change on this file since 39436 was 39368, checked in by vboxsync, 13 years ago

VBOX_FULL_VERSION_MAKE: fixed copy & past bug messing up the build part.
SSM: Return VERR_SSM_LOADED_TOO_LITTLE if there is data in the buffer, not only if there are more records before the unit end.
HDA: Fixed the saved state loading stuff again. Canged the saved state to mark up arrays with lengths and serialize using structure puts.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 117.8 KB
Line 
1/* $Id: DevIchIntelHDA.cpp 39368 2011-11-18 15:19:35Z vboxsync $ */
2/** @file
3 * DevIchIntelHD - VBox ICH Intel HD Audio Controller.
4 */
5
6/*
7 * Copyright (C) 2006-2010 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/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#define LOG_GROUP LOG_GROUP_DEV_AUDIO
22#include <VBox/vmm/pdmdev.h>
23#include <VBox/version.h>
24
25#include <iprt/assert.h>
26#include <iprt/uuid.h>
27#include <iprt/string.h>
28#include <iprt/mem.h>
29#include <iprt/asm.h>
30#include <iprt/asm-math.h>
31
32#include "VBoxDD.h"
33
34extern "C" {
35#include "audio.h"
36}
37#include "DevCodec.h"
38
39#define VBOX_WITH_INTEL_HDA
40
41#if defined(VBOX_WITH_HP_HDA)
42/* HP Pavilion dv4t-1300 */
43# define HDA_PCI_VENDOR_ID 0x103c
44# define HDA_PCI_DEICE_ID 0x30f7
45#elif defined(VBOX_WITH_INTEL_HDA)
46/* Intel HDA controller */
47# define HDA_PCI_VENDOR_ID 0x8086
48# define HDA_PCI_DEICE_ID 0x2668
49#elif defined(VBOX_WITH_NVIDIA_HDA)
50/* nVidia HDA controller */
51# define HDA_PCI_VENDOR_ID 0x10de
52# define HDA_PCI_DEICE_ID 0x0ac0
53#else
54# error "Please specify your HDA device vendor/device IDs"
55#endif
56
57PDMBOTHCBDECL(int) hdaMMIORead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb);
58PDMBOTHCBDECL(int) hdaMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void const *pv, unsigned cb);
59static DECLCALLBACK(void) hdaReset (PPDMDEVINS pDevIns);
60
61#define HDA_NREGS 112
62/* Registers */
63#define HDA_REG_IND_NAME(x) ICH6_HDA_REG_##x
64#define HDA_REG_FIELD_NAME(reg, x) ICH6_HDA_##reg##_##x
65#define HDA_REG_FIELD_MASK(reg, x) ICH6_HDA_##reg##_##x##_MASK
66#define HDA_REG_FIELD_FLAG_MASK(reg, x) RT_BIT(ICH6_HDA_##reg##_##x##_SHIFT)
67#define HDA_REG_FIELD_SHIFT(reg, x) ICH6_HDA_##reg##_##x##_SHIFT
68#define HDA_REG_IND(pState, x) ((pState)->au32Regs[(x)])
69#define HDA_REG(pState, x) (HDA_REG_IND((pState), HDA_REG_IND_NAME(x)))
70#define HDA_REG_VALUE(pState, reg, val) (HDA_REG((pState),reg) & (((HDA_REG_FIELD_MASK(reg, val))) << (HDA_REG_FIELD_SHIFT(reg, val))))
71#define HDA_REG_FLAG_VALUE(pState, reg, val) (HDA_REG((pState),reg) & (((HDA_REG_FIELD_FLAG_MASK(reg, val)))))
72#define HDA_REG_SVALUE(pState, reg, val) (HDA_REG_VALUE(pState, reg, val) >> (HDA_REG_FIELD_SHIFT(reg, val)))
73
74#define ICH6_HDA_REG_GCAP 0 /* range 0x00-0x01*/
75#define GCAP(pState) (HDA_REG((pState), GCAP))
76/* GCAP HDASpec 3.3.2 This macro compact following information about HDA
77 * oss (15:12) - number of output streams supported
78 * iss (11:8) - number of input streams supported
79 * bss (7:3) - number of bidirection streams suppoted
80 * bds (2:1) - number of serial data out signals supported
81 * b64sup (0) - 64 bit addressing supported.
82 */
83#define HDA_MAKE_GCAP(oss, iss, bss, bds, b64sup) \
84 ( (((oss) & 0xF) << 12) \
85 | (((iss) & 0xF) << 8) \
86 | (((bss) & 0x1F) << 3) \
87 | (((bds) & 0x3) << 2) \
88 | ((b64sup) & 1))
89#define ICH6_HDA_REG_VMIN 1 /* range 0x02 */
90#define VMIN(pState) (HDA_REG((pState), VMIN))
91
92#define ICH6_HDA_REG_VMAJ 2 /* range 0x03 */
93#define VMAJ(pState) (HDA_REG((pState), VMAJ))
94
95#define ICH6_HDA_REG_OUTPAY 3 /* range 0x04-0x05 */
96#define OUTPAY(pState) (HDA_REG((pState), OUTPAY))
97
98#define ICH6_HDA_REG_INPAY 4 /* range 0x06-0x07 */
99#define INPAY(pState) (HDA_REG((pState), INPAY))
100
101#define ICH6_HDA_REG_GCTL (5)
102#define ICH6_HDA_GCTL_RST_SHIFT (0)
103#define ICH6_HDA_GCTL_FSH_SHIFT (1)
104#define ICH6_HDA_GCTL_UR_SHIFT (8)
105#define GCTL(pState) (HDA_REG((pState), GCTL))
106
107#define ICH6_HDA_REG_WAKEEN 6 /* 0x0C */
108#define WAKEEN(pState) (HDA_REG((pState), WAKEEN))
109
110#define ICH6_HDA_REG_STATESTS 7 /* range 0x0E */
111#define STATESTS(pState) (HDA_REG((pState), STATESTS))
112#define ICH6_HDA_STATES_SCSF 0x7
113
114#define ICH6_HDA_REG_GSTS 8 /* range 0x10-0x11*/
115#define ICH6_HDA_GSTS_FSH_SHIFT (1)
116#define GSTS(pState) (HDA_REG(pState, GSTS))
117
118#define ICH6_HDA_REG_INTCTL 9 /* 0x20 */
119#define ICH6_HDA_INTCTL_GIE_SHIFT 31
120#define ICH6_HDA_INTCTL_CIE_SHIFT 30
121#define ICH6_HDA_INTCTL_S0_SHIFT (0)
122#define ICH6_HDA_INTCTL_S1_SHIFT (1)
123#define ICH6_HDA_INTCTL_S2_SHIFT (2)
124#define ICH6_HDA_INTCTL_S3_SHIFT (3)
125#define ICH6_HDA_INTCTL_S4_SHIFT (4)
126#define ICH6_HDA_INTCTL_S5_SHIFT (5)
127#define ICH6_HDA_INTCTL_S6_SHIFT (6)
128#define ICH6_HDA_INTCTL_S7_SHIFT (7)
129#define INTCTL(pState) (HDA_REG((pState), INTCTL))
130#define INTCTL_GIE(pState) (HDA_REG_FLAG_VALUE(pState, INTCTL, GIE))
131#define INTCTL_CIE(pState) (HDA_REG_FLAG_VALUE(pState, INTCTL, CIE))
132#define INTCTL_SX(pState, X) (HDA_REG_FLAG_VALUE((pState), INTCTL, S##X))
133#define INTCTL_SALL(pState) (INTCTL((pState)) & 0xFF)
134
135/* Note: The HDA specification defines a SSYNC register at offset 0x38. The
136 * ICH6/ICH9 datahseet defines SSYNC at offset 0x34. The Linux HDA driver matches
137 * the datasheet.
138 */
139#define ICH6_HDA_REG_SSYNC 12 /* 0x34 */
140#define SSYNC(pState) (HDA_REG((pState), SSYNC))
141
142#define ICH6_HDA_REG_INTSTS 10 /* 0x24 */
143#define ICH6_HDA_INTSTS_GIS_SHIFT (31)
144#define ICH6_HDA_INTSTS_CIS_SHIFT (30)
145#define ICH6_HDA_INTSTS_S0_SHIFT (0)
146#define ICH6_HDA_INTSTS_S1_SHIFT (1)
147#define ICH6_HDA_INTSTS_S2_SHIFT (2)
148#define ICH6_HDA_INTSTS_S3_SHIFT (3)
149#define ICH6_HDA_INTSTS_S4_SHIFT (4)
150#define ICH6_HDA_INTSTS_S5_SHIFT (5)
151#define ICH6_HDA_INTSTS_S6_SHIFT (6)
152#define ICH6_HDA_INTSTS_S7_SHIFT (7)
153#define ICH6_HDA_INTSTS_S_MASK(num) RT_BIT(HDA_REG_FIELD_SHIFT(S##num))
154#define INTSTS(pState) (HDA_REG((pState), INTSTS))
155#define INTSTS_GIS(pState) (HDA_REG_FLAG_VALUE((pState), INTSTS, GIS)
156#define INTSTS_CIS(pState) (HDA_REG_FLAG_VALUE((pState), INTSTS, CIS)
157#define INTSTS_SX(pState, X) (HDA_REG_FLAG_VALUE(pState), INTSTS, S##X)
158#define INTSTS_SANY(pState) (INTSTS((pState)) & 0xFF)
159
160#define ICH6_HDA_REG_CORBLBASE 13 /* 0x40 */
161#define CORBLBASE(pState) (HDA_REG((pState), CORBLBASE))
162#define ICH6_HDA_REG_CORBUBASE 14 /* 0x44 */
163#define CORBUBASE(pState) (HDA_REG((pState), CORBUBASE))
164#define ICH6_HDA_REG_CORBWP 15 /* 48 */
165#define ICH6_HDA_REG_CORBRP 16 /* 4A */
166#define ICH6_HDA_CORBRP_RST_SHIFT 15
167#define ICH6_HDA_CORBRP_WP_SHIFT 0
168#define ICH6_HDA_CORBRP_WP_MASK 0xFF
169
170#define CORBRP(pState) (HDA_REG(pState, CORBRP))
171#define CORBWP(pState) (HDA_REG(pState, CORBWP))
172
173#define ICH6_HDA_REG_CORBCTL 17 /* 0x4C */
174#define ICH6_HDA_CORBCTL_DMA_SHIFT (1)
175#define ICH6_HDA_CORBCTL_CMEIE_SHIFT (0)
176
177#define CORBCTL(pState) (HDA_REG(pState, CORBCTL))
178
179
180#define ICH6_HDA_REG_CORBSTS 18 /* 0x4D */
181#define CORBSTS(pState) (HDA_REG(pState, CORBSTS))
182#define ICH6_HDA_CORBSTS_CMEI_SHIFT (0)
183
184#define ICH6_HDA_REG_CORBSIZE 19 /* 0x4E */
185#define ICH6_HDA_CORBSIZE_SZ_CAP 0xF0
186#define ICH6_HDA_CORBSIZE_SZ 0x3
187#define CORBSIZE_SZ(pState) (HDA_REG(pState, ICH6_HDA_REG_CORBSIZE) & ICH6_HDA_CORBSIZE_SZ)
188#define CORBSIZE_SZ_CAP(pState) (HDA_REG(pState, ICH6_HDA_REG_CORBSIZE) & ICH6_HDA_CORBSIZE_SZ_CAP)
189/* till ich 10 sizes of CORB and RIRB are hardcoded to 256 in real hw */
190
191#define ICH6_HDA_REG_RIRLBASE 20 /* 0x50 */
192#define RIRLBASE(pState) (HDA_REG((pState), RIRLBASE))
193
194#define ICH6_HDA_REG_RIRUBASE 21 /* 0x54 */
195#define RIRUBASE(pState) (HDA_REG((pState), RIRUBASE))
196
197#define ICH6_HDA_REG_RIRBWP 22 /* 0x58 */
198#define ICH6_HDA_RIRBWP_RST_SHIFT (15)
199#define ICH6_HDA_RIRBWP_WP_MASK 0xFF
200#define RIRBWP(pState) (HDA_REG(pState, RIRBWP))
201
202#define ICH6_HDA_REG_RINTCNT 23 /* 0x5A */
203#define RINTCNT(pState) (HDA_REG((pState), RINTCNT))
204#define RINTCNT_N(pState) (RINTCNT((pState)) & 0xff)
205
206#define ICH6_HDA_REG_RIRBCTL 24 /* 0x5C */
207#define ICH6_HDA_RIRBCTL_RIC_SHIFT (0)
208#define ICH6_HDA_RIRBCTL_DMA_SHIFT (1)
209#define ICH6_HDA_ROI_DMA_SHIFT (2)
210#define RIRBCTL(pState) (HDA_REG((pState), RIRBCTL))
211#define RIRBCTL_RIRB_RIC(pState) (HDA_REG_FLAG_VALUE(pState, RIRBCTL, RIC))
212#define RIRBCTL_RIRB_DMA(pState) (HDA_REG_FLAG_VALUE((pState), RIRBCTL, DMA)
213#define RIRBCTL_ROI(pState) (HDA_REG_FLAG_VALUE((pState), RIRBCTL, ROI))
214
215#define ICH6_HDA_REG_RIRBSTS 25 /* 0x5D */
216#define ICH6_HDA_RIRBSTS_RINTFL_SHIFT (0)
217#define ICH6_HDA_RIRBSTS_RIRBOIS_SHIFT (2)
218#define RIRBSTS(pState) (HDA_REG(pState, RIRBSTS))
219#define RIRBSTS_RINTFL(pState) (HDA_REG_FLAG_VALUE(pState, RIRBSTS, RINTFL))
220#define RIRBSTS_RIRBOIS(pState) (HDA_REG_FLAG_VALUE(pState, RIRBSTS, RIRBOIS))
221
222#define ICH6_HDA_REG_RIRBSIZE 26 /* 0x5E */
223#define ICH6_HDA_RIRBSIZE_SZ_CAP 0xF0
224#define ICH6_HDA_RIRBSIZE_SZ 0x3
225
226#define RIRBSIZE_SZ(pState) (HDA_REG(pState, ICH6_HDA_REG_RIRBSIZE) & ICH6_HDA_RIRBSIZE_SZ)
227#define RIRBSIZE_SZ_CAP(pState) (HDA_REG(pState, ICH6_HDA_REG_RIRBSIZE) & ICH6_HDA_RIRBSIZE_SZ_CAP)
228
229
230#define ICH6_HDA_REG_IC 27 /* 0x60 */
231#define IC(pState) (HDA_REG(pState, IC))
232#define ICH6_HDA_REG_IR 28 /* 0x64 */
233#define IR(pState) (HDA_REG(pState, IR))
234#define ICH6_HDA_REG_IRS 29 /* 0x68 */
235#define ICH6_HDA_IRS_ICB_SHIFT (0)
236#define ICH6_HDA_IRS_IRV_SHIFT (1)
237#define IRS(pState) (HDA_REG(pState, IRS))
238#define IRS_ICB(pState) (HDA_REG_FLAG_VALUE(pState, IRS, ICB))
239#define IRS_IRV(pState) (HDA_REG_FLAG_VALUE(pState, IRS, IRV))
240
241#define ICH6_HDA_REG_DPLBASE 30 /* 0x70 */
242#define DPLBASE(pState) (HDA_REG((pState), DPLBASE))
243#define ICH6_HDA_REG_DPUBASE 31 /* 0x74 */
244#define DPUBASE(pState) (HDA_REG((pState), DPUBASE))
245#define DPBASE_ENABLED 1
246#define DPBASE_ADDR_MASK (~0x7f)
247
248#define HDA_STREAM_REG_DEF(name, num) (ICH6_HDA_REG_SD##num##name)
249#define HDA_STREAM_REG(pState, name, num) (HDA_REG((pState), N_(HDA_STREAM_REG_DEF(name, num))))
250/* Note: sdnum here _MUST_ be stream reg number [0,7] */
251#define HDA_STREAM_REG2(pState, name, sdnum) (HDA_REG_IND((pState), ICH6_HDA_REG_SD0##name + (sdnum) * 10))
252
253#define ICH6_HDA_REG_SD0CTL 32 /* 0x80 */
254#define ICH6_HDA_REG_SD1CTL (HDA_STREAM_REG_DEF(CTL, 0) + 10) /* 0xA0 */
255#define ICH6_HDA_REG_SD2CTL (HDA_STREAM_REG_DEF(CTL, 0) + 20) /* 0xC0 */
256#define ICH6_HDA_REG_SD3CTL (HDA_STREAM_REG_DEF(CTL, 0) + 30) /* 0xE0 */
257#define ICH6_HDA_REG_SD4CTL (HDA_STREAM_REG_DEF(CTL, 0) + 40) /* 0x100 */
258#define ICH6_HDA_REG_SD5CTL (HDA_STREAM_REG_DEF(CTL, 0) + 50) /* 0x120 */
259#define ICH6_HDA_REG_SD6CTL (HDA_STREAM_REG_DEF(CTL, 0) + 60) /* 0x140 */
260#define ICH6_HDA_REG_SD7CTL (HDA_STREAM_REG_DEF(CTL, 0) + 70) /* 0x160 */
261
262#define SD(func, num) SD##num##func
263#define SDCTL(pState, num) HDA_REG((pState), SD(CTL, num))
264#define SDCTL_NUM(pState, num) ((SDCTL((pState), num) & HDA_REG_FIELD_MASK(SDCTL,NUM)) >> HDA_REG_FIELD_SHIFT(SDCTL, NUM))
265#define ICH6_HDA_SDCTL_NUM_MASK (0xF)
266#define ICH6_HDA_SDCTL_NUM_SHIFT (20)
267#define ICH6_HDA_SDCTL_DIR_SHIFT (19)
268#define ICH6_HDA_SDCTL_TP_SHIFT (18)
269#define ICH6_HDA_SDCTL_STRIPE_MASK (0x3)
270#define ICH6_HDA_SDCTL_STRIPE_SHIFT (16)
271#define ICH6_HDA_SDCTL_DEIE_SHIFT (4)
272#define ICH6_HDA_SDCTL_FEIE_SHIFT (3)
273#define ICH6_HDA_SDCTL_ICE_SHIFT (2)
274#define ICH6_HDA_SDCTL_RUN_SHIFT (1)
275#define ICH6_HDA_SDCTL_SRST_SHIFT (0)
276
277#define ICH6_HDA_REG_SD0STS 33 /* 0x83 */
278#define ICH6_HDA_REG_SD1STS (HDA_STREAM_REG_DEF(STS, 0) + 10) /* 0xA3 */
279#define ICH6_HDA_REG_SD2STS (HDA_STREAM_REG_DEF(STS, 0) + 20) /* 0xC3 */
280#define ICH6_HDA_REG_SD3STS (HDA_STREAM_REG_DEF(STS, 0) + 30) /* 0xE3 */
281#define ICH6_HDA_REG_SD4STS (HDA_STREAM_REG_DEF(STS, 0) + 40) /* 0x103 */
282#define ICH6_HDA_REG_SD5STS (HDA_STREAM_REG_DEF(STS, 0) + 50) /* 0x123 */
283#define ICH6_HDA_REG_SD6STS (HDA_STREAM_REG_DEF(STS, 0) + 60) /* 0x143 */
284#define ICH6_HDA_REG_SD7STS (HDA_STREAM_REG_DEF(STS, 0) + 70) /* 0x163 */
285
286#define SDSTS(pState, num) HDA_REG((pState), SD(STS, num))
287#define ICH6_HDA_SDSTS_FIFORDY_SHIFT (5)
288#define ICH6_HDA_SDSTS_DE_SHIFT (4)
289#define ICH6_HDA_SDSTS_FE_SHIFT (3)
290#define ICH6_HDA_SDSTS_BCIS_SHIFT (2)
291
292#define ICH6_HDA_REG_SD0LPIB 34 /* 0x84 */
293#define ICH6_HDA_REG_SD1LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 10) /* 0xA4 */
294#define ICH6_HDA_REG_SD2LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 20) /* 0xC4 */
295#define ICH6_HDA_REG_SD3LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 30) /* 0xE4 */
296#define ICH6_HDA_REG_SD4LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 40) /* 0x104 */
297#define ICH6_HDA_REG_SD5LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 50) /* 0x124 */
298#define ICH6_HDA_REG_SD6LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 60) /* 0x144 */
299#define ICH6_HDA_REG_SD7LPIB (HDA_STREAM_REG_DEF(LPIB, 0) + 70) /* 0x164 */
300
301#define SDLPIB(pState, num) HDA_REG((pState), SD(LPIB, num))
302
303#define ICH6_HDA_REG_SD0CBL 35 /* 0x88 */
304#define ICH6_HDA_REG_SD1CBL (HDA_STREAM_REG_DEF(CBL, 0) + 10) /* 0xA8 */
305#define ICH6_HDA_REG_SD2CBL (HDA_STREAM_REG_DEF(CBL, 0) + 20) /* 0xC8 */
306#define ICH6_HDA_REG_SD3CBL (HDA_STREAM_REG_DEF(CBL, 0) + 30) /* 0xE8 */
307#define ICH6_HDA_REG_SD4CBL (HDA_STREAM_REG_DEF(CBL, 0) + 40) /* 0x108 */
308#define ICH6_HDA_REG_SD5CBL (HDA_STREAM_REG_DEF(CBL, 0) + 50) /* 0x128 */
309#define ICH6_HDA_REG_SD6CBL (HDA_STREAM_REG_DEF(CBL, 0) + 60) /* 0x148 */
310#define ICH6_HDA_REG_SD7CBL (HDA_STREAM_REG_DEF(CBL, 0) + 70) /* 0x168 */
311
312#define SDLCBL(pState, num) HDA_REG((pState), SD(CBL, num))
313
314#define ICH6_HDA_REG_SD0LVI 36 /* 0x8C */
315#define ICH6_HDA_REG_SD1LVI (HDA_STREAM_REG_DEF(LVI, 0) + 10) /* 0xAC */
316#define ICH6_HDA_REG_SD2LVI (HDA_STREAM_REG_DEF(LVI, 0) + 20) /* 0xCC */
317#define ICH6_HDA_REG_SD3LVI (HDA_STREAM_REG_DEF(LVI, 0) + 30) /* 0xEC */
318#define ICH6_HDA_REG_SD4LVI (HDA_STREAM_REG_DEF(LVI, 0) + 40) /* 0x10C */
319#define ICH6_HDA_REG_SD5LVI (HDA_STREAM_REG_DEF(LVI, 0) + 50) /* 0x12C */
320#define ICH6_HDA_REG_SD6LVI (HDA_STREAM_REG_DEF(LVI, 0) + 60) /* 0x14C */
321#define ICH6_HDA_REG_SD7LVI (HDA_STREAM_REG_DEF(LVI, 0) + 70) /* 0x16C */
322
323#define SDLVI(pState, num) HDA_REG((pState), SD(LVI, num))
324
325#define ICH6_HDA_REG_SD0FIFOW 37 /* 0x8E */
326#define ICH6_HDA_REG_SD1FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 10) /* 0xAE */
327#define ICH6_HDA_REG_SD2FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 20) /* 0xCE */
328#define ICH6_HDA_REG_SD3FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 30) /* 0xEE */
329#define ICH6_HDA_REG_SD4FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 40) /* 0x10E */
330#define ICH6_HDA_REG_SD5FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 50) /* 0x12E */
331#define ICH6_HDA_REG_SD6FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 60) /* 0x14E */
332#define ICH6_HDA_REG_SD7FIFOW (HDA_STREAM_REG_DEF(FIFOW, 0) + 70) /* 0x16E */
333
334/*
335 * ICH6 datasheet defined limits for FIFOW values (18.2.38)
336 */
337#define HDA_SDFIFOW_8B (0x2)
338#define HDA_SDFIFOW_16B (0x3)
339#define HDA_SDFIFOW_32B (0x4)
340#define SDFIFOW(pState, num) HDA_REG((pState), SD(FIFOW, num))
341
342#define ICH6_HDA_REG_SD0FIFOS 38 /* 0x90 */
343#define ICH6_HDA_REG_SD1FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 10) /* 0xB0 */
344#define ICH6_HDA_REG_SD2FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 20) /* 0xD0 */
345#define ICH6_HDA_REG_SD3FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 30) /* 0xF0 */
346#define ICH6_HDA_REG_SD4FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 40) /* 0x110 */
347#define ICH6_HDA_REG_SD5FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 50) /* 0x130 */
348#define ICH6_HDA_REG_SD6FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 60) /* 0x150 */
349#define ICH6_HDA_REG_SD7FIFOS (HDA_STREAM_REG_DEF(FIFOS, 0) + 70) /* 0x170 */
350
351/*
352 * ICH6 datasheet defines limits for FIFOS registers (18.2.39)
353 * formula: size - 1
354 * Other values not listed are not supported.
355 */
356#define HDA_SDONFIFO_16B (0xF) /* 8-, 16-, 20-, 24-, 32-bit Output Streams */
357#define HDA_SDONFIFO_32B (0x1F) /* 8-, 16-, 20-, 24-, 32-bit Output Streams */
358#define HDA_SDONFIFO_64B (0x3F) /* 8-, 16-, 20-, 24-, 32-bit Output Streams */
359#define HDA_SDONFIFO_128B (0x7F) /* 8-, 16-, 20-, 24-, 32-bit Output Streams */
360#define HDA_SDONFIFO_192B (0xBF) /* 8-, 16-, 20-, 24-, 32-bit Output Streams */
361#define HDA_SDONFIFO_256B (0xFF) /* 20-, 24-bit Output Streams */
362#define HDA_SDINFIFO_120B (0x77) /* 8-, 16-, 20-, 24-, 32-bit Input Streams */
363#define HDA_SDINFIFO_160B (0x9F) /* 20-, 24-bit Input Streams Streams */
364#define SDFIFOS(pState, num) HDA_REG((pState), SD(FIFOS, num))
365
366#define ICH6_HDA_REG_SD0FMT 39 /* 0x92 */
367#define ICH6_HDA_REG_SD1FMT (HDA_STREAM_REG_DEF(FMT, 0) + 10) /* 0xB2 */
368#define ICH6_HDA_REG_SD2FMT (HDA_STREAM_REG_DEF(FMT, 0) + 20) /* 0xD2 */
369#define ICH6_HDA_REG_SD3FMT (HDA_STREAM_REG_DEF(FMT, 0) + 30) /* 0xF2 */
370#define ICH6_HDA_REG_SD4FMT (HDA_STREAM_REG_DEF(FMT, 0) + 40) /* 0x112 */
371#define ICH6_HDA_REG_SD5FMT (HDA_STREAM_REG_DEF(FMT, 0) + 50) /* 0x132 */
372#define ICH6_HDA_REG_SD6FMT (HDA_STREAM_REG_DEF(FMT, 0) + 60) /* 0x152 */
373#define ICH6_HDA_REG_SD7FMT (HDA_STREAM_REG_DEF(FMT, 0) + 70) /* 0x172 */
374
375#define SDFMT(pState, num) (HDA_REG((pState), SD(FMT, num)))
376#define ICH6_HDA_SDFMT_BASE_RATE_SHIFT (14)
377#define ICH6_HDA_SDFMT_MULT_SHIFT (11)
378#define ICH6_HDA_SDFMT_MULT_MASK (0x7)
379#define ICH6_HDA_SDFMT_DIV_SHIFT (8)
380#define ICH6_HDA_SDFMT_DIV_MASK (0x7)
381#define ICH6_HDA_SDFMT_BITS_SHIFT (4)
382#define ICH6_HDA_SDFMT_BITS_MASK (0x7)
383#define SDFMT_BASE_RATE(pState, num) ((SDFMT(pState, num) & HDA_REG_FIELD_FLAG_MASK(SDFMT, BASE_RATE)) >> HDA_REG_FIELD_SHIFT(SDFMT, BASE_RATE))
384#define SDFMT_MULT(pState, num) ((SDFMT((pState), num) & HDA_REG_FIELD_MASK(SDFMT,MULT)) >> HDA_REG_FIELD_SHIFT(SDFMT, MULT))
385#define SDFMT_DIV(pState, num) ((SDFMT((pState), num) & HDA_REG_FIELD_MASK(SDFMT,DIV)) >> HDA_REG_FIELD_SHIFT(SDFMT, DIV))
386
387#define ICH6_HDA_REG_SD0BDPL 40 /* 0x98 */
388#define ICH6_HDA_REG_SD1BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 10) /* 0xB8 */
389#define ICH6_HDA_REG_SD2BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 20) /* 0xD8 */
390#define ICH6_HDA_REG_SD3BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 30) /* 0xF8 */
391#define ICH6_HDA_REG_SD4BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 40) /* 0x118 */
392#define ICH6_HDA_REG_SD5BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 50) /* 0x138 */
393#define ICH6_HDA_REG_SD6BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 60) /* 0x158 */
394#define ICH6_HDA_REG_SD7BDPL (HDA_STREAM_REG_DEF(BDPL, 0) + 70) /* 0x178 */
395
396#define SDBDPL(pState, num) HDA_REG((pState), SD(BDPL, num))
397
398#define ICH6_HDA_REG_SD0BDPU 41 /* 0x9C */
399#define ICH6_HDA_REG_SD1BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 10) /* 0xBC */
400#define ICH6_HDA_REG_SD2BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 20) /* 0xDC */
401#define ICH6_HDA_REG_SD3BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 30) /* 0xFC */
402#define ICH6_HDA_REG_SD4BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 40) /* 0x11C */
403#define ICH6_HDA_REG_SD5BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 50) /* 0x13C */
404#define ICH6_HDA_REG_SD6BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 60) /* 0x15C */
405#define ICH6_HDA_REG_SD7BDPU (HDA_STREAM_REG_DEF(BDPU, 0) + 70) /* 0x17C */
406
407#define SDBDPU(pState, num) HDA_REG((pState), SD(BDPU, num))
408
409
410typedef struct HDABDLEDESC
411{
412 uint64_t u64BdleCviAddr;
413 uint32_t u32BdleMaxCvi;
414 uint32_t u32BdleCvi;
415 uint32_t u32BdleCviLen;
416 uint32_t u32BdleCviPos;
417 bool fBdleCviIoc;
418 uint32_t cbUnderFifoW;
419 uint8_t au8HdaBuffer[HDA_SDONFIFO_256B + 1];
420} HDABDLEDESC, *PHDABDLEDESC;
421
422
423/** HDABDLEDESC field descriptors the v3+ saved state. */
424static SSMFIELD const g_aHdaBDLEDescFields[] =
425{
426 SSMFIELD_ENTRY( HDABDLEDESC, u64BdleCviAddr),
427 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleMaxCvi),
428 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCvi),
429 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCviLen),
430 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCviPos),
431 SSMFIELD_ENTRY( HDABDLEDESC, fBdleCviIoc),
432 SSMFIELD_ENTRY( HDABDLEDESC, cbUnderFifoW),
433 SSMFIELD_ENTRY( HDABDLEDESC, au8HdaBuffer),
434 SSMFIELD_ENTRY_TERM()
435};
436
437/** HDABDLEDESC field descriptors the v1 and v2 saved state. */
438static SSMFIELD const g_aHdaBDLEDescFieldsOld[] =
439{
440 SSMFIELD_ENTRY( HDABDLEDESC, u64BdleCviAddr),
441 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleMaxCvi),
442 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCvi),
443 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCviLen),
444 SSMFIELD_ENTRY( HDABDLEDESC, u32BdleCviPos),
445 SSMFIELD_ENTRY( HDABDLEDESC, fBdleCviIoc),
446 SSMFIELD_ENTRY_PAD_HC_AUTO(3, 3),
447 SSMFIELD_ENTRY( HDABDLEDESC, cbUnderFifoW),
448 SSMFIELD_ENTRY( HDABDLEDESC, au8HdaBuffer),
449 SSMFIELD_ENTRY_TERM()
450};
451
452typedef struct HDASTREAMTRANSFERDESC
453{
454 uint64_t u64BaseDMA;
455 uint32_t u32Ctl;
456 uint32_t *pu32Sts;
457 uint8_t u8Strm;
458 uint32_t *pu32Lpib;
459 uint32_t u32Cbl;
460 uint32_t u32Fifos;
461} HDASTREAMTRANSFERDESC, *PHDASTREAMTRANSFERDESC;
462
463typedef struct INTELHDLinkState
464{
465 /** Pointer to the device instance. */
466 PPDMDEVINSR3 pDevIns;
467 /** Pointer to the connector of the attached audio driver. */
468 PPDMIAUDIOCONNECTOR pDrv;
469 /** Pointer to the attached audio driver. */
470 PPDMIBASE pDrvBase;
471 /** The base interface for LUN\#0. */
472 PDMIBASE IBase;
473 RTGCPHYS addrMMReg;
474 uint32_t au32Regs[HDA_NREGS];
475 HDABDLEDESC stInBdle;
476 HDABDLEDESC stOutBdle;
477 HDABDLEDESC stMicBdle;
478 /* Interrupt on completion */
479 bool fCviIoc;
480 uint64_t u64CORBBase;
481 uint64_t u64RIRBBase;
482 uint64_t u64DPBase;
483 /* pointer on CORB buf */
484 uint32_t *pu32CorbBuf;
485 /* size in bytes of CORB buf */
486 uint32_t cbCorbBuf;
487 /* pointer on RIRB buf */
488 uint64_t *pu64RirbBuf;
489 /* size in bytes of RIRB buf */
490 uint32_t cbRirbBuf;
491 /* indicates if HDA in reset. */
492 bool fInReset;
493 CODECState Codec;
494 uint8_t u8Counter;
495 uint64_t u64BaseTS;
496} INTELHDLinkState, *PINTELHDLinkState;
497
498#define ICH6_HDASTATE_2_DEVINS(pINTELHD) ((pINTELHD)->pDevIns)
499#define PCIDEV_2_ICH6_HDASTATE(pPciDev) ((PCIINTELHDLinkState *)(pPciDev))
500
501#define ISD0FMT_TO_AUDIO_SELECTOR(pState) (AUDIO_FORMAT_SELECTOR(&(pState)->Codec, In, \
502 SDFMT_BASE_RATE(pState, 0), SDFMT_MULT(pState, 0), SDFMT_DIV(pState, 0)))
503#define OSD0FMT_TO_AUDIO_SELECTOR(pState) (AUDIO_FORMAT_SELECTOR(&(pState)->Codec, Out, \
504 SDFMT_BASE_RATE(pState, 4), SDFMT_MULT(pState, 4), SDFMT_DIV(pState, 4)))
505
506
507
508
509typedef struct PCIINTELHDLinkState
510{
511 PCIDevice dev;
512 INTELHDLinkState hda;
513} PCIINTELHDLinkState;
514
515
516DECLCALLBACK(int) hdaRegReadUnimplemented(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
517DECLCALLBACK(int) hdaRegWriteUnimplemented(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
518DECLCALLBACK(int) hdaRegReadGCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
519DECLCALLBACK(int) hdaRegWriteGCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
520DECLCALLBACK(int) hdaRegReadSTATESTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
521DECLCALLBACK(int) hdaRegWriteSTATESTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
522DECLCALLBACK(int) hdaRegReadGCAP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
523DECLCALLBACK(int) hdaRegReadINTSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
524DECLCALLBACK(int) hdaRegReadWALCLK(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
525DECLCALLBACK(int) hdaRegWriteINTSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
526DECLCALLBACK(int) hdaRegWriteCORBWP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
527DECLCALLBACK(int) hdaRegWriteCORBRP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
528DECLCALLBACK(int) hdaRegWriteCORBCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
529DECLCALLBACK(int) hdaRegWriteCORBSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
530DECLCALLBACK(int) hdaRegWriteRIRBWP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
531DECLCALLBACK(int) hdaRegWriteRIRBSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
532DECLCALLBACK(int) hdaRegWriteIRS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
533DECLCALLBACK(int) hdaRegReadIRS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
534DECLCALLBACK(int) hdaRegWriteSDCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
535DECLCALLBACK(int) hdaRegReadSDCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
536
537DECLCALLBACK(int) hdaRegWriteSDSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
538DECLCALLBACK(int) hdaRegWriteSDLVI(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
539DECLCALLBACK(int) hdaRegWriteSDFIFOW(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
540DECLCALLBACK(int) hdaRegWriteSDFIFOS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
541DECLCALLBACK(int) hdaRegWriteSDFMT(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
542DECLCALLBACK(int) hdaRegWriteSDBDPL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
543DECLCALLBACK(int) hdaRegWriteSDBDPU(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
544DECLCALLBACK(int) hdaRegWriteBase(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
545DECLCALLBACK(int) hdaRegReadU32(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
546DECLCALLBACK(int) hdaRegWriteU32(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
547DECLCALLBACK(int) hdaRegReadU24(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
548DECLCALLBACK(int) hdaRegWriteU24(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
549DECLCALLBACK(int) hdaRegReadU16(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
550DECLCALLBACK(int) hdaRegWriteU16(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
551DECLCALLBACK(int) hdaRegReadU8(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
552DECLCALLBACK(int) hdaRegWriteU8(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t pu32Value);
553
554static inline void hdaInitTransferDescriptor(PINTELHDLinkState pState, PHDABDLEDESC pBdle, uint8_t u8Strm, PHDASTREAMTRANSFERDESC pStreamDesc);
555static int hdaMMIORegLookup(INTELHDLinkState* pState, uint32_t u32Offset);
556static void hdaFetchBdle(INTELHDLinkState *pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc);
557#ifdef LOG_ENABLED
558static void dump_bd(INTELHDLinkState *pState, PHDABDLEDESC pBdle, uint64_t u64BaseDMA);
559#endif
560
561
562/* see 302349 p 6.2*/
563const static struct stIchIntelHDRegMap
564{
565 /** Register offset in the register space. */
566 uint32_t offset;
567 /** Size in bytes. Registers of size > 4 are in fact tables. */
568 uint32_t size;
569 /** Readable bits. */
570 uint32_t readable;
571 /** Writable bits. */
572 uint32_t writable;
573 /** Read callback. */
574 int (*pfnRead)(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value);
575 /** Write callback. */
576 int (*pfnWrite)(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value);
577 /** Abbreviated name. */
578 const char *abbrev;
579 /** Full name. */
580 const char *name;
581} s_ichIntelHDRegMap[HDA_NREGS] =
582{
583 /* offset size read mask write mask read callback write callback abbrev full name */
584 /*------- ------- ---------- ---------- ----------------------- ------------------------ ---------- ------------------------------*/
585 { 0x00000, 0x00002, 0x0000FFFB, 0x00000000, hdaRegReadGCAP , hdaRegWriteUnimplemented, "GCAP" , "Global Capabilities" },
586 { 0x00002, 0x00001, 0x000000FF, 0x00000000, hdaRegReadU8 , hdaRegWriteUnimplemented, "VMIN" , "Minor Version" },
587 { 0x00003, 0x00001, 0x000000FF, 0x00000000, hdaRegReadU8 , hdaRegWriteUnimplemented, "VMAJ" , "Major Version" },
588 { 0x00004, 0x00002, 0x0000FFFF, 0x00000000, hdaRegReadU16 , hdaRegWriteUnimplemented, "OUTPAY" , "Output Payload Capabilities" },
589 { 0x00006, 0x00002, 0x0000FFFF, 0x00000000, hdaRegReadU16 , hdaRegWriteUnimplemented, "INPAY" , "Input Payload Capabilities" },
590 { 0x00008, 0x00004, 0x00000103, 0x00000103, hdaRegReadGCTL , hdaRegWriteGCTL , "GCTL" , "Global Control" },
591 { 0x0000c, 0x00002, 0x00007FFF, 0x00007FFF, hdaRegReadU16 , hdaRegWriteU16 , "WAKEEN" , "Wake Enable" },
592 { 0x0000e, 0x00002, 0x00000007, 0x00000007, hdaRegReadU8 , hdaRegWriteSTATESTS , "STATESTS" , "State Change Status" },
593 { 0x00010, 0x00002, 0xFFFFFFFF, 0x00000000, hdaRegReadUnimplemented, hdaRegWriteUnimplemented, "GSTS" , "Global Status" },
594 { 0x00020, 0x00004, 0xC00000FF, 0xC00000FF, hdaRegReadU32 , hdaRegWriteU32 , "INTCTL" , "Interrupt Control" },
595 { 0x00024, 0x00004, 0xC00000FF, 0x00000000, hdaRegReadINTSTS , hdaRegWriteUnimplemented, "INTSTS" , "Interrupt Status" },
596 { 0x00030, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadWALCLK , hdaRegWriteUnimplemented, "WALCLK" , "Wall Clock Counter" },
597 /// @todo r=michaln: Doesn't the SSYNC register need to actually stop the stream(s)?
598 { 0x00034, 0x00004, 0x000000FF, 0x000000FF, hdaRegReadU32 , hdaRegWriteU32 , "SSYNC" , "Stream Synchronization" },
599 { 0x00040, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteBase , "CORBLBASE" , "CORB Lower Base Address" },
600 { 0x00044, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteBase , "CORBUBASE" , "CORB Upper Base Address" },
601 { 0x00048, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteCORBWP , "CORBWP" , "CORB Write Pointer" },
602 { 0x0004A, 0x00002, 0x000000FF, 0x000080FF, hdaRegReadU8 , hdaRegWriteCORBRP , "CORBRP" , "CORB Read Pointer" },
603 { 0x0004C, 0x00001, 0x00000003, 0x00000003, hdaRegReadU8 , hdaRegWriteCORBCTL , "CORBCTL" , "CORB Control" },
604 { 0x0004D, 0x00001, 0x00000001, 0x00000001, hdaRegReadU8 , hdaRegWriteCORBSTS , "CORBSTS" , "CORB Status" },
605 { 0x0004E, 0x00001, 0x000000F3, 0x00000000, hdaRegReadU8 , hdaRegWriteUnimplemented, "CORBSIZE" , "CORB Size" },
606 { 0x00050, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteBase , "RIRBLBASE" , "RIRB Lower Base Address" },
607 { 0x00054, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteBase , "RIRBUBASE" , "RIRB Upper Base Address" },
608 { 0x00058, 0x00002, 0x000000FF, 0x00008000, hdaRegReadU8, hdaRegWriteRIRBWP , "RIRBWP" , "RIRB Write Pointer" },
609 { 0x0005A, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteU16 , "RINTCNT" , "Response Interrupt Count" },
610 { 0x0005C, 0x00001, 0x00000007, 0x00000007, hdaRegReadU8 , hdaRegWriteU8 , "RIRBCTL" , "RIRB Control" },
611 { 0x0005D, 0x00001, 0x00000005, 0x00000005, hdaRegReadU8 , hdaRegWriteRIRBSTS , "RIRBSTS" , "RIRB Status" },
612 { 0x0005E, 0x00001, 0x000000F3, 0x00000000, hdaRegReadU8 , hdaRegWriteUnimplemented, "RIRBSIZE" , "RIRB Size" },
613 { 0x00060, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "IC" , "Immediate Command" },
614 { 0x00064, 0x00004, 0x00000000, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteUnimplemented, "IR" , "Immediate Response" },
615 { 0x00068, 0x00004, 0x00000002, 0x00000002, hdaRegReadIRS , hdaRegWriteIRS , "IRS" , "Immediate Command Status" },
616 { 0x00070, 0x00004, 0xFFFFFFFF, 0xFFFFFF81, hdaRegReadU32 , hdaRegWriteBase , "DPLBASE" , "DMA Position Lower Base" },
617 { 0x00074, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteBase , "DPUBASE" , "DMA Position Upper Base" },
618
619 { 0x00080, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "ISD0CTL" , "Input Stream Descriptor 0 (ICD0) Control" },
620 { 0x00083, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "ISD0STS" , "ISD0 Status" },
621 { 0x00084, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "ISD0LPIB" , "ISD0 Link Position In Buffer" },
622 { 0x00088, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "ISD0CBL" , "ISD0 Cyclic Buffer Length" },
623 { 0x0008C, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "ISD0LVI" , "ISD0 Last Valid Index" },
624 { 0x0008E, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "ISD0FIFOW", "ISD0 FIFO Watermark" },
625 { 0x00090, 0x00002, 0x000000FF, 0x00000000, hdaRegReadU16 , hdaRegWriteU16 , "ISD0FIFOS", "ISD0 FIFO Size" },
626 { 0x00092, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "ISD0FMT" , "ISD0 Format" },
627 { 0x00098, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "ISD0BDPL" , "ISD0 Buffer Descriptor List Pointer-Lower Base Address" },
628 { 0x0009C, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "ISD0BDPU" , "ISD0 Buffer Descriptor List Pointer-Upper Base Address" },
629
630 { 0x000A0, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "ISD1CTL" , "Input Stream Descriptor 1 (ISD1) Control" },
631 { 0x000A3, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "ISD1STS" , "ISD1 Status" },
632 { 0x000A4, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "ISD1LPIB" , "ISD1 Link Position In Buffer" },
633 { 0x000A8, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "ISD1CBL" , "ISD1 Cyclic Buffer Length" },
634 { 0x000AC, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "ISD1LVI" , "ISD1 Last Valid Index" },
635 { 0x000AE, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "ISD1FIFOW", "ISD1 FIFO Watermark" },
636 { 0x000B0, 0x00002, 0x000000FF, 0x00000000, hdaRegReadU16 , hdaRegWriteU16 , "ISD1FIFOS", "ISD1 FIFO Size" },
637 { 0x000B2, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "ISD1FMT" , "ISD1 Format" },
638 { 0x000B8, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "ISD1BDPL" , "ISD1 Buffer Descriptor List Pointer-Lower Base Address" },
639 { 0x000BC, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "ISD1BDPU" , "ISD1 Buffer Descriptor List Pointer-Upper Base Address" },
640
641 { 0x000C0, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "ISD2CTL" , "Input Stream Descriptor 2 (ISD2) Control" },
642 { 0x000C3, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "ISD2STS" , "ISD2 Status" },
643 { 0x000C4, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "ISD2LPIB" , "ISD2 Link Position In Buffer" },
644 { 0x000C8, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "ISD2CBL" , "ISD2 Cyclic Buffer Length" },
645 { 0x000CC, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "ISD2LVI" , "ISD2 Last Valid Index" },
646 { 0x000CE, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "ISD2FIFOW", "ISD2 FIFO Watermark" },
647 { 0x000D0, 0x00002, 0x000000FF, 0x00000000, hdaRegReadU16 , hdaRegWriteU16 , "ISD2FIFOS", "ISD2 FIFO Size" },
648 { 0x000D2, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "ISD2FMT" , "ISD2 Format" },
649 { 0x000D8, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "ISD2BDPL" , "ISD2 Buffer Descriptor List Pointer-Lower Base Address" },
650 { 0x000DC, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "ISD2BDPU" , "ISD2 Buffer Descriptor List Pointer-Upper Base Address" },
651
652 { 0x000E0, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "ISD3CTL" , "Input Stream Descriptor 3 (ISD3) Control" },
653 { 0x000E3, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "ISD3STS" , "ISD3 Status" },
654 { 0x000E4, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "ISD3LPIB" , "ISD3 Link Position In Buffer" },
655 { 0x000E8, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "ISD3CBL" , "ISD3 Cyclic Buffer Length" },
656 { 0x000EC, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "ISD3LVI" , "ISD3 Last Valid Index" },
657 { 0x000EE, 0x00002, 0x00000005, 0x00000005, hdaRegReadU16 , hdaRegWriteU16 , "ISD3FIFOW", "ISD3 FIFO Watermark" },
658 { 0x000F0, 0x00002, 0x000000FF, 0x00000000, hdaRegReadU16 , hdaRegWriteU16 , "ISD3FIFOS", "ISD3 FIFO Size" },
659 { 0x000F2, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "ISD3FMT" , "ISD3 Format" },
660 { 0x000F8, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "ISD3BDPL" , "ISD3 Buffer Descriptor List Pointer-Lower Base Address" },
661 { 0x000FC, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "ISD3BDPU" , "ISD3 Buffer Descriptor List Pointer-Upper Base Address" },
662
663 { 0x00100, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadSDCTL , hdaRegWriteSDCTL , "OSD0CTL" , "Input Stream Descriptor 0 (OSD0) Control" },
664 { 0x00103, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "OSD0STS" , "OSD0 Status" },
665 { 0x00104, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "OSD0LPIB" , "OSD0 Link Position In Buffer" },
666 { 0x00108, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "OSD0CBL" , "OSD0 Cyclic Buffer Length" },
667 { 0x0010C, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "OSD0LVI" , "OSD0 Last Valid Index" },
668 { 0x0010E, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "OSD0FIFOW", "OSD0 FIFO Watermark" },
669 { 0x00110, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteSDFIFOS , "OSD0FIFOS", "OSD0 FIFO Size" },
670 { 0x00112, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "OSD0FMT" , "OSD0 Format" },
671 { 0x00118, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "OSD0BDPL" , "OSD0 Buffer Descriptor List Pointer-Lower Base Address" },
672 { 0x0011C, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "OSD0BDPU" , "OSD0 Buffer Descriptor List Pointer-Upper Base Address" },
673
674 { 0x00120, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "OSD1CTL" , "Input Stream Descriptor 0 (OSD1) Control" },
675 { 0x00123, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "OSD1STS" , "OSD1 Status" },
676 { 0x00124, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "OSD1LPIB" , "OSD1 Link Position In Buffer" },
677 { 0x00128, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "OSD1CBL" , "OSD1 Cyclic Buffer Length" },
678 { 0x0012C, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "OSD1LVI" , "OSD1 Last Valid Index" },
679 { 0x0012E, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "OSD1FIFOW", "OSD1 FIFO Watermark" },
680 { 0x00130, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteSDFIFOS , "OSD1FIFOS", "OSD1 FIFO Size" },
681 { 0x00132, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "OSD1FMT" , "OSD1 Format" },
682 { 0x00138, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "OSD1BDPL" , "OSD1 Buffer Descriptor List Pointer-Lower Base Address" },
683 { 0x0013C, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "OSD1BDPU" , "OSD1 Buffer Descriptor List Pointer-Upper Base Address" },
684
685 { 0x00140, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "OSD2CTL" , "Input Stream Descriptor 0 (OSD2) Control" },
686 { 0x00143, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "OSD2STS" , "OSD2 Status" },
687 { 0x00144, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "OSD2LPIB" , "OSD2 Link Position In Buffer" },
688 { 0x00148, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "OSD2CBL" , "OSD2 Cyclic Buffer Length" },
689 { 0x0014C, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "OSD2LVI" , "OSD2 Last Valid Index" },
690 { 0x0014E, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "OSD2FIFOW", "OSD2 FIFO Watermark" },
691 { 0x00150, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteSDFIFOS , "OSD2FIFOS", "OSD2 FIFO Size" },
692 { 0x00152, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "OSD2FMT" , "OSD2 Format" },
693 { 0x00158, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "OSD2BDPL" , "OSD2 Buffer Descriptor List Pointer-Lower Base Address" },
694 { 0x0015C, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "OSD2BDPU" , "OSD2 Buffer Descriptor List Pointer-Upper Base Address" },
695
696 { 0x00160, 0x00003, 0x00FF001F, 0x00F0001F, hdaRegReadU24 , hdaRegWriteSDCTL , "OSD3CTL" , "Input Stream Descriptor 0 (OSD3) Control" },
697 { 0x00163, 0x00001, 0x0000001C, 0x0000003C, hdaRegReadU8 , hdaRegWriteSDSTS , "OSD3STS" , "OSD3 Status" },
698 { 0x00164, 0x00004, 0xFFFFFFFF, 0x00000000, hdaRegReadU32 , hdaRegWriteU32 , "OSD3LPIB" , "OSD3 Link Position In Buffer" },
699 { 0x00168, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteU32 , "OSD3CBL" , "OSD3 Cyclic Buffer Length" },
700 { 0x0016C, 0x00002, 0x0000FFFF, 0x0000FFFF, hdaRegReadU16 , hdaRegWriteSDLVI , "OSD3LVI" , "OSD3 Last Valid Index" },
701 { 0x0016E, 0x00002, 0x00000007, 0x00000007, hdaRegReadU16 , hdaRegWriteSDFIFOW , "OSD3FIFOW", "OSD3 FIFO Watermark" },
702 { 0x00170, 0x00002, 0x000000FF, 0x000000FF, hdaRegReadU16 , hdaRegWriteSDFIFOS , "OSD3FIFOS", "OSD3 FIFO Size" },
703 { 0x00172, 0x00002, 0x00007F7F, 0x00007F7F, hdaRegReadU16 , hdaRegWriteSDFMT , "OSD3FMT" , "OSD3 Format" },
704 { 0x00178, 0x00004, 0xFFFFFF80, 0xFFFFFF80, hdaRegReadU32 , hdaRegWriteSDBDPL , "OSD3BDPL" , "OSD3 Buffer Descriptor List Pointer-Lower Base Address" },
705 { 0x0017C, 0x00004, 0xFFFFFFFF, 0xFFFFFFFF, hdaRegReadU32 , hdaRegWriteSDBDPU , "OSD3BDPU" , "OSD3 Buffer Descriptor List Pointer-Upper Base Address" },
706};
707
708static void inline hdaUpdatePosBuf(INTELHDLinkState *pState, PHDASTREAMTRANSFERDESC pStreamDesc)
709{
710 if (pState->u64DPBase & DPBASE_ENABLED)
711 PDMDevHlpPhysWrite(ICH6_HDASTATE_2_DEVINS(pState),
712 (pState->u64DPBase & DPBASE_ADDR_MASK) + pStreamDesc->u8Strm*8, pStreamDesc->pu32Lpib, sizeof(uint32_t));
713}
714static uint32_t inline hdaFifoWToSz(INTELHDLinkState *pState, PHDASTREAMTRANSFERDESC pStreamDesc)
715{
716#if 0
717 switch(HDA_STREAM_REG2(pState, FIFOW, pStreamDesc->u8Strm))
718 {
719 case HDA_SDFIFOW_8B: return 8;
720 case HDA_SDFIFOW_16B: return 16;
721 case HDA_SDFIFOW_32B: return 32;
722 default:
723 AssertMsgFailed(("hda: unsupported value (%x) in SDFIFOW(,%d)\n", HDA_REG_IND(pState, pStreamDesc->u8Strm), pStreamDesc->u8Strm));
724 }
725#endif
726 return 0;
727}
728
729static int hdaProcessInterrupt(INTELHDLinkState* pState)
730{
731#define IS_INTERRUPT_OCCURED_AND_ENABLED(pState, num) \
732 ( INTCTL_SX((pState), num) \
733 && (SDSTS(pState, num) & HDA_REG_FIELD_FLAG_MASK(SDSTS, BCIS)))
734 bool fIrq = false;
735 if ( INTCTL_CIE(pState)
736 && ( RIRBSTS_RINTFL(pState)
737 || RIRBSTS_RIRBOIS(pState)
738 || (STATESTS(pState) & WAKEEN(pState))))
739 fIrq = true;
740
741 if ( IS_INTERRUPT_OCCURED_AND_ENABLED(pState, 0)
742 || IS_INTERRUPT_OCCURED_AND_ENABLED(pState, 4))
743 fIrq = true;
744
745 if (INTCTL_GIE(pState))
746 {
747 Log(("hda: irq %s\n", fIrq ? "asserted" : "deasserted"));
748 PDMDevHlpPCISetIrq(ICH6_HDASTATE_2_DEVINS(pState), 0 , fIrq);
749 }
750 return VINF_SUCCESS;
751}
752
753static int hdaMMIORegLookup(INTELHDLinkState* pState, uint32_t u32Offset)
754{
755 int idxMiddle;
756 int idxHigh = RT_ELEMENTS(s_ichIntelHDRegMap);
757 int idxLow = 0;
758 /* Aliases HDA spec 3.3.45 */
759 switch(u32Offset)
760 {
761 case 0x2084:
762 return HDA_REG_IND_NAME(SD0LPIB);
763 case 0x20A4:
764 return HDA_REG_IND_NAME(SD1LPIB);
765 case 0x20C4:
766 return HDA_REG_IND_NAME(SD2LPIB);
767 case 0x20E4:
768 return HDA_REG_IND_NAME(SD3LPIB);
769 case 0x2104:
770 return HDA_REG_IND_NAME(SD4LPIB);
771 case 0x2124:
772 return HDA_REG_IND_NAME(SD5LPIB);
773 case 0x2144:
774 return HDA_REG_IND_NAME(SD6LPIB);
775 case 0x2164:
776 return HDA_REG_IND_NAME(SD7LPIB);
777 }
778 while (1)
779 {
780#ifdef DEBUG_vvl
781 Assert(( idxHigh >= 0
782 && idxLow >= 0));
783#endif
784 if ( idxHigh < idxLow
785 || idxHigh < 0)
786 break;
787 idxMiddle = idxLow + (idxHigh - idxLow)/2;
788 if (u32Offset < s_ichIntelHDRegMap[idxMiddle].offset)
789 {
790 idxHigh = idxMiddle - 1;
791 continue;
792 }
793 if (u32Offset >= s_ichIntelHDRegMap[idxMiddle].offset + s_ichIntelHDRegMap[idxMiddle].size)
794 {
795 idxLow = idxMiddle + 1;
796 continue;
797 }
798 if ( u32Offset >= s_ichIntelHDRegMap[idxMiddle].offset
799 && u32Offset < s_ichIntelHDRegMap[idxMiddle].offset + s_ichIntelHDRegMap[idxMiddle].size)
800 return idxMiddle;
801 }
802 return -1;
803}
804
805static int hdaCmdSync(INTELHDLinkState *pState, bool fLocal)
806{
807 int rc = VINF_SUCCESS;
808 if (fLocal)
809 {
810 Assert((HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA)));
811 rc = PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), pState->u64CORBBase, pState->pu32CorbBuf, pState->cbCorbBuf);
812 if (RT_FAILURE(rc))
813 AssertRCReturn(rc, rc);
814#ifdef DEBUG_CMD_BUFFER
815 uint8_t i = 0;
816 do
817 {
818 Log(("hda: corb%02x: ", i));
819 uint8_t j = 0;
820 do
821 {
822 const char *prefix;
823 if ((i + j) == CORBRP(pState))
824 prefix = "[R]";
825 else if ((i + j) == CORBWP(pState))
826 prefix = "[W]";
827 else
828 prefix = " "; /* three spaces */
829 Log(("%s%08x", prefix, pState->pu32CorbBuf[i + j]));
830 j++;
831 } while (j < 8);
832 Log(("\n"));
833 i += 8;
834 } while(i != 0);
835#endif
836 }
837 else
838 {
839 Assert((HDA_REG_FLAG_VALUE(pState, RIRBCTL, DMA)));
840 rc = PDMDevHlpPhysWrite(ICH6_HDASTATE_2_DEVINS(pState), pState->u64RIRBBase, pState->pu64RirbBuf, pState->cbRirbBuf);
841 if (RT_FAILURE(rc))
842 AssertRCReturn(rc, rc);
843#ifdef DEBUG_CMD_BUFFER
844 uint8_t i = 0;
845 do {
846 Log(("hda: rirb%02x: ", i));
847 uint8_t j = 0;
848 do {
849 const char *prefix;
850 if ((i + j) == RIRBWP(pState))
851 prefix = "[W]";
852 else
853 prefix = " ";
854 Log((" %s%016lx", prefix, pState->pu64RirbBuf[i + j]));
855 } while (++j < 8);
856 Log(("\n"));
857 i += 8;
858 } while (i != 0);
859#endif
860 }
861 return rc;
862}
863
864static int hdaCORBCmdProcess(INTELHDLinkState *pState)
865{
866 int rc;
867 uint8_t corbRp;
868 uint8_t corbWp;
869 uint8_t rirbWp;
870
871 PFNCODECVERBPROCESSOR pfn = (PFNCODECVERBPROCESSOR)NULL;
872
873 rc = hdaCmdSync(pState, true);
874 if (RT_FAILURE(rc))
875 AssertRCReturn(rc, rc);
876 corbRp = CORBRP(pState);
877 corbWp = CORBWP(pState);
878 rirbWp = RIRBWP(pState);
879 Assert((corbWp != corbRp));
880 Log(("hda: CORB(RP:%x, WP:%x) RIRBWP:%x\n", CORBRP(pState), CORBWP(pState), RIRBWP(pState)));
881 while (corbRp != corbWp)
882 {
883 uint32_t cmd;
884 uint64_t resp;
885 corbRp++;
886 cmd = pState->pu32CorbBuf[corbRp];
887 rc = (pState)->Codec.pfnLookup(&pState->Codec, cmd, &pfn);
888 if (RT_FAILURE(rc))
889 AssertRCReturn(rc, rc);
890 Assert(pfn);
891 (rirbWp)++;
892 rc = pfn(&pState->Codec, cmd, &resp);
893 if (RT_FAILURE(rc))
894 AssertRCReturn(rc, rc);
895 Log(("hda: verb:%08x->%016lx\n", cmd, resp));
896 if ( (resp & CODEC_RESPONSE_UNSOLICITED)
897 && !HDA_REG_FLAG_VALUE(pState, GCTL, UR))
898 {
899 Log(("hda: unexpected unsolicited response.\n"));
900 pState->au32Regs[ICH6_HDA_REG_CORBRP] = corbRp;
901 return rc;
902 }
903 pState->pu64RirbBuf[rirbWp] = resp;
904 pState->u8Counter++;
905 if (pState->u8Counter == RINTCNT_N(pState))
906 break;
907 }
908 pState->au32Regs[ICH6_HDA_REG_CORBRP] = corbRp;
909 pState->au32Regs[ICH6_HDA_REG_RIRBWP] = rirbWp;
910 rc = hdaCmdSync(pState, false);
911 Log(("hda: CORB(RP:%x, WP:%x) RIRBWP:%x\n", CORBRP(pState), CORBWP(pState), RIRBWP(pState)));
912 if (RIRBCTL_RIRB_RIC(pState))
913 {
914 RIRBSTS((pState)) |= HDA_REG_FIELD_FLAG_MASK(RIRBSTS,RINTFL);
915 pState->u8Counter = 0;
916 rc = hdaProcessInterrupt(pState);
917 }
918 if (RT_FAILURE(rc))
919 AssertRCReturn(rc, rc);
920 return rc;
921}
922
923static void hdaStreamReset(INTELHDLinkState *pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc, uint8_t u8Strm)
924{
925 Log(("hda: reset of stream (%d) started\n", u8Strm));
926 Assert(( pState
927 && pBdle
928 && pStreamDesc
929 && u8Strm <= 7));
930 memset(pBdle, 0, sizeof(HDABDLEDESC));
931 *pStreamDesc->pu32Lpib = 0;
932 *pStreamDesc->pu32Sts = 0;
933 /* According to ICH6 datasheet, 0x40000 is default value for stream descriptor register 23:20
934 * bits are reserved for stream number 18.2.33, resets SDnCTL except SRCT bit */
935 HDA_STREAM_REG2(pState, CTL, u8Strm) = 0x40000 | (HDA_STREAM_REG2(pState, CTL, u8Strm) & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST));
936
937 /* ICH6 defines default values (0x77 for input and 0xBF for output descriptors) of FIFO size. 18.2.39 */
938 HDA_STREAM_REG2(pState, FIFOS, u8Strm) = u8Strm < 4 ? HDA_SDINFIFO_120B : HDA_SDONFIFO_192B;
939 HDA_STREAM_REG2(pState, FIFOW, u8Strm) = u8Strm < 4 ? HDA_SDFIFOW_8B : HDA_SDFIFOW_32B;
940 HDA_STREAM_REG2(pState, CBL, u8Strm) = 0;
941 HDA_STREAM_REG2(pState, LVI, u8Strm) = 0;
942 HDA_STREAM_REG2(pState, FMT, u8Strm) = 0;
943 HDA_STREAM_REG2(pState, BDPU, u8Strm) = 0;
944 HDA_STREAM_REG2(pState, BDPL, u8Strm) = 0;
945 Log(("hda: reset of stream (%d) finished\n", u8Strm));
946}
947
948
949DECLCALLBACK(int)hdaRegReadUnimplemented(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
950{
951 *pu32Value = 0;
952 return VINF_SUCCESS;
953}
954DECLCALLBACK(int)hdaRegWriteUnimplemented(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
955{
956 return VINF_SUCCESS;
957}
958/* U8 */
959DECLCALLBACK(int)hdaRegReadU8(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
960{
961 Assert(((pState->au32Regs[index] & s_ichIntelHDRegMap[index].readable) & 0xffffff00) == 0);
962 return hdaRegReadU32(pState, offset, index, pu32Value);
963}
964
965DECLCALLBACK(int)hdaRegWriteU8(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
966{
967 Assert(((u32Value & 0xffffff00) == 0));
968 return hdaRegWriteU32(pState, offset, index, u32Value);
969}
970/* U16 */
971DECLCALLBACK(int)hdaRegReadU16(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
972{
973 Assert(((pState->au32Regs[index] & s_ichIntelHDRegMap[index].readable) & 0xffff0000) == 0);
974 return hdaRegReadU32(pState, offset, index, pu32Value);
975}
976
977DECLCALLBACK(int)hdaRegWriteU16(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
978{
979 Assert(((u32Value & 0xffff0000) == 0));
980 return hdaRegWriteU32(pState, offset, index, u32Value);
981}
982
983/* U24 */
984DECLCALLBACK(int)hdaRegReadU24(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
985{
986 Assert(((pState->au32Regs[index] & s_ichIntelHDRegMap[index].readable) & 0xff000000) == 0);
987 return hdaRegReadU32(pState, offset, index, pu32Value);
988}
989
990DECLCALLBACK(int)hdaRegWriteU24(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
991{
992 Assert(((u32Value & 0xff000000) == 0));
993 return hdaRegWriteU32(pState, offset, index, u32Value);
994}
995/* U32 */
996DECLCALLBACK(int)hdaRegReadU32(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
997{
998 *pu32Value = pState->au32Regs[index] & s_ichIntelHDRegMap[index].readable;
999 return VINF_SUCCESS;
1000}
1001
1002DECLCALLBACK(int)hdaRegWriteU32(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1003{
1004 pState->au32Regs[index] = (u32Value & s_ichIntelHDRegMap[index].writable)
1005 | (pState->au32Regs[index] & ~s_ichIntelHDRegMap[index].writable);
1006 return VINF_SUCCESS;
1007}
1008
1009DECLCALLBACK(int)hdaRegReadGCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1010{
1011 return hdaRegReadU32(pState, offset, index, pu32Value);
1012}
1013
1014DECLCALLBACK(int)hdaRegWriteGCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1015{
1016 if (u32Value & HDA_REG_FIELD_FLAG_MASK(GCTL, RST))
1017 {
1018 /* exit reset state */
1019 GCTL(pState) |= HDA_REG_FIELD_FLAG_MASK(GCTL, RST);
1020 pState->fInReset = false;
1021 }
1022 else
1023 {
1024 /* enter reset state*/
1025 if ( HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA)
1026 || HDA_REG_FLAG_VALUE(pState, RIRBCTL, DMA))
1027 {
1028 Log(("hda: HDA enters in reset with DMA(RIRB:%s, CORB:%s)\n",
1029 HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA) ? "on" : "off",
1030 HDA_REG_FLAG_VALUE(pState, RIRBCTL, DMA) ? "on" : "off"));
1031 }
1032 hdaReset(ICH6_HDASTATE_2_DEVINS(pState));
1033 GCTL(pState) &= ~HDA_REG_FIELD_FLAG_MASK(GCTL, RST);
1034 pState->fInReset = true;
1035 }
1036 if (u32Value & HDA_REG_FIELD_FLAG_MASK(GCTL, FSH))
1037 {
1038 /* Flush: GSTS:1 set, see 6.2.6*/
1039 GSTS(pState) |= HDA_REG_FIELD_FLAG_MASK(GSTS, FSH); /* set the flush state */
1040 /* DPLBASE and DPUBASE, should be initialized with initial value (see 6.2.6)*/
1041 }
1042 return VINF_SUCCESS;
1043}
1044
1045DECLCALLBACK(int)hdaRegWriteSTATESTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1046{
1047 uint32_t v = pState->au32Regs[index];
1048 uint32_t nv = u32Value & ICH6_HDA_STATES_SCSF;
1049 pState->au32Regs[index] &= ~(v & nv); /* write of 1 clears corresponding bit */
1050 return VINF_SUCCESS;
1051}
1052
1053DECLCALLBACK(int)hdaRegReadINTSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1054{
1055 uint32_t v = 0;
1056 if ( RIRBSTS_RIRBOIS(pState)
1057 || RIRBSTS_RINTFL(pState)
1058 || HDA_REG_FLAG_VALUE(pState, CORBSTS, CMEI)
1059 || STATESTS(pState))
1060 v |= RT_BIT(30);
1061#define HDA_IS_STREAM_EVENT(pState, stream) \
1062 ( (SDSTS((pState),stream) & HDA_REG_FIELD_FLAG_MASK(SDSTS, DE)) \
1063 || (SDSTS((pState),stream) & HDA_REG_FIELD_FLAG_MASK(SDSTS, FE)) \
1064 || (SDSTS((pState),stream) & HDA_REG_FIELD_FLAG_MASK(SDSTS, BCIS)))
1065#define MARK_STREAM(pState, stream, v) do {(v) |= HDA_IS_STREAM_EVENT((pState),stream) ? RT_BIT((stream)) : 0;}while(0)
1066 MARK_STREAM(pState, 0, v);
1067 MARK_STREAM(pState, 1, v);
1068 MARK_STREAM(pState, 2, v);
1069 MARK_STREAM(pState, 3, v);
1070 MARK_STREAM(pState, 4, v);
1071 MARK_STREAM(pState, 5, v);
1072 MARK_STREAM(pState, 6, v);
1073 MARK_STREAM(pState, 7, v);
1074 v |= v ? RT_BIT(31) : 0;
1075 *pu32Value = v;
1076 return VINF_SUCCESS;
1077}
1078
1079DECLCALLBACK(int)hdaRegReadWALCLK(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1080{
1081 /* HDA spec (1a): 3.3.16 WALCLK counter ticks with 24Mhz bitclock rate. */
1082 *pu32Value = (uint32_t)ASMMultU64ByU32DivByU32(PDMDevHlpTMTimeVirtGetNano(ICH6_HDASTATE_2_DEVINS(pState)) - pState->u64BaseTS, 24, 1000);
1083 return VINF_SUCCESS;
1084}
1085
1086DECLCALLBACK(int)hdaRegReadGCAP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1087{
1088 return hdaRegReadU16(pState, offset, index, pu32Value);
1089}
1090
1091DECLCALLBACK(int)hdaRegWriteCORBRP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1092{
1093 if (u32Value & HDA_REG_FIELD_FLAG_MASK(CORBRP, RST))
1094 CORBRP(pState) = 0;
1095 else
1096 return hdaRegWriteU8(pState, offset, index, u32Value);
1097 return VINF_SUCCESS;
1098}
1099
1100DECLCALLBACK(int)hdaRegWriteCORBCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1101{
1102 int rc = hdaRegWriteU8(pState, offset, index, u32Value);
1103 AssertRC(rc);
1104 if ( CORBWP(pState) != CORBRP(pState)
1105 && HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA) != 0)
1106 return hdaCORBCmdProcess(pState);
1107 return rc;
1108}
1109
1110DECLCALLBACK(int)hdaRegWriteCORBSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1111{
1112 uint32_t v = CORBSTS(pState);
1113 CORBSTS(pState) &= ~(v & u32Value);
1114 return VINF_SUCCESS;
1115}
1116
1117DECLCALLBACK(int)hdaRegWriteCORBWP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1118{
1119 int rc;
1120 rc = hdaRegWriteU16(pState, offset, index, u32Value);
1121 if (RT_FAILURE(rc))
1122 AssertRCReturn(rc, rc);
1123 if (CORBWP(pState) == CORBRP(pState))
1124 return VINF_SUCCESS;
1125 if (!HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA))
1126 return VINF_SUCCESS;
1127 rc = hdaCORBCmdProcess(pState);
1128 return rc;
1129}
1130
1131DECLCALLBACK(int)hdaRegReadSDCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1132{
1133 return hdaRegReadU24(pState, offset, index, pu32Value);
1134}
1135
1136DECLCALLBACK(int)hdaRegWriteSDCTL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1137{
1138 bool fRun = RT_BOOL((u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN)));
1139 bool fInRun = RT_BOOL((HDA_REG_IND(pState, index) & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN)));
1140 bool fReset = RT_BOOL((u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST)));
1141 bool fInReset = RT_BOOL((HDA_REG_IND(pState, index) & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST)));
1142 int rc = VINF_SUCCESS;
1143 if (fInReset)
1144 {
1145 /* Assert!!! Guest is resetting HDA's stream, we're expecting guest will mark stream as exit
1146 * from reset
1147 */
1148 Assert((!fReset));
1149 Log(("hda: guest initiate exit of stream reset.\n"));
1150 goto done;
1151 }
1152 else if (fReset)
1153 {
1154 /*
1155 * Assert!!! ICH6 datasheet 18.2.33 says that RUN bit should be cleared before initiation of reset.
1156 */
1157 uint8_t u8Strm = 0;
1158 PHDABDLEDESC pBdle = NULL;
1159 HDASTREAMTRANSFERDESC stStreamDesc;
1160 Assert((!fInRun && !fRun));
1161 switch (index)
1162 {
1163 case ICH6_HDA_REG_SD0CTL:
1164 u8Strm = 0;
1165 pBdle = &pState->stInBdle;
1166 break;
1167 case ICH6_HDA_REG_SD4CTL:
1168 u8Strm = 4;
1169 pBdle = &pState->stOutBdle;
1170 break;
1171 default:
1172 Log(("hda: changing SRST bit on non-attached stream\n"));
1173 goto done;
1174 }
1175 Log(("hda: guest initiate enter to stream reset.\n"));
1176 hdaInitTransferDescriptor(pState, pBdle, u8Strm, &stStreamDesc);
1177 hdaStreamReset(pState, pBdle, &stStreamDesc, u8Strm);
1178 goto done;
1179 }
1180
1181 /* we enter here to change DMA states only */
1182 if ( (fInRun && !fRun)
1183 || (fRun && !fInRun))
1184 {
1185 Assert((!fReset && !fInReset));
1186 switch (index)
1187 {
1188 case ICH6_HDA_REG_SD0CTL:
1189 AUD_set_active_in(pState->Codec.SwVoiceIn, fRun);
1190 break;
1191 case ICH6_HDA_REG_SD4CTL:
1192 AUD_set_active_out(pState->Codec.SwVoiceOut, fRun);
1193 break;
1194 default:
1195 Log(("hda: changing RUN bit on non-attached stream\n"));
1196 goto done;
1197 }
1198 }
1199
1200 done:
1201 rc = hdaRegWriteU24(pState, offset, index, u32Value);
1202 if (RT_FAILURE(rc))
1203 AssertRCReturn(rc, VINF_SUCCESS);
1204 return rc;
1205}
1206
1207DECLCALLBACK(int)hdaRegWriteSDSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1208{
1209 uint32_t v = HDA_REG_IND(pState, index);
1210 v &= ~(u32Value & v);
1211 HDA_REG_IND(pState, index) = v;
1212 hdaProcessInterrupt(pState);
1213 return VINF_SUCCESS;
1214}
1215
1216DECLCALLBACK(int)hdaRegWriteSDLVI(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1217{
1218 int rc = hdaRegWriteU32(pState, offset, index, u32Value);
1219 if (RT_FAILURE(rc))
1220 AssertRCReturn(rc, VINF_SUCCESS);
1221 return rc;
1222}
1223
1224DECLCALLBACK(int)hdaRegWriteSDFIFOW(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1225{
1226 switch (u32Value)
1227 {
1228 case HDA_SDFIFOW_8B:
1229 case HDA_SDFIFOW_16B:
1230 case HDA_SDFIFOW_32B:
1231 return hdaRegWriteU16(pState, offset, index, u32Value);
1232 default:
1233 Log(("hda: Attempt to store unsupported value(%x) in SDFIFOW\n", u32Value));
1234 return hdaRegWriteU16(pState, offset, index, HDA_SDFIFOW_32B);
1235 }
1236 return VINF_SUCCESS;
1237}
1238/*
1239 * Note this method could be called for changing value on Output Streams only (ICH6 datacheet 18.2.39)
1240 *
1241 */
1242DECLCALLBACK(int)hdaRegWriteSDFIFOS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1243{
1244 switch (index)
1245 {
1246 /* SDInFIFOS is RO, n=0-3 */
1247 case ICH6_HDA_REG_SD0FIFOS:
1248 case ICH6_HDA_REG_SD1FIFOS:
1249 case ICH6_HDA_REG_SD2FIFOS:
1250 case ICH6_HDA_REG_SD3FIFOS:
1251 Log(("hda: Guest tries change value of FIFO size of Input Stream\n"));
1252 return VINF_SUCCESS;
1253 case ICH6_HDA_REG_SD4FIFOS:
1254 case ICH6_HDA_REG_SD5FIFOS:
1255 case ICH6_HDA_REG_SD6FIFOS:
1256 case ICH6_HDA_REG_SD7FIFOS:
1257 switch(u32Value)
1258 {
1259 case HDA_SDONFIFO_16B:
1260 case HDA_SDONFIFO_32B:
1261 case HDA_SDONFIFO_64B:
1262 case HDA_SDONFIFO_128B:
1263 case HDA_SDONFIFO_192B:
1264 return hdaRegWriteU16(pState, offset, index, u32Value);
1265
1266 case HDA_SDONFIFO_256B:
1267 Log(("hda: 256 bit is unsupported, HDA is switched into 192B mode\n"));
1268 default:
1269 return hdaRegWriteU16(pState, offset, index, HDA_SDONFIFO_192B);
1270 }
1271 return VINF_SUCCESS;
1272 default:
1273 AssertMsgFailed(("Something wierd happens with register lookup routine"));
1274 }
1275 return VINF_SUCCESS;
1276}
1277
1278static void inline hdaSdFmtToAudSettings(uint32_t u32SdFmt, audsettings_t *pAudSetting)
1279{
1280 Assert((pAudSetting));
1281#define EXTRACT_VALUE(v, mask, shift) ((v & ((mask) << (shift))) >> (shift))
1282 uint32_t u32Hz = (u32SdFmt & ICH6_HDA_SDFMT_BASE_RATE_SHIFT) ? 44100 : 48000;
1283 uint32_t u32HzMult = 1;
1284 uint32_t u32HzDiv = 1;
1285 switch (EXTRACT_VALUE(u32SdFmt, ICH6_HDA_SDFMT_MULT_MASK, ICH6_HDA_SDFMT_MULT_SHIFT))
1286 {
1287 case 0: u32HzMult = 1; break;
1288 case 1: u32HzMult = 2; break;
1289 case 2: u32HzMult = 3; break;
1290 case 3: u32HzMult = 4; break;
1291 default:
1292 Log(("hda: unsupported multiplier %x\n", u32SdFmt));
1293 }
1294 switch (EXTRACT_VALUE(u32SdFmt, ICH6_HDA_SDFMT_DIV_MASK, ICH6_HDA_SDFMT_DIV_SHIFT))
1295 {
1296 case 0: u32HzDiv = 1; break;
1297 case 1: u32HzDiv = 2; break;
1298 case 2: u32HzDiv = 3; break;
1299 case 3: u32HzDiv = 4; break;
1300 case 4: u32HzDiv = 5; break;
1301 case 5: u32HzDiv = 6; break;
1302 case 6: u32HzDiv = 7; break;
1303 case 7: u32HzDiv = 8; break;
1304 }
1305 pAudSetting->freq = u32Hz * u32HzMult / u32HzDiv;
1306
1307 switch (EXTRACT_VALUE(u32SdFmt, ICH6_HDA_SDFMT_BITS_MASK, ICH6_HDA_SDFMT_BITS_SHIFT))
1308 {
1309 case 0:
1310 Log(("hda: %s requested 8 bit\n", __FUNCTION__));
1311 pAudSetting->fmt = AUD_FMT_S8;
1312 break;
1313 case 1:
1314 Log(("hda: %s requested 16 bit\n", __FUNCTION__));
1315 pAudSetting->fmt = AUD_FMT_S16;
1316 break;
1317 case 2:
1318 Log(("hda: %s requested 20 bit\n", __FUNCTION__));
1319 break;
1320 case 3:
1321 Log(("hda: %s requested 24 bit\n", __FUNCTION__));
1322 break;
1323 case 4:
1324 Log(("hda: %s requested 32 bit\n", __FUNCTION__));
1325 pAudSetting->fmt = AUD_FMT_S32;
1326 break;
1327 default:
1328 AssertMsgFailed(("Unsupported"));
1329 }
1330 pAudSetting->nchannels = (u32SdFmt & 0xf) + 1;
1331 pAudSetting->fmt = AUD_FMT_S16;
1332 pAudSetting->endianness = 0;
1333#undef EXTRACT_VALUE
1334}
1335
1336DECLCALLBACK(int)hdaRegWriteSDFMT(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1337{
1338#ifdef VBOX_WITH_HDA_CODEC_EMU
1339 /* @todo here some more investigations are required. */
1340 int rc = 0;
1341 audsettings_t as;
1342 /* no reason to reopen voice with same settings */
1343 if (u32Value == HDA_REG_IND(pState, index))
1344 return VINF_SUCCESS;
1345 hdaSdFmtToAudSettings(u32Value, &as);
1346 switch (index)
1347 {
1348 case ICH6_HDA_REG_SD0FMT:
1349 rc = codecOpenVoice(&pState->Codec, PI_INDEX, &as);
1350 break;
1351 case ICH6_HDA_REG_SD4FMT:
1352 rc = codecOpenVoice(&pState->Codec, PO_INDEX, &as);
1353 break;
1354 default:
1355 Log(("HDA: attempt to change format on %d\n", index));
1356 rc = 0;
1357 }
1358 return hdaRegWriteU16(pState, offset, index, u32Value);
1359#else
1360 return hdaRegWriteU16(pState, offset, index, u32Value);
1361#endif
1362}
1363
1364DECLCALLBACK(int)hdaRegWriteSDBDPL(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1365{
1366 int rc = hdaRegWriteU32(pState, offset, index, u32Value);
1367 if (RT_FAILURE(rc))
1368 AssertRCReturn(rc, VINF_SUCCESS);
1369 return rc;
1370}
1371
1372DECLCALLBACK(int)hdaRegWriteSDBDPU(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1373{
1374 int rc = hdaRegWriteU32(pState, offset, index, u32Value);
1375 if (RT_FAILURE(rc))
1376 AssertRCReturn(rc, VINF_SUCCESS);
1377 return rc;
1378}
1379
1380DECLCALLBACK(int)hdaRegReadIRS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t *pu32Value)
1381{
1382 int rc = VINF_SUCCESS;
1383 /* regarding 3.4.3 we should mark IRS as busy in case CORB is active */
1384 if ( CORBWP(pState) != CORBRP(pState)
1385 || HDA_REG_FLAG_VALUE(pState, CORBCTL, DMA))
1386 IRS(pState) = HDA_REG_FIELD_FLAG_MASK(IRS, ICB); /* busy */
1387
1388 rc = hdaRegReadU32(pState, offset, index, pu32Value);
1389 return rc;
1390}
1391
1392DECLCALLBACK(int)hdaRegWriteIRS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1393{
1394 int rc = VINF_SUCCESS;
1395 uint64_t resp;
1396 PFNCODECVERBPROCESSOR pfn = (PFNCODECVERBPROCESSOR)NULL;
1397 /*
1398 * if guest set ICB bit of IRS register HDA should process verb in IC register and
1399 * writes response in IR register and set IRV (valid in case of success) bit of IRS register.
1400 */
1401 if ( u32Value & HDA_REG_FIELD_FLAG_MASK(IRS, ICB)
1402 && !IRS_ICB(pState))
1403 {
1404 uint32_t cmd = IC(pState);
1405 if (CORBWP(pState) != CORBRP(pState))
1406 {
1407 /*
1408 * 3.4.3 defines behaviour of immediate Command status register.
1409 */
1410 LogRel(("hda: guest has tried process immediate verb (%x) with active CORB\n", cmd));
1411 return rc;
1412 }
1413 IRS(pState) = HDA_REG_FIELD_FLAG_MASK(IRS, ICB); /* busy */
1414 Log(("hda: IC:%x\n", cmd));
1415 rc = pState->Codec.pfnLookup(&pState->Codec, cmd, &pfn);
1416 if (RT_FAILURE(rc))
1417 AssertRCReturn(rc, rc);
1418 rc = pfn(&pState->Codec, cmd, &resp);
1419 if (RT_FAILURE(rc))
1420 AssertRCReturn(rc, rc);
1421 IR(pState) = (uint32_t)resp;
1422 Log(("hda: IR:%x\n", IR(pState)));
1423 IRS(pState) = HDA_REG_FIELD_FLAG_MASK(IRS, IRV); /* result is ready */
1424 IRS(pState) &= ~HDA_REG_FIELD_FLAG_MASK(IRS, ICB); /* busy is clear */
1425 return rc;
1426 }
1427 /*
1428 * when guest's read the response it should clean the IRV bit of the IRS register.
1429 */
1430 if ( u32Value & HDA_REG_FIELD_FLAG_MASK(IRS, IRV)
1431 && IRS_IRV(pState))
1432 IRS(pState) &= ~HDA_REG_FIELD_FLAG_MASK(IRS, IRV);
1433 return rc;
1434}
1435
1436DECLCALLBACK(int)hdaRegWriteRIRBWP(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1437{
1438 if (u32Value & HDA_REG_FIELD_FLAG_MASK(RIRBWP, RST))
1439 {
1440 RIRBWP(pState) = 0;
1441 }
1442 /*The rest of bits are O, see 6.2.22 */
1443 return VINF_SUCCESS;
1444}
1445
1446DECLCALLBACK(int)hdaRegWriteBase(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1447{
1448 int rc = hdaRegWriteU32(pState, offset, index, u32Value);
1449 if (RT_FAILURE(rc))
1450 AssertRCReturn(rc, rc);
1451 switch(index)
1452 {
1453 case ICH6_HDA_REG_CORBLBASE:
1454 pState->u64CORBBase &= 0xFFFFFFFF00000000ULL;
1455 pState->u64CORBBase |= pState->au32Regs[index];
1456 break;
1457 case ICH6_HDA_REG_CORBUBASE:
1458 pState->u64CORBBase &= 0x00000000FFFFFFFFULL;
1459 pState->u64CORBBase |= ((uint64_t)pState->au32Regs[index] << 32);
1460 break;
1461 case ICH6_HDA_REG_RIRLBASE:
1462 pState->u64RIRBBase &= 0xFFFFFFFF00000000ULL;
1463 pState->u64RIRBBase |= pState->au32Regs[index];
1464 break;
1465 case ICH6_HDA_REG_RIRUBASE:
1466 pState->u64RIRBBase &= 0x00000000FFFFFFFFULL;
1467 pState->u64RIRBBase |= ((uint64_t)pState->au32Regs[index] << 32);
1468 break;
1469 case ICH6_HDA_REG_DPLBASE:
1470 /* @todo: first bit has special meaning */
1471 pState->u64DPBase &= 0xFFFFFFFF00000000ULL;
1472 pState->u64DPBase |= pState->au32Regs[index];
1473 break;
1474 case ICH6_HDA_REG_DPUBASE:
1475 pState->u64DPBase &= 0x00000000FFFFFFFFULL;
1476 pState->u64DPBase |= ((uint64_t)pState->au32Regs[index] << 32);
1477 break;
1478 default:
1479 AssertMsgFailed(("Invalid index"));
1480 }
1481 Log(("hda: CORB base:%llx RIRB base: %llx DP base: %llx\n", pState->u64CORBBase, pState->u64RIRBBase, pState->u64DPBase));
1482 return rc;
1483}
1484
1485DECLCALLBACK(int)hdaRegWriteRIRBSTS(INTELHDLinkState* pState, uint32_t offset, uint32_t index, uint32_t u32Value)
1486{
1487 uint8_t v = RIRBSTS(pState);
1488 RIRBSTS(pState) &= ~(v & u32Value);
1489
1490 return hdaProcessInterrupt(pState);
1491}
1492
1493#ifdef LOG_ENABLED
1494static void dump_bd(INTELHDLinkState *pState, PHDABDLEDESC pBdle, uint64_t u64BaseDMA)
1495{
1496#if 0
1497 uint64_t addr;
1498 uint32_t len;
1499 uint32_t ioc;
1500 uint8_t bdle[16];
1501 uint32_t counter;
1502 uint32_t i;
1503 uint32_t sum = 0;
1504 Assert(pBdle && pBdle->u32BdleMaxCvi);
1505 for (i = 0; i <= pBdle->u32BdleMaxCvi; ++i)
1506 {
1507 PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), u64BaseDMA + i*16, bdle, 16);
1508 addr = *(uint64_t *)bdle;
1509 len = *(uint32_t *)&bdle[8];
1510 ioc = *(uint32_t *)&bdle[12];
1511 Log(("hda: %s bdle[%d] a:%llx, len:%d, ioc:%d\n", (i == pBdle->u32BdleCvi? "[C]": " "), i, addr, len, ioc & 0x1));
1512 sum += len;
1513 }
1514 Log(("hda: sum: %d\n", sum));
1515 for (i = 0; i < 8; ++i)
1516 {
1517 PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), (pState->u64DPBase & DPBASE_ADDR_MASK) + i*8, &counter, sizeof(&counter));
1518 Log(("hda: %s stream[%d] counter=%x\n", i == SDCTL_NUM(pState, 4) || i == SDCTL_NUM(pState, 0)? "[C]": " ",
1519 i , counter));
1520 }
1521#endif
1522}
1523#endif
1524
1525static void hdaFetchBdle(INTELHDLinkState *pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc)
1526{
1527 uint8_t bdle[16];
1528 Assert(( pStreamDesc->u64BaseDMA
1529 && pBdle
1530 && pBdle->u32BdleMaxCvi));
1531 PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), pStreamDesc->u64BaseDMA + pBdle->u32BdleCvi*16, bdle, 16);
1532 pBdle->u64BdleCviAddr = *(uint64_t *)bdle;
1533 pBdle->u32BdleCviLen = *(uint32_t *)&bdle[8];
1534 pBdle->fBdleCviIoc = (*(uint32_t *)&bdle[12]) & 0x1;
1535#ifdef LOG_ENABLED
1536 dump_bd(pState, pBdle, pStreamDesc->u64BaseDMA);
1537#endif
1538}
1539
1540static inline uint32_t hdaCalculateTransferBufferLength(PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc, uint32_t u32SoundBackendBufferBytesAvail, uint32_t u32CblLimit)
1541{
1542 uint32_t cb2Copy;
1543 /*
1544 * Amounts of bytes depends on current position in buffer (u32BdleCviLen-u32BdleCviPos)
1545 */
1546 Assert((pBdle->u32BdleCviLen >= pBdle->u32BdleCviPos)); /* sanity */
1547 cb2Copy = pBdle->u32BdleCviLen - pBdle->u32BdleCviPos;
1548 /*
1549 * we may increase the counter in range of [0, FIFOS + 1]
1550 */
1551 cb2Copy = RT_MIN(cb2Copy, pStreamDesc->u32Fifos + 1);
1552 Assert((u32SoundBackendBufferBytesAvail > 0));
1553
1554 /* sanity check to avoid overriding sound backend buffer */
1555 cb2Copy = RT_MIN(cb2Copy, u32SoundBackendBufferBytesAvail);
1556 cb2Copy = RT_MIN(cb2Copy, u32CblLimit);
1557
1558 if (cb2Copy <= pBdle->cbUnderFifoW)
1559 return 0;
1560 cb2Copy -= pBdle->cbUnderFifoW; /* forcely reserve amount of ureported bytes to copy */
1561 return cb2Copy;
1562}
1563
1564static inline void hdaBackendWriteTransferReported(PHDABDLEDESC pBdle, uint32_t cbArranged2Copy, uint32_t cbCopied, uint32_t *pu32DMACursor, uint32_t *pu32BackendBufferCapacity)
1565{
1566 Log(("hda:hdaBackendWriteTransferReported: cbArranged2Copy: %d, cbCopied: %d, pu32DMACursor: %d, pu32BackendBufferCapacity:%d\n",
1567 cbArranged2Copy, cbCopied, pu32DMACursor ? *pu32DMACursor : 0, pu32BackendBufferCapacity ? *pu32BackendBufferCapacity : 0));
1568 Assert((cbCopied));
1569 Assert((pu32BackendBufferCapacity && *pu32BackendBufferCapacity));
1570 /* Assertion!!! It was copied less than cbUnderFifoW
1571 * Probably we need to move the buffer, but it rather hard to imagine situation
1572 * why it may happen.
1573 */
1574 Assert((cbCopied == pBdle->cbUnderFifoW + cbArranged2Copy)); /* we assume that we write whole buffer including not reported bytes */
1575 if ( pBdle->cbUnderFifoW
1576 && pBdle->cbUnderFifoW <= cbCopied)
1577 Log(("hda:hdaBackendWriteTransferReported: CVI resetting cbUnderFifoW:%d(pos:%d, len:%d)\n", pBdle->cbUnderFifoW, pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1578
1579 pBdle->cbUnderFifoW -= RT_MIN(pBdle->cbUnderFifoW, cbCopied);
1580 Assert((!pBdle->cbUnderFifoW)); /* Assert!!! Assumption failed */
1581
1582 /* We always increment position on DMA buffer counter because we're always reading to intermediate buffer */
1583 pBdle->u32BdleCviPos += cbArranged2Copy;
1584
1585 Assert((pBdle->u32BdleCviLen >= pBdle->u32BdleCviPos && *pu32BackendBufferCapacity >= cbCopied)); /* sanity */
1586 /* We reports all bytes (including unreported previously) */
1587 *pu32DMACursor += cbCopied;
1588 /* reducing backend counter on amount of bytes we copied to backend */
1589 *pu32BackendBufferCapacity -= cbCopied;
1590 Log(("hda:hdaBackendWriteTransferReported: CVI(pos:%d, len:%d), pu32DMACursor: %d, pu32BackendBufferCapacity:%d\n",
1591 pBdle->u32BdleCviPos, pBdle->u32BdleCviLen, *pu32DMACursor, *pu32BackendBufferCapacity));
1592}
1593
1594static inline void hdaBackendReadTransferReported(PHDABDLEDESC pBdle, uint32_t cbArranged2Copy, uint32_t cbCopied, uint32_t *pu32DMACursor, uint32_t *pu32BackendBufferCapacity)
1595{
1596 Assert((cbCopied, cbArranged2Copy));
1597 *pu32BackendBufferCapacity -= cbCopied;
1598 pBdle->u32BdleCviPos += cbCopied;
1599 Log(("hda:hdaBackendReadTransferReported: CVI resetting cbUnderFifoW:%d(pos:%d, len:%d)\n", pBdle->cbUnderFifoW, pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1600 *pu32DMACursor += cbCopied + pBdle->cbUnderFifoW;
1601 pBdle->cbUnderFifoW = 0;
1602 Log(("hda:hdaBackendReadTransferReported: CVI(pos:%d, len:%d), pu32DMACursor: %d, pu32BackendBufferCapacity:%d\n",
1603 pBdle->u32BdleCviPos, pBdle->u32BdleCviLen, pu32DMACursor ? *pu32DMACursor : 0, pu32BackendBufferCapacity ? *pu32BackendBufferCapacity : 0));
1604}
1605
1606static inline void hdaBackendTransferUnreported(INTELHDLinkState *pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc, uint32_t cbCopied, uint32_t *pu32BackendBufferCapacity)
1607{
1608 Log(("hda:hdaBackendTransferUnreported: CVI (cbUnderFifoW:%d, pos:%d, len:%d)\n", pBdle->cbUnderFifoW, pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1609 pBdle->u32BdleCviPos += cbCopied;
1610 pBdle->cbUnderFifoW += cbCopied;
1611 /* In case of read transaction we're always coping from backend buffer */
1612 if (pu32BackendBufferCapacity)
1613 *pu32BackendBufferCapacity -= cbCopied;
1614 Log(("hda:hdaBackendTransferUnreported: CVI (cbUnderFifoW:%d, pos:%d, len:%d)\n", pBdle->cbUnderFifoW, pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1615 Assert((pBdle->cbUnderFifoW <= hdaFifoWToSz(pState, pStreamDesc)));
1616}
1617static inline bool hdaIsTransferCountersOverlapped(PINTELHDLinkState pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc)
1618{
1619 bool fOnBufferEdge = ( *pStreamDesc->pu32Lpib == pStreamDesc->u32Cbl
1620 || pBdle->u32BdleCviPos == pBdle->u32BdleCviLen);
1621
1622 Assert((*pStreamDesc->pu32Lpib <= pStreamDesc->u32Cbl));
1623
1624 if (*pStreamDesc->pu32Lpib == pStreamDesc->u32Cbl)
1625 *pStreamDesc->pu32Lpib -= pStreamDesc->u32Cbl;
1626 hdaUpdatePosBuf(pState, pStreamDesc);
1627
1628 /* don't touch BdleCvi counter on uninitialized descriptor */
1629 if ( pBdle->u32BdleCviPos
1630 && pBdle->u32BdleCviPos == pBdle->u32BdleCviLen)
1631 {
1632 pBdle->u32BdleCviPos = 0;
1633 pBdle->u32BdleCvi++;
1634 if (pBdle->u32BdleCvi == pBdle->u32BdleMaxCvi + 1)
1635 pBdle->u32BdleCvi = 0;
1636 }
1637 return fOnBufferEdge;
1638}
1639
1640static inline void hdaStreamCounterUpdate(PINTELHDLinkState pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc, uint32_t cbInc)
1641{
1642 /*
1643 * if we're under FIFO Watermark it's expected that HDA doesn't fetch anything.
1644 * (ICH6 datasheet 18.2.38)
1645 */
1646 if (!pBdle->cbUnderFifoW)
1647 {
1648 *pStreamDesc->pu32Lpib += cbInc;
1649
1650 /*
1651 * Assert. Overlapping of buffer counter shouldn't happen.
1652 */
1653 Assert((*pStreamDesc->pu32Lpib <= pStreamDesc->u32Cbl));
1654
1655 hdaUpdatePosBuf(pState, pStreamDesc);
1656
1657 }
1658}
1659
1660static inline bool hdaDoNextTransferCycle(PINTELHDLinkState pState, PHDABDLEDESC pBdle, PHDASTREAMTRANSFERDESC pStreamDesc)
1661{
1662 bool fDoNextTransferLoop = true;
1663 if ( pBdle->u32BdleCviPos == pBdle->u32BdleCviLen
1664 || *pStreamDesc->pu32Lpib == pStreamDesc->u32Cbl)
1665 {
1666 if ( !pBdle->cbUnderFifoW
1667 && pBdle->fBdleCviIoc)
1668 {
1669 /*
1670 * @todo - more carefully investigate BCIS flag.
1671 * Speech synthesis works fine on Mac Guest if this bit isn't set
1672 * but in general sound quality becomes lesser.
1673 */
1674 *pStreamDesc->pu32Sts |= HDA_REG_FIELD_FLAG_MASK(SDSTS, BCIS);
1675
1676 /*
1677 * we should generate the interrupt if ICE bit of SDCTL register is set.
1678 */
1679 if (pStreamDesc->u32Ctl & HDA_REG_FIELD_FLAG_MASK(SDCTL, ICE))
1680 hdaProcessInterrupt(pState);
1681 }
1682 fDoNextTransferLoop = false;
1683 }
1684 return fDoNextTransferLoop;
1685}
1686
1687/*
1688 * hdaReadAudio - copies samples from Qemu Sound back-end to DMA.
1689 * Note: this function writes immediately to DMA buffer, but "reports bytes" when all conditions meet (FIFOW)
1690 */
1691static uint32_t hdaReadAudio(INTELHDLinkState *pState, PHDASTREAMTRANSFERDESC pStreamDesc, uint32_t *pu32Avail, bool *fStop, uint32_t u32CblLimit)
1692{
1693 PHDABDLEDESC pBdle = &pState->stInBdle;
1694 uint32_t cbTransfered = 0;
1695 uint32_t cb2Copy = 0;
1696 uint32_t cbBackendCopy = 0;
1697
1698 Log(("hda:ra: CVI(pos:%d, len:%d)\n", pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1699
1700 cb2Copy = hdaCalculateTransferBufferLength(pBdle, pStreamDesc, *pu32Avail, u32CblLimit);
1701 if (!cb2Copy)
1702 {
1703 /* if we enter here we can't report "unreported bits" */
1704 *fStop = true;
1705 goto done;
1706 }
1707
1708
1709 /*
1710 * read from backend input line to last ureported position or at the begining.
1711 */
1712 cbBackendCopy = AUD_read (pState->Codec.SwVoiceIn, pBdle->au8HdaBuffer, cb2Copy);
1713 /*
1714 * write on the HDA DMA
1715 */
1716 PDMDevHlpPhysWrite(ICH6_HDASTATE_2_DEVINS(pState), pBdle->u64BdleCviAddr + pBdle->u32BdleCviPos, pBdle->au8HdaBuffer, cbBackendCopy);
1717
1718 /* Don't see reasons why cb2Copy could differ from cbBackendCopy */
1719 Assert((cbBackendCopy == cb2Copy && (*pu32Avail) >= cb2Copy)); /* sanity */
1720
1721 if (pBdle->cbUnderFifoW + cbBackendCopy > hdaFifoWToSz(pState, 0))
1722 hdaBackendReadTransferReported(pBdle, cb2Copy, cbBackendCopy, &cbTransfered, pu32Avail);
1723 else
1724 {
1725 hdaBackendTransferUnreported(pState, pBdle, pStreamDesc, cbBackendCopy, pu32Avail);
1726 *fStop = true;
1727 }
1728 done:
1729 Assert((cbTransfered <= (SDFIFOS(pState, 0) + 1)));
1730 Log(("hda:ra: CVI(pos:%d, len:%d) cbTransfered: %d\n", pBdle->u32BdleCviPos, pBdle->u32BdleCviLen, cbTransfered));
1731 return cbTransfered;
1732}
1733
1734static uint32_t hdaWriteAudio(INTELHDLinkState *pState, PHDASTREAMTRANSFERDESC pStreamDesc, uint32_t *pu32Avail, bool *fStop, uint32_t u32CblLimit)
1735{
1736 PHDABDLEDESC pBdle = &pState->stOutBdle;
1737 uint32_t cbTransfered = 0;
1738 uint32_t cb2Copy = 0; /* local byte counter (on local buffer) */
1739 uint32_t cbBackendCopy = 0; /* local byte counter, how many bytes copied to backend */
1740
1741 Log(("hda:wa: CVI(cvi:%d, pos:%d, len:%d)\n", pBdle->u32BdleCvi, pBdle->u32BdleCviPos, pBdle->u32BdleCviLen));
1742
1743 cb2Copy = hdaCalculateTransferBufferLength(pBdle, pStreamDesc, *pu32Avail, u32CblLimit);
1744
1745 /*
1746 * Copy from DMA to the corresponding hdaBuffer (if there exists some bytes from the previous not reported transfer we write to ''pBdle->cbUnderFifoW'' offset)
1747 */
1748 if (!cb2Copy)
1749 {
1750 *fStop = true;
1751 goto done;
1752 }
1753
1754 PDMDevHlpPhysRead(ICH6_HDASTATE_2_DEVINS(pState), pBdle->u64BdleCviAddr + pBdle->u32BdleCviPos, pBdle->au8HdaBuffer + pBdle->cbUnderFifoW, cb2Copy);
1755 /*
1756 * Write to audio backend. we should be sure whether we have enought bytes to copy to Audio backend.
1757 */
1758 if (cb2Copy + pBdle->cbUnderFifoW >= hdaFifoWToSz(pState, pStreamDesc))
1759 {
1760 /*
1761 * We feed backend with new portion of fetched samples including not reported.
1762 */
1763 cbBackendCopy = AUD_write (pState->Codec.SwVoiceOut, pBdle->au8HdaBuffer, cb2Copy + pBdle->cbUnderFifoW);
1764 hdaBackendWriteTransferReported(pBdle, cb2Copy, cbBackendCopy, &cbTransfered, pu32Avail);
1765 }
1766 else
1767 {
1768 /* Not enough bytes to be processed and reported, check luck on next enterence */
1769 hdaBackendTransferUnreported(pState, pBdle, pStreamDesc, cb2Copy, NULL);
1770 *fStop = true;
1771 }
1772
1773 done:
1774 Assert((cbTransfered <= (SDFIFOS(pState, 4) + 1)));
1775 Log(("hda:wa: CVI(pos:%d, len:%d, cbTransfered:%d)\n", pBdle->u32BdleCviPos, pBdle->u32BdleCviLen, cbTransfered));
1776 return cbTransfered;
1777}
1778
1779DECLCALLBACK(int) hdaCodecReset(CODECState *pCodecState)
1780{
1781 INTELHDLinkState *pState = (INTELHDLinkState *)pCodecState->pHDAState;
1782 return VINF_SUCCESS;
1783}
1784
1785static inline void hdaInitTransferDescriptor(PINTELHDLinkState pState, PHDABDLEDESC pBdle, uint8_t u8Strm, PHDASTREAMTRANSFERDESC pStreamDesc)
1786{
1787 Assert(( pState
1788 && pBdle
1789 && pStreamDesc
1790 && u8Strm <= 7));
1791 memset(pStreamDesc, 0, sizeof(HDASTREAMTRANSFERDESC));
1792 pStreamDesc->u8Strm = u8Strm;
1793 pStreamDesc->u32Ctl = HDA_STREAM_REG2(pState, CTL, u8Strm);
1794 pStreamDesc->u64BaseDMA = RT_MAKE_U64(HDA_STREAM_REG2(pState, BDPL, u8Strm),
1795 HDA_STREAM_REG2(pState, BDPU, u8Strm));
1796 pStreamDesc->pu32Lpib = &HDA_STREAM_REG2(pState, LPIB, u8Strm);
1797 pStreamDesc->pu32Sts = &HDA_STREAM_REG2(pState, STS, u8Strm);
1798 pStreamDesc->u32Cbl = HDA_STREAM_REG2(pState, CBL, u8Strm);
1799 pStreamDesc->u32Fifos = HDA_STREAM_REG2(pState, FIFOS, u8Strm);
1800
1801 pBdle->u32BdleMaxCvi = HDA_STREAM_REG2(pState, LVI, u8Strm);
1802#ifdef LOG_ENABLED
1803 if ( pBdle
1804 && pBdle->u32BdleMaxCvi)
1805 {
1806 Log(("Initialization of transfer descriptor:\n"));
1807 dump_bd(pState, pBdle, pStreamDesc->u64BaseDMA);
1808 }
1809#endif
1810}
1811
1812DECLCALLBACK(void) hdaTransfer(CODECState *pCodecState, ENMSOUNDSOURCE src, int avail)
1813{
1814 bool fStop = false;
1815 uint8_t u8Strm = 0;
1816 PHDABDLEDESC pBdle = NULL;
1817 INTELHDLinkState *pState = (INTELHDLinkState *)pCodecState->pHDAState;
1818 HDASTREAMTRANSFERDESC stStreamDesc;
1819 uint32_t nBytes;
1820 switch (src)
1821 {
1822 case PO_INDEX:
1823 {
1824 u8Strm = 4;
1825 pBdle = &pState->stOutBdle;
1826 break;
1827 }
1828 case PI_INDEX:
1829 {
1830 u8Strm = 0;
1831 pBdle = &pState->stInBdle;
1832 break;
1833 }
1834 default:
1835 return;
1836 }
1837 hdaInitTransferDescriptor(pState, pBdle, u8Strm, &stStreamDesc);
1838 while( avail && !fStop)
1839 {
1840 Assert ( (stStreamDesc.u32Ctl & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN))
1841 && avail
1842 && stStreamDesc.u64BaseDMA);
1843
1844 /* Fetch the Buffer Descriptor Entry (BDE). */
1845
1846 if (hdaIsTransferCountersOverlapped(pState, pBdle, &stStreamDesc))
1847 hdaFetchBdle(pState, pBdle, &stStreamDesc);
1848 *stStreamDesc.pu32Sts |= HDA_REG_FIELD_FLAG_MASK(SDSTS, FIFORDY);
1849 Assert((avail >= 0 && (stStreamDesc.u32Cbl >= (*stStreamDesc.pu32Lpib)))); /* sanity */
1850 uint32_t u32CblLimit = stStreamDesc.u32Cbl - (*stStreamDesc.pu32Lpib);
1851 Assert((u32CblLimit > hdaFifoWToSz(pState, &stStreamDesc)));
1852 Log(("hda: CBL=%d, LPIB=%d\n", stStreamDesc.u32Cbl, *stStreamDesc.pu32Lpib));
1853 switch (src)
1854 {
1855 case PO_INDEX:
1856 nBytes = hdaWriteAudio(pState, &stStreamDesc, (uint32_t *)&avail, &fStop, u32CblLimit);
1857 break;
1858 case PI_INDEX:
1859 nBytes = hdaReadAudio(pState, &stStreamDesc, (uint32_t *)&avail, &fStop, u32CblLimit);
1860 break;
1861 default:
1862 nBytes = 0;
1863 fStop = true;
1864 AssertMsgFailed(("Unsupported"));
1865 }
1866 Assert(nBytes <= (stStreamDesc.u32Fifos + 1));
1867 *stStreamDesc.pu32Sts &= ~HDA_REG_FIELD_FLAG_MASK(SDSTS, FIFORDY);
1868
1869 /* Process end of buffer condition. */
1870 hdaStreamCounterUpdate(pState, pBdle, &stStreamDesc, nBytes);
1871 fStop = !fStop ? !hdaDoNextTransferCycle(pState, pBdle, &stStreamDesc) : fStop;
1872 }
1873}
1874
1875/**
1876 * Handle register read operation.
1877 *
1878 * Looks up and calls appropriate handler.
1879 *
1880 * @note: while implementation was detected so called "forgotten" or "hole" registers
1881 * which description is missed in RPM, datasheet or spec.
1882 *
1883 * @returns VBox status code.
1884 *
1885 * @param pState The device state structure.
1886 * @param uOffset Register offset in memory-mapped frame.
1887 * @param pv Where to fetch the value.
1888 * @param cb Number of bytes to write.
1889 * @thread EMT
1890 */
1891PDMBOTHCBDECL(int) hdaMMIORead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
1892{
1893 int rc = VINF_SUCCESS;
1894 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
1895 uint32_t offReg = GCPhysAddr - pThis->hda.addrMMReg;
1896 int idxReg = hdaMMIORegLookup(&pThis->hda, offReg);
1897 if (pThis->hda.fInReset && idxReg != ICH6_HDA_REG_GCTL)
1898 Log(("hda: access to registers except GCTL is blocked while reset\n"));
1899
1900 if (idxReg == -1)
1901 LogRel(("hda: Invalid read access @0x%x(of bytes:%d)\n", offReg, cb));
1902
1903 if (idxReg != -1)
1904 {
1905 /** @todo r=bird: Accesses crossing register boundraries aren't handled
1906 * right from what I can tell? If they are, please explain
1907 * what the rules are. */
1908 uint32_t mask = 0;
1909 uint32_t shift = (s_ichIntelHDRegMap[idxReg].offset - offReg) % sizeof(uint32_t) * 8;
1910 uint32_t u32Value = 0;
1911 switch(cb)
1912 {
1913 case 1: mask = 0x000000ff; break;
1914 case 2: mask = 0x0000ffff; break;
1915 case 4:
1916 /* 18.2 of ICH6 datasheet defines wideness of the accesses byte, word and double word */
1917 case 8:
1918 mask = 0xffffffff;
1919 cb = 4;
1920 break;
1921 }
1922#if 0
1923 /* cross register access. Mac guest hit this assert doing assumption 4 byte access to 3 byte registers e.g. {I,O}SDnCTL
1924 */
1925 //Assert((cb <= s_ichIntelHDRegMap[idxReg].size - (offReg - s_ichIntelHDRegMap[idxReg].offset)));
1926 if (cb > s_ichIntelHDRegMap[idxReg].size - (offReg - s_ichIntelHDRegMap[idxReg].offset))
1927 {
1928 int off = cb - (s_ichIntelHDRegMap[idxReg].size - (offReg - s_ichIntelHDRegMap[idxReg].offset));
1929 rc = hdaMMIORead(pDevIns, pvUser, GCPhysAddr + cb - off, (char *)pv + cb - off, off);
1930 if (RT_FAILURE(rc))
1931 AssertRCReturn (rc, rc);
1932 }
1933 //Assert(((offReg - s_ichIntelHDRegMap[idxReg].offset) == 0));
1934#endif
1935 mask <<= shift;
1936 rc = s_ichIntelHDRegMap[idxReg].pfnRead(&pThis->hda, offReg, idxReg, &u32Value);
1937 *(uint32_t *)pv |= (u32Value & mask);
1938 Log(("hda: read %s[%x/%x]\n", s_ichIntelHDRegMap[idxReg].abbrev, u32Value, *(uint32_t *)pv));
1939 return rc;
1940 }
1941 *(uint32_t *)pv = 0xFF;
1942 Log(("hda: hole at %x is accessed for read\n", offReg));
1943 return rc;
1944}
1945
1946/**
1947 * Handle register write operation.
1948 *
1949 * Looks up and calls appropriate handler.
1950 *
1951 * @returns VBox status code.
1952 *
1953 * @param pState The device state structure.
1954 * @param uOffset Register offset in memory-mapped frame.
1955 * @param pv Where to fetch the value.
1956 * @param cb Number of bytes to write.
1957 * @thread EMT
1958 */
1959PDMBOTHCBDECL(int) hdaMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void const *pv, unsigned cb)
1960{
1961 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
1962 uint32_t offReg = GCPhysAddr - pThis->hda.addrMMReg;
1963 int idxReg = hdaMMIORegLookup(&pThis->hda, offReg);
1964 int rc = VINF_SUCCESS;
1965
1966 if (pThis->hda.fInReset && idxReg != ICH6_HDA_REG_GCTL)
1967 Log(("hda: access to registers except GCTL is blocked while reset\n"));
1968
1969 if ( idxReg == -1
1970 || cb > 4)
1971 LogRel(("hda: Invalid write access @0x%x(of bytes:%d)\n", offReg, cb));
1972
1973 if (idxReg != -1)
1974 {
1975 /** @todo r=bird: This looks like code for handling unalinged register
1976 * accesses. If it isn't then, add a comment explaing what you're
1977 * trying to do here. OTOH, if it is then it has the following
1978 * issues:
1979 * -# You're calculating the wrong new value for the register.
1980 * -# You're not handling cross register accesses. Imagine a
1981 * 4-byte write starting at CORBCTL, or a 8-byte write.
1982 *
1983 * PS! consider dropping the 'offset' argument to pfnWrite/pfnRead as
1984 * nobody seems to be using it and it just add complexity when reading
1985 * the code.
1986 *
1987 */
1988 uint32_t u32CurValue = pThis->hda.au32Regs[idxReg];
1989 uint32_t u32NewValue;
1990 uint32_t mask;
1991 switch (cb)
1992 {
1993 case 1:
1994 u32NewValue = *(uint8_t const *)pv;
1995 mask = 0xff;
1996 break;
1997 case 2:
1998 u32NewValue = *(uint16_t const *)pv;
1999 mask = 0xffff;
2000 break;
2001 case 4:
2002 case 8:
2003 /* 18.2 of ICH6 datasheet defines wideness of the accesses byte, word and double word */
2004 u32NewValue = *(uint32_t const *)pv;
2005 mask = 0xffffffff;
2006 cb = 4;
2007 break;
2008 default:
2009 AssertFailedReturn(VERR_INTERNAL_ERROR_4); /* shall not happen. */
2010 }
2011 /* cross register access, see corresponding comment in hdaMMIORead */
2012#if 0
2013 if (cb > s_ichIntelHDRegMap[idxReg].size - (offReg - s_ichIntelHDRegMap[idxReg].offset))
2014 {
2015 int off = cb - (s_ichIntelHDRegMap[idxReg].size - (offReg - s_ichIntelHDRegMap[idxReg].offset));
2016 rc = hdaMMIOWrite(pDevIns, pvUser, GCPhysAddr + cb - off, (char *)pv + cb - off, off);
2017 if (RT_FAILURE(rc))
2018 AssertRCReturn (rc, rc);
2019 }
2020#endif
2021 uint32_t shift = (s_ichIntelHDRegMap[idxReg].offset - offReg) % sizeof(uint32_t) * 8;
2022 mask <<= shift;
2023 u32NewValue <<= shift;
2024 u32NewValue &= mask;
2025 u32NewValue |= (u32CurValue & ~mask);
2026
2027 rc = s_ichIntelHDRegMap[idxReg].pfnWrite(&pThis->hda, offReg, idxReg, u32NewValue);
2028 Log(("hda: write %s:(%x) %x => %x\n", s_ichIntelHDRegMap[idxReg].abbrev, u32NewValue,
2029 u32CurValue, pThis->hda.au32Regs[idxReg]));
2030 return rc;
2031 }
2032
2033 Log(("hda: hole at %x is accessed for write\n", offReg));
2034 return rc;
2035}
2036
2037/**
2038 * Callback function for mapping a PCI I/O region.
2039 *
2040 * @return VBox status code.
2041 * @param pPciDev Pointer to PCI device.
2042 * Use pPciDev->pDevIns to get the device instance.
2043 * @param iRegion The region number.
2044 * @param GCPhysAddress Physical address of the region.
2045 * If iType is PCI_ADDRESS_SPACE_IO, this is an
2046 * I/O port, else it's a physical address.
2047 * This address is *NOT* relative
2048 * to pci_mem_base like earlier!
2049 * @param enmType One of the PCI_ADDRESS_SPACE_* values.
2050 */
2051static DECLCALLBACK(int) hdaMap(PPCIDEVICE pPciDev, int iRegion,
2052 RTGCPHYS GCPhysAddress, uint32_t cb,
2053 PCIADDRESSSPACE enmType)
2054{
2055 int rc;
2056 PPDMDEVINS pDevIns = pPciDev->pDevIns;
2057 RTIOPORT Port = (RTIOPORT)GCPhysAddress;
2058 PCIINTELHDLinkState *pThis = PCIDEV_2_ICH6_HDASTATE(pPciDev);
2059
2060 Assert(enmType == PCI_ADDRESS_SPACE_MEM);
2061 rc = PDMDevHlpMMIORegister(pPciDev->pDevIns, GCPhysAddress, cb, NULL /*pvUser*/,
2062 IOMMMIO_FLAGS_READ_PASSTHRU | IOMMMIO_FLAGS_WRITE_PASSTHRU,
2063 hdaMMIOWrite, hdaMMIORead, "ICH6_HDA");
2064
2065 if (RT_FAILURE(rc))
2066 return rc;
2067
2068 pThis->hda.addrMMReg = GCPhysAddress;
2069 return VINF_SUCCESS;
2070}
2071
2072/**
2073 * Saves a state of the HDA device.
2074 *
2075 * @returns VBox status code.
2076 * @param pDevIns The device instance.
2077 * @param pSSM The handle to save the state to.
2078 */
2079static DECLCALLBACK(int) hdaSaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
2080{
2081 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2082 /* Save Codec nodes states */
2083 codecSaveState(&pThis->hda.Codec, pSSM);
2084
2085 /* Save MMIO registers */
2086 AssertCompile(RT_ELEMENTS(pThis->hda.au32Regs) == 112);
2087 SSMR3PutU32(pSSM, RT_ELEMENTS(pThis->hda.au32Regs));
2088 SSMR3PutMem(pSSM, pThis->hda.au32Regs, sizeof(pThis->hda.au32Regs));
2089
2090 /* Save HDA dma counters */
2091 SSMR3PutStructEx(pSSM, &pThis->hda.stOutBdle, sizeof(pThis->hda.stOutBdle), 0 /*fFlags*/, g_aHdaBDLEDescFields, NULL);
2092 SSMR3PutStructEx(pSSM, &pThis->hda.stMicBdle, sizeof(pThis->hda.stMicBdle), 0 /*fFlags*/, g_aHdaBDLEDescFields, NULL);
2093 SSMR3PutStructEx(pSSM, &pThis->hda.stInBdle, sizeof(pThis->hda.stInBdle), 0 /*fFlags*/, g_aHdaBDLEDescFields, NULL);
2094 return VINF_SUCCESS;
2095}
2096
2097/**
2098 * Loads a saved HDA device state.
2099 *
2100 * @returns VBox status code.
2101 * @param pDevIns The device instance.
2102 * @param pSSM The handle to the saved state.
2103 * @param uVersion The data unit version number.
2104 * @param uPass The data pass.
2105 */
2106static DECLCALLBACK(int) hdaLoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
2107{
2108 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2109
2110 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
2111
2112 /*
2113 * Load Codec nodes states.
2114 */
2115 int rc = codecLoadState(&pThis->hda.Codec, pSSM, uVersion);
2116 if (RT_FAILURE(rc))
2117 return rc;
2118
2119 /*
2120 * Load MMIO registers.
2121 */
2122 uint32_t cRegs;
2123 switch (uVersion)
2124 {
2125 case HDA_SSM_VERSION_1:
2126 /* Starting with r71199, we would save 112 instead of 113
2127 registers due to some code cleanups. This only affects trunk
2128 builds in the 4.1 development period. */
2129 cRegs = 113;
2130 if (SSMR3HandleRevision(pSSM) >= 71199)
2131 {
2132 uint32_t uVer = SSMR3HandleVersion(pSSM);
2133 if ( VBOX_FULL_VERSION_GET_MAJOR(uVer) == 4
2134 && VBOX_FULL_VERSION_GET_MINOR(uVer) == 0
2135 && VBOX_FULL_VERSION_GET_BUILD(uVer) >= 51)
2136 cRegs = 112;
2137 }
2138 break;
2139
2140 case HDA_SSM_VERSION_2:
2141 case HDA_SSM_VERSION_3:
2142 cRegs = 112;
2143 AssertCompile(RT_ELEMENTS(pThis->hda.au32Regs) == 112);
2144 break;
2145
2146 case HDA_SSM_VERSION:
2147 rc = SSMR3GetU32(pSSM, &cRegs); AssertRCReturn(rc, rc);
2148 AssertLogRelMsgReturn(cRegs == RT_ELEMENTS(pThis->hda.au32Regs),
2149 ("cRegs is %d, expected %d\n", cRegs, RT_ELEMENTS(pThis->hda.au32Regs)),
2150 VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
2151 break;
2152
2153 default:
2154 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
2155 }
2156
2157 if (cRegs >= RT_ELEMENTS(pThis->hda.au32Regs))
2158 {
2159 SSMR3GetMem(pSSM, pThis->hda.au32Regs, sizeof(pThis->hda.au32Regs));
2160 SSMR3Skip(pSSM, sizeof(uint32_t) * (cRegs - RT_ELEMENTS(pThis->hda.au32Regs)));
2161 }
2162 else
2163 {
2164 RT_ZERO(pThis->hda.au32Regs);
2165 SSMR3GetMem(pSSM, pThis->hda.au32Regs, sizeof(uint32_t) * cRegs);
2166 }
2167
2168 /*
2169 * Load HDA dma counters.
2170 */
2171 uint32_t fFlags = uVersion <= HDA_SSM_VERSION_2 ? SSMSTRUCT_FLAGS_MEM_BAND_AID_RELAXED : 0;
2172 PCSSMFIELD paFields = uVersion <= HDA_SSM_VERSION_2 ? g_aHdaBDLEDescFieldsOld : g_aHdaBDLEDescFields;
2173 SSMR3GetStructEx(pSSM, &pThis->hda.stOutBdle, sizeof(pThis->hda.stOutBdle), fFlags, paFields, NULL);
2174 SSMR3GetStructEx(pSSM, &pThis->hda.stMicBdle, sizeof(pThis->hda.stMicBdle), fFlags, paFields, NULL);
2175 rc = SSMR3GetStructEx(pSSM, &pThis->hda.stInBdle, sizeof(pThis->hda.stInBdle), fFlags, paFields, NULL);
2176 AssertRCReturn(rc, rc);
2177
2178 /*
2179 * Update stuff after the state changes.
2180 */
2181 AUD_set_active_in(pThis->hda.Codec.SwVoiceIn, SDCTL(&pThis->hda, 0) & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN));
2182 AUD_set_active_out(pThis->hda.Codec.SwVoiceOut, SDCTL(&pThis->hda, 4) & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN));
2183
2184 pThis->hda.u64CORBBase = RT_MAKE_U64(CORBLBASE(&pThis->hda), CORBUBASE(&pThis->hda));
2185 pThis->hda.u64RIRBBase = RT_MAKE_U64(RIRLBASE(&pThis->hda), RIRUBASE(&pThis->hda));
2186 pThis->hda.u64DPBase = RT_MAKE_U64(DPLBASE(&pThis->hda), DPUBASE(&pThis->hda));
2187 return VINF_SUCCESS;
2188}
2189
2190/**
2191 * Reset notification.
2192 *
2193 * @returns VBox status.
2194 * @param pDevIns The device instance data.
2195 *
2196 * @remark The original sources didn't install a reset handler, but it seems to
2197 * make sense to me so we'll do it.
2198 */
2199static DECLCALLBACK(void) hdaReset(PPDMDEVINS pDevIns)
2200{
2201 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2202 GCAP(&pThis->hda) = HDA_MAKE_GCAP(4,4,0,0,1); /* see 6.2.1 */
2203 VMIN(&pThis->hda) = 0x00; /* see 6.2.2 */
2204 VMAJ(&pThis->hda) = 0x01; /* see 6.2.3 */
2205 VMAJ(&pThis->hda) = 0x01; /* see 6.2.3 */
2206 OUTPAY(&pThis->hda) = 0x003C; /* see 6.2.4 */
2207 INPAY(&pThis->hda) = 0x001D; /* see 6.2.5 */
2208 pThis->hda.au32Regs[ICH6_HDA_REG_CORBSIZE] = 0x42; /* see 6.2.1 */
2209 pThis->hda.au32Regs[ICH6_HDA_REG_RIRBSIZE] = 0x42; /* see 6.2.1 */
2210 CORBRP(&pThis->hda) = 0x0;
2211 RIRBWP(&pThis->hda) = 0x0;
2212
2213 Log(("hda: inter HDA reset.\n"));
2214 pThis->hda.cbCorbBuf = 256 * sizeof(uint32_t);
2215
2216 if (pThis->hda.pu32CorbBuf)
2217 memset(pThis->hda.pu32CorbBuf, 0, pThis->hda.cbCorbBuf);
2218 else
2219 pThis->hda.pu32CorbBuf = (uint32_t *)RTMemAllocZ(pThis->hda.cbCorbBuf);
2220
2221 pThis->hda.cbRirbBuf = 256 * sizeof(uint64_t);
2222 if (pThis->hda.pu64RirbBuf)
2223 memset(pThis->hda.pu64RirbBuf, 0, pThis->hda.cbRirbBuf);
2224 else
2225 pThis->hda.pu64RirbBuf = (uint64_t *)RTMemAllocZ(pThis->hda.cbRirbBuf);
2226
2227 pThis->hda.u64BaseTS = PDMDevHlpTMTimeVirtGetNano(pDevIns);
2228
2229 HDABDLEDESC stEmptyBdle;
2230 for(uint8_t u8Strm = 0; u8Strm < 8; ++u8Strm)
2231 {
2232 HDASTREAMTRANSFERDESC stStreamDesc;
2233 PHDABDLEDESC pBdle = NULL;
2234 if (u8Strm == 0)
2235 pBdle = &pThis->hda.stInBdle;
2236 else if(u8Strm == 4)
2237 pBdle = &pThis->hda.stOutBdle;
2238 else
2239 {
2240 memset(&stEmptyBdle, 0, sizeof(HDABDLEDESC));
2241 pBdle = &stEmptyBdle;
2242 }
2243 hdaInitTransferDescriptor(&pThis->hda, pBdle, u8Strm, &stStreamDesc);
2244 /* hdaStreamReset prevents changing SRST bit, so we zerro it here forcely. */
2245 HDA_STREAM_REG2(&pThis->hda, CTL, u8Strm) = 0;
2246 hdaStreamReset(&pThis->hda, pBdle, &stStreamDesc, u8Strm);
2247 }
2248
2249 /* emulateion of codec "wake up" HDA spec (5.5.1 and 6.5)*/
2250 STATESTS(&pThis->hda) = 0x1;
2251
2252 Log(("hda: reset finished\n"));
2253}
2254
2255/**
2256 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
2257 */
2258static DECLCALLBACK(void *) hdaQueryInterface (struct PDMIBASE *pInterface,
2259 const char *pszIID)
2260{
2261 PCIINTELHDLinkState *pThis = RT_FROM_MEMBER(pInterface, PCIINTELHDLinkState, hda.IBase);
2262 Assert(&pThis->hda.IBase == pInterface);
2263
2264 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pThis->hda.IBase);
2265 return NULL;
2266}
2267
2268static inline int hdaLookUpRegisterByName(INTELHDLinkState *pState, const char *pszArgs)
2269{
2270 int iReg = 0;
2271 for (; iReg < HDA_NREGS; ++iReg)
2272 if (!RTStrICmp(s_ichIntelHDRegMap[iReg].abbrev, pszArgs))
2273 return iReg;
2274 return -1;
2275}
2276static inline void hdaDbgPrintRegister(INTELHDLinkState *pState, PCDBGFINFOHLP pHlp, int iHdaIndex)
2277{
2278 Assert( pState
2279 && iHdaIndex >= 0
2280 && iHdaIndex < HDA_NREGS);
2281 pHlp->pfnPrintf(pHlp, "hda: %s: 0x%x\n", s_ichIntelHDRegMap[iHdaIndex].abbrev, pState->au32Regs[iHdaIndex]);
2282}
2283static DECLCALLBACK(void) hdaDbgInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
2284{
2285 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2286 INTELHDLinkState *hda = &pThis->hda;
2287 int iHdaRegisterIndex = hdaLookUpRegisterByName(hda, pszArgs);
2288 if (iHdaRegisterIndex != -1)
2289 hdaDbgPrintRegister(hda, pHlp, iHdaRegisterIndex);
2290 else
2291 for(iHdaRegisterIndex = 0; (unsigned int)iHdaRegisterIndex < HDA_NREGS; ++iHdaRegisterIndex)
2292 hdaDbgPrintRegister(hda, pHlp, iHdaRegisterIndex);
2293}
2294
2295static inline void hdaDbgPrintStream(INTELHDLinkState *pState, PCDBGFINFOHLP pHlp, int iHdaStrmIndex)
2296{
2297 Assert( pState
2298 && iHdaStrmIndex >= 0
2299 && iHdaStrmIndex < 7);
2300 pHlp->pfnPrintf(pHlp, "Dump of %d Hda Stream:\n", iHdaStrmIndex);
2301 pHlp->pfnPrintf(pHlp, "SD%dCTL: %R[sdctl]\n", iHdaStrmIndex, HDA_STREAM_REG2(pState, CTL, iHdaStrmIndex));
2302 pHlp->pfnPrintf(pHlp, "SD%dCTS: %R[sdsts]\n", iHdaStrmIndex, HDA_STREAM_REG2(pState, STS, iHdaStrmIndex));
2303 pHlp->pfnPrintf(pHlp, "SD%dFIFOS: %R[sdfifos]\n", iHdaStrmIndex, HDA_STREAM_REG2(pState, FIFOS, iHdaStrmIndex));
2304 pHlp->pfnPrintf(pHlp, "SD%dFIFOW: %R[sdfifow]\n", iHdaStrmIndex, HDA_STREAM_REG2(pState, FIFOW, iHdaStrmIndex));
2305}
2306
2307static inline int hdaLookUpStreamIndex(INTELHDLinkState *pState, const char *pszArgs)
2308{
2309 /* todo: add args parsing */
2310 return -1;
2311}
2312static DECLCALLBACK(void) hdaDbgStreamInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
2313{
2314 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2315 INTELHDLinkState *hda = &pThis->hda;
2316 int iHdaStrmIndex = hdaLookUpStreamIndex(hda, pszArgs);
2317 if (iHdaStrmIndex != -1)
2318 hdaDbgPrintStream(hda, pHlp, iHdaStrmIndex);
2319 else
2320 for(iHdaStrmIndex = 0; iHdaStrmIndex < 7; ++iHdaStrmIndex)
2321 hdaDbgPrintStream(hda, pHlp, iHdaStrmIndex);
2322}
2323
2324/* Codec debugger interface */
2325static DECLCALLBACK(void) hdaCodecDbgNodes(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
2326{
2327 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2328 INTELHDLinkState *hda = &pThis->hda;
2329 if (hda->Codec.pfnCodecDbgListNodes)
2330 hda->Codec.pfnCodecDbgListNodes(&hda->Codec, pHlp, pszArgs);
2331 else
2332 pHlp->pfnPrintf(pHlp, "Codec implementation doesn't provide corresponding callback.\n");
2333}
2334
2335static DECLCALLBACK(void) hdaCodecDbgSelector(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs)
2336{
2337 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2338 INTELHDLinkState *hda = &pThis->hda;
2339 if (hda->Codec.pfnCodecDbgSelector)
2340 hda->Codec.pfnCodecDbgSelector(&hda->Codec, pHlp, pszArgs);
2341 else
2342 pHlp->pfnPrintf(pHlp, "Codec implementation doesn't provide corresponding callback.\n");
2343}
2344
2345//#define HDA_AS_PCI_EXPRESS
2346/* Misc routines */
2347static inline bool printHdaIsValid(const char *pszType, const char *pszExpectedFlag)
2348{
2349 return (RTStrCmp(pszType, pszExpectedFlag) == 0);
2350}
2351static const char *printHdaYesNo(bool fFlag)
2352{
2353 return fFlag ? "yes" : "no";
2354}
2355static DECLCALLBACK(size_t)
2356printHdaStrmCtl(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
2357 const char *pszType, void const *pvValue,
2358 int cchWidth, int cchPrecision, unsigned fFlags,
2359 void *pvUser)
2360{
2361 uint32_t sdCtl = (uint32_t)(uintptr_t)pvValue;
2362 size_t cb = 0;
2363 if (!printHdaIsValid(pszType, "sdctl"))
2364 return cb;
2365 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
2366 "SDCTL(raw: %#0x, strm:0x%x, dir:%s, tp:%s strip:%x, deie:%s, ioce:%s, run:%s, srst:%s)",
2367 sdCtl,
2368 ((sdCtl & HDA_REG_FIELD_MASK(SDCTL, NUM)) >> ICH6_HDA_SDCTL_NUM_SHIFT),
2369 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, DIR))),
2370 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, TP))),
2371 ((sdCtl & HDA_REG_FIELD_MASK(SDCTL, STRIPE)) >> ICH6_HDA_SDCTL_STRIPE_SHIFT),
2372 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, DEIE))),
2373 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, ICE))),
2374 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN))),
2375 printHdaYesNo(RT_BOOL(sdCtl & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST))));
2376 return cb;
2377}
2378
2379static DECLCALLBACK(size_t)
2380printHdaStrmFifos(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
2381 const char *pszType, void const *pvValue,
2382 int cchWidth, int cchPrecision, unsigned fFlags,
2383 void *pvUser)
2384{
2385 uint32_t sdFifos = (uint32_t)(uintptr_t)pvValue;
2386 uint32_t u32Bytes = 0;
2387 size_t cb = 0;
2388 if (!printHdaIsValid(pszType, "sdfifos"))
2389 return cb;
2390 switch(sdFifos)
2391 {
2392 case HDA_SDONFIFO_16B: u32Bytes = 16; break;
2393 case HDA_SDONFIFO_32B: u32Bytes = 32; break;
2394 case HDA_SDONFIFO_64B: u32Bytes = 64; break;
2395 case HDA_SDONFIFO_128B: u32Bytes = 128; break;
2396 case HDA_SDONFIFO_192B: u32Bytes = 192; break;
2397 case HDA_SDONFIFO_256B: u32Bytes = 256; break;
2398 case HDA_SDINFIFO_120B: u32Bytes = 120; break;
2399 case HDA_SDINFIFO_160B: u32Bytes = 160; break;
2400 default:;
2401 }
2402 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
2403 "SDFIFOS(raw: %#0x, sdfifos:%d B)",
2404 sdFifos,
2405 u32Bytes);
2406 return cb;
2407}
2408
2409static DECLCALLBACK(size_t)
2410printHdaStrmFifow(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
2411 const char *pszType, void const *pvValue,
2412 int cchWidth, int cchPrecision, unsigned fFlags,
2413 void *pvUser)
2414{
2415 uint32_t sdFifow = (uint32_t)(uintptr_t)pvValue;
2416 uint32_t u32Bytes = 0;
2417 size_t cb = 0;
2418 if (!printHdaIsValid(pszType, "sdfifow"))
2419 return cb;
2420 switch(sdFifow)
2421 {
2422 case HDA_SDFIFOW_8B: u32Bytes = 8; break;
2423 case HDA_SDFIFOW_16B: u32Bytes = 16; break;
2424 case HDA_SDFIFOW_32B: u32Bytes = 32; break;
2425 }
2426 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
2427 "SDFIFOW(raw: %#0x, sdfifow:%d B)",
2428 sdFifow,
2429 u32Bytes);
2430 return cb;
2431}
2432
2433static DECLCALLBACK(size_t)
2434printHdaStrmSts(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
2435 const char *pszType, void const *pvValue,
2436 int cchWidth, int cchPrecision, unsigned fFlags,
2437 void *pvUser)
2438{
2439 uint32_t sdSts = (uint32_t)(uintptr_t)pvValue;
2440 size_t cb = 0;
2441 if (!printHdaIsValid(pszType, "sdsts"))
2442 return cb;
2443 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
2444 "SDSTS(raw: %#0x, fifordy:%s, dese:%s, fifoe:%s, bcis:%s)",
2445 sdSts,
2446 printHdaYesNo(RT_BOOL(sdSts & HDA_REG_FIELD_FLAG_MASK(SDSTS, FIFORDY))),
2447 printHdaYesNo(RT_BOOL(sdSts & HDA_REG_FIELD_FLAG_MASK(SDSTS, DE))),
2448 printHdaYesNo(RT_BOOL(sdSts & HDA_REG_FIELD_FLAG_MASK(SDSTS, FE))),
2449 printHdaYesNo(RT_BOOL(sdSts & HDA_REG_FIELD_FLAG_MASK(SDSTS, BCIS))));
2450 return cb;
2451}
2452/**
2453 * This routine registers debugger info extensions and custom printf formatters
2454 */
2455static inline int hdaInitMisc(PPDMDEVINS pDevIns)
2456{
2457 int rc;
2458 PDMDevHlpDBGFInfoRegister(pDevIns, "hda", "HDA info. (hda [register case-insensitive])", hdaDbgInfo);
2459 PDMDevHlpDBGFInfoRegister(pDevIns, "hdastrm", "HDA stream info. (hdastrm [stream number])", hdaDbgStreamInfo);
2460 PDMDevHlpDBGFInfoRegister(pDevIns, "hdcnodes", "HDA codec nodes.", hdaCodecDbgNodes);
2461 PDMDevHlpDBGFInfoRegister(pDevIns, "hdcselector", "HDA codec's selector states [node number].", hdaCodecDbgSelector);
2462 rc = RTStrFormatTypeRegister("sdctl", printHdaStrmCtl, NULL);
2463 AssertRC(rc);
2464 rc = RTStrFormatTypeRegister("sdsts", printHdaStrmSts, NULL);
2465 AssertRC(rc);
2466 rc = RTStrFormatTypeRegister("sdfifos", printHdaStrmFifos, NULL);
2467 AssertRC(rc);
2468 rc = RTStrFormatTypeRegister("sdfifow", printHdaStrmFifow, NULL);
2469 AssertRC(rc);
2470#if 0
2471 rc = RTStrFormatTypeRegister("sdfmt", printHdaStrmFmt, NULL);
2472 AssertRC(rc);
2473#endif
2474 return rc;
2475}
2476
2477/**
2478 * @interface_method_impl{PDMDEVREG,pfnConstruct}
2479 */
2480static DECLCALLBACK(int) hdaConstruct (PPDMDEVINS pDevIns, int iInstance,
2481 PCFGMNODE pCfgHandle)
2482{
2483 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2484 INTELHDLinkState *s = &pThis->hda;
2485 int rc;
2486
2487 Assert(iInstance == 0);
2488 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
2489
2490 /*
2491 * Validations.
2492 */
2493 if (!CFGMR3AreValuesValid (pCfgHandle, "\0"))
2494 return PDMDEV_SET_ERROR (pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES,
2495 N_ ("Invalid configuration for the INTELHD device"));
2496
2497 // ** @todo r=michaln: This device may need R0/RC enabling, especially if guests
2498 // poll some register(s).
2499
2500 /*
2501 * Initialize data (most of it anyway).
2502 */
2503 s->pDevIns = pDevIns;
2504 /* IBase */
2505 s->IBase.pfnQueryInterface = hdaQueryInterface;
2506
2507 /* PCI Device (the assertions will be removed later) */
2508 PCIDevSetVendorId (&pThis->dev, HDA_PCI_VENDOR_ID); /* nVidia */
2509 PCIDevSetDeviceId (&pThis->dev, HDA_PCI_DEICE_ID); /* HDA */
2510
2511 PCIDevSetCommand (&pThis->dev, 0x0000); /* 04 rw,ro - pcicmd. */
2512 PCIDevSetStatus (&pThis->dev, VBOX_PCI_STATUS_CAP_LIST); /* 06 rwc?,ro? - pcists. */
2513 PCIDevSetRevisionId (&pThis->dev, 0x01); /* 08 ro - rid. */
2514 PCIDevSetClassProg (&pThis->dev, 0x00); /* 09 ro - pi. */
2515 PCIDevSetClassSub (&pThis->dev, 0x03); /* 0a ro - scc; 03 == HDA. */
2516 PCIDevSetClassBase (&pThis->dev, 0x04); /* 0b ro - bcc; 04 == multimedia. */
2517 PCIDevSetHeaderType (&pThis->dev, 0x00); /* 0e ro - headtyp. */
2518 PCIDevSetBaseAddress (&pThis->dev, 0, /* 10 rw - MMIO */
2519 false /* fIoSpace */, false /* fPrefetchable */, true /* f64Bit */, 0x00000000);
2520 PCIDevSetInterruptLine (&pThis->dev, 0x00); /* 3c rw. */
2521 PCIDevSetInterruptPin (&pThis->dev, 0x01); /* 3d ro - INTA#. */
2522
2523#if defined(HDA_AS_PCI_EXPRESS)
2524 PCIDevSetCapabilityList (&pThis->dev, 0x80);
2525#elif defined(VBOX_WITH_MSI_DEVICES)
2526 PCIDevSetCapabilityList (&pThis->dev, 0x60);
2527#else
2528 PCIDevSetCapabilityList (&pThis->dev, 0x50); /* ICH6 datasheet 18.1.16 */
2529#endif
2530
2531 /// @todo r=michaln: If there are really no PCIDevSetXx for these, the meaning
2532 // of these values needs to be properly documented!
2533 /* HDCTL off 0x40 bit 0 selects signaling mode (1-HDA, 0 - Ac97) 18.1.19 */
2534 PCIDevSetByte(&pThis->dev, 0x40, 0x01);
2535
2536 /* Power Management */
2537 PCIDevSetByte(&pThis->dev, 0x50 + 0, VBOX_PCI_CAP_ID_PM);
2538 PCIDevSetByte(&pThis->dev, 0x50 + 1, 0x0); /* next */
2539 PCIDevSetWord(&pThis->dev, 0x50 + 2, VBOX_PCI_PM_CAP_DSI | 0x02 /* version, PM1.1 */ );
2540
2541#ifdef HDA_AS_PCI_EXPRESS
2542 /* PCI Express */
2543 PCIDevSetByte (&pThis->dev, 0x80 + 0, VBOX_PCI_CAP_ID_EXP); /* PCI_Express */
2544 PCIDevSetByte (&pThis->dev, 0x80 + 1, 0x60); /* next */
2545 /* Device flags */
2546 PCIDevSetWord (&pThis->dev, 0x80 + 2,
2547 /* version */ 0x1 |
2548 /* Root Complex Integrated Endpoint */ (VBOX_PCI_EXP_TYPE_ROOT_INT_EP << 4) |
2549 /* MSI */ (100) << 9
2550 );
2551 /* Device capabilities */
2552 PCIDevSetDWord (&pThis->dev, 0x80 + 4, VBOX_PCI_EXP_DEVCAP_FLRESET);
2553 /* Device control */
2554 PCIDevSetWord (&pThis->dev, 0x80 + 8, 0);
2555 /* Device status */
2556 PCIDevSetWord (&pThis->dev, 0x80 + 10, 0);
2557 /* Link caps */
2558 PCIDevSetDWord (&pThis->dev, 0x80 + 12, 0);
2559 /* Link control */
2560 PCIDevSetWord (&pThis->dev, 0x80 + 16, 0);
2561 /* Link status */
2562 PCIDevSetWord (&pThis->dev, 0x80 + 18, 0);
2563 /* Slot capabilities */
2564 PCIDevSetDWord (&pThis->dev, 0x80 + 20, 0);
2565 /* Slot control */
2566 PCIDevSetWord (&pThis->dev, 0x80 + 24, 0);
2567 /* Slot status */
2568 PCIDevSetWord (&pThis->dev, 0x80 + 26, 0);
2569 /* Root control */
2570 PCIDevSetWord (&pThis->dev, 0x80 + 28, 0);
2571 /* Root capabilities */
2572 PCIDevSetWord (&pThis->dev, 0x80 + 30, 0);
2573 /* Root status */
2574 PCIDevSetDWord (&pThis->dev, 0x80 + 32, 0);
2575 /* Device capabilities 2 */
2576 PCIDevSetDWord (&pThis->dev, 0x80 + 36, 0);
2577 /* Device control 2 */
2578 PCIDevSetQWord (&pThis->dev, 0x80 + 40, 0);
2579 /* Link control 2 */
2580 PCIDevSetQWord (&pThis->dev, 0x80 + 48, 0);
2581 /* Slot control 2 */
2582 PCIDevSetWord (&pThis->dev, 0x80 + 56, 0);
2583#endif
2584
2585 /*
2586 * Register the PCI device.
2587 */
2588 rc = PDMDevHlpPCIRegister (pDevIns, &pThis->dev);
2589 if (RT_FAILURE (rc))
2590 return rc;
2591
2592 rc = PDMDevHlpPCIIORegionRegister (pDevIns, 0, 0x4000, PCI_ADDRESS_SPACE_MEM,
2593 hdaMap);
2594 if (RT_FAILURE (rc))
2595 return rc;
2596
2597#ifdef VBOX_WITH_MSI_DEVICES
2598 PDMMSIREG aMsiReg;
2599
2600 RT_ZERO(aMsiReg);
2601 aMsiReg.cMsiVectors = 1;
2602 aMsiReg.iMsiCapOffset = 0x60;
2603 aMsiReg.iMsiNextOffset = 0x50;
2604 rc = PDMDevHlpPCIRegisterMsi(pDevIns, &aMsiReg);
2605 if (RT_FAILURE (rc))
2606 {
2607 LogRel(("Chipset cannot do MSI: %Rrc\n", rc));
2608 PCIDevSetCapabilityList (&pThis->dev, 0x50);
2609 }
2610#endif
2611
2612 rc = PDMDevHlpSSMRegister (pDevIns, HDA_SSM_VERSION, sizeof(*pThis), hdaSaveExec, hdaLoadExec);
2613 if (RT_FAILURE (rc))
2614 return rc;
2615
2616 /*
2617 * Attach driver.
2618 */
2619 rc = PDMDevHlpDriverAttach (pDevIns, 0, &s->IBase,
2620 &s->pDrvBase, "Audio Driver Port");
2621 if (rc == VERR_PDM_NO_ATTACHED_DRIVER)
2622 Log (("hda: No attached driver!\n"));
2623 else if (RT_FAILURE (rc))
2624 {
2625 AssertMsgFailed (("Failed to attach INTELHD LUN #0! rc=%Rrc\n", rc));
2626 return rc;
2627 }
2628
2629
2630
2631 pThis->hda.Codec.pHDAState = (void *)&pThis->hda;
2632 rc = codecConstruct(pDevIns, &pThis->hda.Codec, pCfgHandle);
2633 if (RT_FAILURE(rc))
2634 AssertRCReturn(rc, rc);
2635
2636 /* ICH6 datasheet defines 0 values for SVID and SID (18.1.14-15), which together with values returned for
2637 verb F20 should provide device/codec recognition. */
2638 Assert(pThis->hda.Codec.u16VendorId);
2639 Assert(pThis->hda.Codec.u16DeviceId);
2640 PCIDevSetSubSystemVendorId (&pThis->dev, pThis->hda.Codec.u16VendorId); /* 2c ro - intel.) */
2641 PCIDevSetSubSystemId (&pThis->dev, pThis->hda.Codec.u16DeviceId); /* 2e ro. */
2642
2643 hdaReset (pDevIns);
2644 pThis->hda.Codec.id = 0;
2645 pThis->hda.Codec.pfnTransfer = hdaTransfer;
2646 pThis->hda.Codec.pfnReset = hdaCodecReset;
2647 /*
2648 * 18.2.6,7 defines that values of this registers might be cleared on power on/reset
2649 * hdaReset shouldn't affects these registers.
2650 */
2651 WAKEEN(&pThis->hda) = 0x0;
2652 STATESTS(&pThis->hda) = 0x0;
2653 hdaInitMisc(pDevIns);
2654
2655 return VINF_SUCCESS;
2656}
2657
2658/**
2659 * @interface_method_impl{PDMDEVREG,pfnDestruct}
2660 */
2661static DECLCALLBACK(int) hdaDestruct (PPDMDEVINS pDevIns)
2662{
2663 PCIINTELHDLinkState *pThis = PDMINS_2_DATA(pDevIns, PCIINTELHDLinkState *);
2664
2665 int rc = codecDestruct(&pThis->hda.Codec);
2666 AssertRC(rc);
2667 if (pThis->hda.pu32CorbBuf)
2668 RTMemFree(pThis->hda.pu32CorbBuf);
2669 if (pThis->hda.pu64RirbBuf)
2670 RTMemFree(pThis->hda.pu64RirbBuf);
2671 return VINF_SUCCESS;
2672}
2673
2674/**
2675 * The device registration structure.
2676 */
2677const PDMDEVREG g_DeviceICH6_HDA =
2678{
2679 /* u32Version */
2680 PDM_DEVREG_VERSION,
2681 /* szName */
2682 "hda",
2683 /* szRCMod */
2684 "",
2685 /* szR0Mod */
2686 "",
2687 /* pszDescription */
2688 "ICH IntelHD Audio Controller",
2689 /* fFlags */
2690 PDM_DEVREG_FLAGS_DEFAULT_BITS,
2691 /* fClass */
2692 PDM_DEVREG_CLASS_AUDIO,
2693 /* cMaxInstances */
2694 1,
2695 /* cbInstance */
2696 sizeof(PCIINTELHDLinkState),
2697 /* pfnConstruct */
2698 hdaConstruct,
2699 /* pfnDestruct */
2700 hdaDestruct,
2701 /* pfnRelocate */
2702 NULL,
2703 /* pfnIOCtl */
2704 NULL,
2705 /* pfnPowerOn */
2706 NULL,
2707 /* pfnReset */
2708 hdaReset,
2709 /* pfnSuspend */
2710 NULL,
2711 /* pfnResume */
2712 NULL,
2713 /* pfnAttach */
2714 NULL,
2715 /* pfnDetach */
2716 NULL,
2717 /* pfnQueryInterface. */
2718 NULL,
2719 /* pfnInitComplete */
2720 NULL,
2721 /* pfnPowerOff */
2722 NULL,
2723 /* pfnSoftReset */
2724 NULL,
2725 /* u32VersionEnd */
2726 PDM_DEVREG_VERSION
2727};
Note: See TracBrowser for help on using the repository browser.

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