-
Notifications
You must be signed in to change notification settings - Fork 1
/
AudioDevice.cpp
executable file
·383 lines (296 loc) · 10.5 KB
/
AudioDevice.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
#include "AudioDevice.h"
#include "AudioEngine.h"
#include <IOKit/audio/IOAudioControl.h>
#include <IOKit/audio/IOAudioLevelControl.h>
#include <IOKit/audio/IOAudioToggleControl.h>
#include <IOKit/audio/IOAudioDefines.h>
#include <IOKit/IOLib.h>
#include <IOKit/pci/IOPCIDevice.h>
#include "misc.h"
#include "regs.h"
#define super IOAudioDevice
OSDefineMetaClassAndStructors(Envy24AudioDevice, IOAudioDevice)
bool Envy24AudioDevice::initHardware(IOService *provider)
{
bool result = false;
//IOLog("Envy24AudioDevice[%p]::initHardware(%p)\n", this, provider);
if (!super::initHardware(provider)) {
IOLog("Couldn't perform initHardware on superclass of Envy24AudioDevice!\n");
goto Done;
}
card = new CardData;
if (!card)
{
IOLog("Couldn't allocate memory for CardData!\n");
IOSleep(3000);
goto Done;
}
card->pci_dev = OSDynamicCast(IOPCIDevice, provider);
if (!card->pci_dev)
{
IOLog("Couldn't get pci_dev!\n");
IOSleep(3000);
goto Done;
}
card->pci_dev->setIOEnable(true);
card->pci_dev->setBusMasterEnable(true);
setDeviceName("Envy24");
setDeviceShortName("Envy24");
setManufacturerName("VIA/ICE");
// Config a map for the PCI config base registers
// We need to keep this map around until we're done accessing the registers
card->iobase = card->pci_dev->mapDeviceMemoryWithRegister(kIOPCIConfigBaseAddress0);
if (!card->iobase) {
IOLog("Couldn't assign iobase!\n");
goto Done;
}
card->mtbase = card->pci_dev->mapDeviceMemoryWithRegister(kIOPCIConfigBaseAddress3);
if (!card->mtbase) {
IOLog("Couldn't assign mtbase!\n");
goto Done;
}
if (AllocDriverData(card->pci_dev, card) == NULL)
{
IOLog("AllocDriverData() failed!\n");
goto Done;
}
if (!createAudioEngine()) {
goto Done;
}
result = true;
Done:
if (!result) {
IOLog("Something failed!\n");
IOSleep(1000);
if (card && card->iobase) {
card->iobase->release();
card->iobase = NULL;
}
if (card && card->mtbase) {
card->mtbase->release();
card->mtbase = NULL;
}
if (card)
{
FreeDriverData(card);
delete card;
}
}
//IOLog("Envy24AudioDevice::initHardware returns %d\n", result);
return result;
}
void Envy24AudioDevice::free()
{
DBGPRINT("Envy24AudioDevice[%p]::free()\n", this);
if (card)
{
if (card->iobase) {
card->iobase->release();
card->iobase = NULL;
}
if (card->mtbase) {
card->mtbase->release();
card->mtbase = NULL;
}
FreeDriverData(card);
delete card;
}
super::free();
}
bool Envy24AudioDevice::createAudioEngine()
{
bool result = false;
Envy24AudioEngine *audioEngine = NULL;
IOAudioControl *control;
struct Parm *p = card->ParmList;
DBGPRINT("Envy24AudioDevice[%p]::createAudioEngine()\n", this);
audioEngine = new Envy24AudioEngine;
if (!audioEngine) {
goto Done;
}
// Init the new audio engine with the device registers so it can access them if necessary
// The audio engine subclass could be defined to take any number of parameters for its
// initialization - use it like a constructor
if (!audioEngine->init(card)) {
goto Done;
}
while (p != NULL)
{
control = IOAudioLevelControl::createVolumeControl(p->InitialValue, // Initial value
p->MinValue, // min value
p->MaxValue, // max value
p->MindB, // -144 in IOFixed (16.16)
p->MaxdB, // max 0.0 in IOFixed
p->ChannelID,
p->Name,
p->ControlID, // control ID - driver-defined,
p->Usage);
if (!control) {
IOLog("Failed to create control!\n");
goto Done;
}
control->setValueChangeHandler((IOAudioControl::IntValueChangeHandler)volumeChangeHandler, this);
audioEngine->addDefaultAudioControl(control);
control->release();
p = p->Next;
}
// Active the audio engine - this will cause the audio engine to have start() and initHardware() called on it
// After this function returns, that audio engine should be ready to begin vending audio services to the system
activateAudioEngine(audioEngine);
// Once the audio engine has been activated, release it so that when the driver gets terminated,
// it gets freed
audioEngine->release();
result = true;
Done:
if (!result && (audioEngine != NULL)) {
audioEngine->release();
}
return result;
}
IOReturn Envy24AudioDevice::volumeChangeHandler(IOService *target, IOAudioControl *volumeControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24AudioDevice *audioDevice;
audioDevice = (Envy24AudioDevice *)target;
if (audioDevice) {
result = audioDevice->volumeChanged(volumeControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24AudioDevice::volumeChanged(IOAudioControl *volumeControl, SInt32 oldValue, SInt32 newValue)
{
//IOLog("Envy24AudioDevice[%p]::volumeChanged(%p, %ld, %ld)\n", this, volumeControl, oldValue, newValue);
// Add hardware volume code change
if (oldValue != newValue) {
struct Parm *p = card->ParmList;
while (p != NULL) // look up parm
{
if (volumeControl->getControlID() == p->ControlID)
{
unsigned char val = newValue;
//IOLog("write reg %d, val %d\n", p->reg, val);
if (p->reverse)
{
val = p->MaxValue - val;
}
if (val <= p->MinValue)
{
if (card->codec[p->codec].type == AKM4528 ||
card->codec[p->codec].type == AKM4524)
{
val = 0;
}
}
akm4xxx_write(card, &(card->codec[p->codec]), p->reg, val);
break;
}
p = p->Next;
}
}
return kIOReturnSuccess;
}
IOReturn Envy24AudioDevice::outputMuteChangeHandler(IOService *target, IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24AudioDevice *audioDevice;
audioDevice = (Envy24AudioDevice *)target;
if (audioDevice) {
result = audioDevice->outputMuteChanged(muteControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24AudioDevice::outputMuteChanged(IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
DBGPRINT("Envy24AudioDevice[%p]::outputMuteChanged(%p, %ld, %ld)\n", this, muteControl, oldValue, newValue);
// Add output mute code here
if (newValue) {
} else {
}
return kIOReturnSuccess;
}
IOReturn Envy24AudioDevice::gainChangeHandler(IOService *target, IOAudioControl *gainControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24AudioDevice *audioDevice;
audioDevice = (Envy24AudioDevice *)target;
if (audioDevice) {
result = audioDevice->gainChanged(gainControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24AudioDevice::gainChanged(IOAudioControl *gainControl, SInt32 oldValue, SInt32 newValue)
{
DBGPRINT("Envy24AudioDevice[%p]::gainChanged(%p, %ld, %ld)\n", this, gainControl, oldValue, newValue);
if (gainControl) {
DBGPRINT("\t-> Channel %ld\n", gainControl->getChannelID());
}
// Add hardware gain change code here
return kIOReturnSuccess;
}
IOReturn Envy24AudioDevice::inputMuteChangeHandler(IOService *target, IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24AudioDevice *audioDevice;
audioDevice = (Envy24AudioDevice *)target;
if (audioDevice) {
result = audioDevice->inputMuteChanged(muteControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24AudioDevice::inputMuteChanged(IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
DBGPRINT("Envy24AudioDevice[%p]::inputMuteChanged(%p, %ld, %ld)\n", this, muteControl, oldValue, newValue);
// Add input mute change code here
return kIOReturnSuccess;
}
/*
typedef enum _IOAudioDevicePowerState {
kIOAudioDeviceSleep = 0, // When sleeping
kIOAudioDeviceIdle = 1, // When no audio engines running
kIOAudioDeviceActive = 2 // audio engines running
} IOAudioDevicePowerState;
*/
IOReturn Envy24AudioDevice::performPowerStateChange(IOAudioDevicePowerState oldPowerState,
IOAudioDevicePowerState newPowerState,
UInt32 *microsecondsUntilComplete)
{
IOLog("Envy24AudioDevice::performPowerStateChange!, old = %d, new = %d\n", oldPowerState, newPowerState);
if (newPowerState == kIOAudioDeviceSleep) // go to sleep, power down and save settings
{
IOLog("Envy24AudioDevice::performPowerStateChange -> entering sleep\n");
}
else if (newPowerState != kIOAudioDeviceSleep &&
oldPowerState == kIOAudioDeviceSleep) // wake from sleep, power up and restore settings
{
IOLog("Envy24AudioDevice::performPowerStateChange -> waking up!\n");
card_init(card);
}
return kIOReturnSuccess;
}
void Envy24AudioDevice::dumpRegisters()
{
DBGPRINT("Envy24AudioDevice[%p]::dumpRegisters()\n", this);
int i;
DBGPRINT("config 0x60 = %x\n", card->pci_dev->configRead8(0x60));
DBGPRINT("config 0x61 = %x\n", card->pci_dev->configRead8(0x61));
DBGPRINT("config 0x62 = %x\n", card->pci_dev->configRead8(0x62));
DBGPRINT("config 0x63 = %x\n", card->pci_dev->configRead8(0x63));
DBGPRINT("---\n");
for (i = 0; i < 0x1E; i++)
{
DBGPRINT("CCS %02x: %02x\n", i, card->pci_dev->ioRead8(i, card->iobase));
}
IOSleep(100);
DBGPRINT("---\n");
for (i = 0; i <= 0x31; i++)
{
DBGPRINT("CCI %02x: %02x\n", i, ReadCCI(card, i));
}
IOSleep(100);
DBGPRINT("---\n");
for (i = 0; i <= 0x3F; i++)
{
DBGPRINT("MT %02x: %02x\n", i, card->pci_dev->ioRead8(i, card->mtbase));
}
IOSleep(1000);
}