forked from krmnn/Envy24HT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudioDevice.cpp
449 lines (353 loc) · 15.3 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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
#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"
#define super IOAudioDevice
extern int set_dac(struct CardData *card, int reg, int level);
OSDefineMetaClassAndStructors(Envy24HTAudioDevice, IOAudioDevice)
bool Envy24HTAudioDevice::initHardware(IOService *provider)
{
bool result = false;
DBGPRINT("Envy24HTAudioDevice[%p]::initHardware(%p)\n", this, provider);
if (!super::initHardware(provider)) {
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);
// NAMES CHANGED
setDeviceName("Envy24HT");
setDeviceShortName("Envy24HT");
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) {
goto Done;
}
card->mtbase = card->pci_dev->mapDeviceMemoryWithRegister(kIOPCIConfigBaseAddress1);
if (!card->mtbase) {
goto Done;
}
if (AllocDriverData(card->pci_dev, card) == NULL) {
goto Done;
}
if (!createAudioEngine()) {
goto Done;
}
result = true;
Done:
if (!result) {
IOLog("Something failed!\n");
IOSleep(3000);
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("Envy24HTAudioDevice::initHardware returns %d\n", result);
return result;
}
void Envy24HTAudioDevice::free()
{
DBGPRINT("Envy24HTAudioDevice[%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 Envy24HTAudioDevice::createAudioEngine()
{
bool result = false;
Envy24HTAudioEngine *audioEngine = NULL;
IOAudioControl *control;
struct Parm *p = card->ParmList;
DBGPRINT("Envy24HTAudioDevice[%p]::createAudioEngine()\n", this);
audioEngine = new Envy24HTAudioEngine;
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();
if (p->HasMute) {
// Create an output mute control
control = IOAudioToggleControl::createMuteControl(false, // initial state - unmuted
kIOAudioControlChannelIDAll, // Affects all channels
kIOAudioControlChannelNameAll,
p->ControlID, // control ID - driver-defined
kIOAudioControlUsageOutput);
control->setValueChangeHandler((IOAudioControl::IntValueChangeHandler)outputMuteChangeHandler, this);
audioEngine->addDefaultAudioControl(control);
control->release();
}
p = p->Next;
}
#if 0
// Create an output mute control
control = IOAudioToggleControl::createMuteControl(false, // initial state - unmuted
kIOAudioControlChannelIDAll, // Affects all channels
kIOAudioControlChannelNameAll,
0, // control ID - driver-defined
kIOAudioControlUsageOutput);
if (!control) {
goto Done;
}
control->setValueChangeHandler((IOAudioControl::IntValueChangeHandler)outputMuteChangeHandler, this);
audioEngine->addDefaultAudioControl(control);
control->release();
control->setValueChangeHandler((IOAudioControl::IntValueChangeHandler)gainChangeHandler, this);
audioEngine->addDefaultAudioControl(control);
control->release();
// Create an input mute control
control = IOAudioToggleControl::createMuteControl(false, // initial state - unmuted
kIOAudioControlChannelIDAll, // Affects all channels
kIOAudioControlChannelNameAll,
0, // control ID - driver-defined
kIOAudioControlUsageInput);
if (!control) {
goto Done;
}
control->setValueChangeHandler((IOAudioControl::IntValueChangeHandler)inputMuteChangeHandler, this);
audioEngine->addDefaultAudioControl(control);
control->release();
#endif
// 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 Envy24HTAudioDevice::volumeChangeHandler(IOService *target, IOAudioControl *volumeControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24HTAudioDevice *audioDevice;
audioDevice = (Envy24HTAudioDevice *)target;
if (audioDevice) {
result = audioDevice->volumeChanged(volumeControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24HTAudioDevice::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;
//val = val | (val << 8);
//IOLog("write reg %d, val %d\n", p->reg, val);
if (p->I2C) {
WriteI2C(card->pci_dev, card, p->I2C_codec_addr, p->reg, val | 0x80);
}
else {
if (val <= p->MinValue && p->codec) {
if (p->codec->type == AKM4528 || p->codec->type == AKM4524 || p->codec->type == AKM4355 || p->codec->type == AKM4381) {
val = 0;
}
}
if (p->codec && p->codec->type == AKM4358) {
val |= 0x80; // enable
}
//IOLog("AKM write reg %d, val %d\n", p->reg, val);
if (card->SubType == AP192) {
set_dac(card, p->reg, val);
}
else if (card->SubType == AUREON_SPACE || card->SubType == AUREON_SKY) {
wm_put(card, card->iobase, p->reg, val | 0x100);
}
else {
akm4xxx_write(card, p->codec, 0, p->reg, val);
}
}
break;
}
p = p->Next;
}
}
return kIOReturnSuccess;
}
IOReturn Envy24HTAudioDevice::outputMuteChangeHandler(IOService *target, IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24HTAudioDevice *audioDevice;
audioDevice = (Envy24HTAudioDevice *)target;
if (audioDevice) {
result = audioDevice->outputMuteChanged(muteControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24HTAudioDevice::outputMuteChanged(IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
//DBGPRINT("Envy24HTAudioDevice[%p]::outputMuteChanged(%p, %ld, %ld)\n", this, muteControl, oldValue, newValue);
// Add output mute code here
// Add hardware volume code change
if (oldValue != newValue) {
struct Parm *p = card->ParmList;
while (p != NULL) // look up parm
{
if (muteControl->getControlID() == p->ControlID) {
if (p->HasMute) {
if (p->I2C) {
WriteI2C(card->pci_dev, card, p->I2C_codec_addr, p->MuteReg, newValue > 0 ? p->MuteOnVal : p->MuteOffVal);
}
else if (p->codec) {
akm4xxx_write(card, p->codec, 0, p->MuteReg, newValue > 0 ? p->MuteOnVal : p->MuteOffVal);
}
else if (card->SubType == AUREON_SPACE || card->SubType == AUREON_SKY) {
wm_put(card, card->iobase, p->MuteReg, newValue > 0 ? p->MuteOnVal : p->MuteOffVal);
}
}
break;
}
p = p->Next;
}
}
return kIOReturnSuccess;
}
IOReturn Envy24HTAudioDevice::gainChangeHandler(IOService *target, IOAudioControl *gainControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24HTAudioDevice *audioDevice;
audioDevice = (Envy24HTAudioDevice *)target;
if (audioDevice) {
result = audioDevice->gainChanged(gainControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24HTAudioDevice::gainChanged(IOAudioControl *gainControl, SInt32 oldValue, SInt32 newValue)
{
DBGPRINT("Envy24HTAudioDevice[%p]::gainChanged(%p, %d, %d)\n", this, gainControl, oldValue, (int)newValue);
if (gainControl) {
DBGPRINT("\t-> Channel %u\n", (unsigned int)(gainControl->getChannelID()));
}
// Add hardware gain change code here
//#warning TODO gainChanged()
return kIOReturnSuccess;
}
IOReturn Envy24HTAudioDevice::inputMuteChangeHandler(IOService *target, IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
IOReturn result = kIOReturnBadArgument;
Envy24HTAudioDevice *audioDevice;
audioDevice = (Envy24HTAudioDevice *)target;
if (audioDevice) {
result = audioDevice->inputMuteChanged(muteControl, oldValue, newValue);
}
return result;
}
IOReturn Envy24HTAudioDevice::inputMuteChanged(IOAudioControl *muteControl, SInt32 oldValue, SInt32 newValue)
{
DBGPRINT("Envy24HTAudioDevice[%p]::inputMuteChanged(%p, %d, %d)\n", this, muteControl, (int)oldValue, (int)newValue);
// Add input mute change code here
// #warning TODO inputMuteChanged()
return kIOReturnSuccess;
}
/*
typedef enum _IOAudioDevicePowerState {
kIOAudioDeviceSleep = 0, // When sleeping
kIOAudioDeviceIdle = 1, // When no audio engines running
kIOAudioDeviceActive = 2 // audio engines running
} IOAudioDevicePowerState;
*/
IOReturn Envy24HTAudioDevice::performPowerStateChange(IOAudioDevicePowerState oldPowerState,
IOAudioDevicePowerState newPowerState,
UInt32 *microsecondsUntilComplete)
{
DBGPRINT("Envy24HTAudioDevice::performPowerStateChange!, old = %d, new = %d\n", oldPowerState, newPowerState);
if (newPowerState == kIOAudioDeviceSleep) {
// go to sleep, power down and save settings
IOLog("Envy24HTAudioDevice::performPowerStateChange -> entering sleep\n");
deactivateAllAudioEngines();
}
else if (newPowerState != kIOAudioDeviceSleep && oldPowerState == kIOAudioDeviceSleep) {
// wake from sleep, power up and restore settings
IOLog("Envy24HTAudioDevice::performPowerStateChange -> waking up!\n");
card_init(card);
createAudioEngine();
}
return kIOReturnSuccess;
}
void Envy24HTAudioDevice::dumpRegisters()
{
DBGPRINT("Envy24HTAudioDevice[%p]::dumpRegisters()\n", this);
int i;
DBGPRINT("iobase = %llx, mtbase = %llx\n", card->iobase->getPhysicalAddress(), card->mtbase->getPhysicalAddress());
// config
DBGPRINT("Vendor id = %x\n", card->pci_dev->configRead16(0));
DBGPRINT("Device id = %x\n", card->pci_dev->configRead16(2));
DBGPRINT("PCI command id = %x\n", card->pci_dev->configRead16(4));
DBGPRINT("iobase = %x\n", (unsigned int)(card->pci_dev->configRead32(0x10)));
DBGPRINT("mtbase = %x\n", (unsigned int)(card->pci_dev->configRead32(0x14)));
DBGPRINT("---\n");
for (i = 0; i <= 0x1F; i++) {
DBGPRINT("CCS %02d: %x\n", i, card->pci_dev->ioRead8(i, card->iobase));
}
DBGPRINT("---\n");
for (i = 0; i <= 0x44; i+=4) {
DBGPRINT("MT %02d: %x\n", i, (unsigned int)(card->pci_dev->ioRead32(i, card->mtbase)));
}
IOSleep(3000);
}