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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
|
/*
* KMix -- KDE's full featured mini mixer
*
*
* Copyright (C) 1996-2000 Christian Esken <esken@kde.org>
* 2000 Brian Hanson <bhanson@hotmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "mixer_sun.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/file.h>
#include <sys/audioio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include "core/mixer.h"
#include <sys/soundcard.h>
#include <QTimer>
#include <qplatformdefs.h>
//======================================================================
// CONSTANT/ENUM DEFINITIONS
//======================================================================
//
// Mixer Device Numbers
//
// Note: We can't just use the Sun port #defines because :
// 1) Some logical devices don't correspond to ports (master&recmon)
// 2) The play and record port definitions reuse the same values
//
enum MixerDevs
{
MIXERDEV_MASTER_VOLUME,
MIXERDEV_INTERNAL_SPEAKER,
MIXERDEV_HEADPHONE,
MIXERDEV_LINE_OUT,
MIXERDEV_RECORD_MONITOR,
MIXERDEV_MICROPHONE,
MIXERDEV_LINE_IN,
MIXERDEV_CD,
// Insert new devices before this marker
MIXERDEV_END_MARKER
};
const int numDevs = MIXERDEV_END_MARKER;
//
// Device name strings
//
const char* MixerDevNames[] =
{
I18N_NOOP("Master Volume"),
I18N_NOOP("Internal Speaker"),
I18N_NOOP("Headphone"),
I18N_NOOP("Line Out"),
I18N_NOOP("Record Monitor"),
I18N_NOOP("Microphone"),
I18N_NOOP("Line In"),
I18N_NOOP("CD")
};
//
// Channel types (this specifies which icon to display)
//
const MixDevice::ChannelType MixerChannelTypes[] =
{
MixDevice::VOLUME, // MASTER_VOLUME
MixDevice::AUDIO, // INTERNAL_SPEAKER
MixDevice::EXTERNAL, // HEADPHONE (we really need an icon for this)
MixDevice::EXTERNAL, // LINE_OUT
MixDevice::RECMONITOR, // RECORD_MONITOR
MixDevice::MICROPHONE, // MICROPHONE
MixDevice::EXTERNAL, // LINE_IN
MixDevice::CD // CD
};
//
// Mapping from device numbers to Sun port mask values
//
const uint_t MixerSunPortMasks[] =
{
0, // MASTER_VOLUME - no associated port
AUDIO_SPEAKER,
AUDIO_HEADPHONE,
AUDIO_LINE_OUT,
0, // RECORD_MONITOR - no associated port
AUDIO_MICROPHONE,
AUDIO_LINE_IN,
AUDIO_CD
};
//======================================================================
// FUNCTION/METHOD DEFINITIONS
//======================================================================
//======================================================================
// FUNCTION : SUN_getMixer
// DESCRIPTION : Creates and returns a new mixer object.
//======================================================================
Mixer_Backend* SUN_getMixer( Mixer *mixer, int devnum )
{
Mixer_Backend *l_mixer;
l_mixer = new Mixer_SUN( mixer, devnum );
return l_mixer;
}
//======================================================================
// FUNCTION : Mixer::Mixer
// DESCRIPTION : Class constructor.
//======================================================================
Mixer_SUN::Mixer_SUN(Mixer *mixer, int devnum) : Mixer_Backend(mixer, devnum)
{
if ( devnum == -1 )
m_devnum = 0;
}
//======================================================================
// FUNCTION : Mixer::Mixer
// DESCRIPTION : Class destructor.
//======================================================================
Mixer_SUN::~Mixer_SUN()
{
close();
}
//======================================================================
// FUNCTION : Mixer::open
// DESCRIPTION : Initialize the mixer and open the hardware driver.
//======================================================================
int Mixer_SUN::open()
{
//
// We don't support multiple devices
//
if ( m_devnum !=0 )
return Mixer::ERR_OPEN;
//
// Open the mixer hardware driver
//
QString audiodev(qgetenv("AUDIODEV"));
if(audiodev.isNull())
audiodev = "/dev/audio";
audiodev += "ctl";
_udi = audiodev; // use device name as UDI. Doesn't matter as we only use it for hotplugging/unplugging.
if ( ( fd = QT_OPEN( audiodev.toLatin1().data(), O_RDWR ) ) < 0 )
{
if ( errno == EACCES )
return Mixer::ERR_PERM;
else
return Mixer::ERR_OPEN;
}
else
{
//
// Mixer is open. Now define all of the mix devices.
//
int devmask, recmask, i_recsrc, stereodevs;
// Mixer is open. Now define properties
if (ioctl(fd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1)
return Mixer::ERR_READ;
if (ioctl(fd, SOUND_MIXER_READ_RECMASK, &recmask) == -1)
return Mixer::ERR_READ;
if (ioctl(fd, SOUND_MIXER_READ_RECSRC, &i_recsrc) == -1)
return Mixer::ERR_READ;
if (ioctl(fd, SOUND_MIXER_READ_STEREODEVS, &stereodevs) == -1)
return Mixer::ERR_READ;
for ( int idx = 0; idx < numDevs; idx++ )
{
Volume::ChannelMask chnmask = Volume::MLEFT;
if ( stereodevs & ( 1 << idx ) ) chnmask = (Volume::ChannelMask)(chnmask|Volume::MRIGHT);
Volume playbackVol( 100, 1, true, false );
QString id;
id.setNum(idx);
MixDevice* md = new MixDevice( _mixer, id,
QString(MixerDevNames[idx]), MixerChannelTypes[idx]);
md->addPlaybackVolume(playbackVol);
// Tutorial: Howto add a simple capture switch
if ( recmask & ( 1 << idx ) ) {
// can be captured => add capture volume, with no capture volume
chnmask = Volume::MNONE;
Volume captureVol( 100, 1, true, true );
md->addCaptureVolume(captureVol);
}
m_mixDevices.append( md->addToPool() );
}
registerCard("SUN Audio Mixer");
m_isOpen = true;
return 0;
}
}
//======================================================================
// FUNCTION : Mixer::close
// DESCRIPTION : Close the hardware driver.
//======================================================================
int Mixer_SUN::close()
{
_pollingTimer->stop();
m_isOpen = false;
int l_i_ret = ::close( fd );
closeCommon();
return l_i_ret;
}
//======================================================================
// FUNCTION : Mixer::errorText
// DESCRIPTION : Convert an error code enum to a text string.
//======================================================================
QString Mixer_SUN::errorText( int mixer_error )
{
QString errmsg;
switch (mixer_error)
{
case Mixer::ERR_PERM:
errmsg = i18n(
"kmix: You do not have permission to access the mixer device.\n"
"Ask your system administrator to fix /dev/audioctl to allow access."
);
break;
default:
errmsg = Mixer_Backend::errorText( mixer_error );
}
return errmsg;
}
//======================================================================
// FUNCTION : Mixer::readVolumeFromHW
// DESCRIPTION : Read the audio information from the driver.
//======================================================================
int Mixer_SUN::readVolumeFromHW( const QString& id, shared_ptr<MixDevice> md )
{
audio_info_t audioinfo;
int devnum = id2num(id);
uint_t devMask = MixerSunPortMasks[devnum];
Volume& volume = md->playbackVolume();
//
// Read the current audio information from the driver
//
if ( ioctl( fd, AUDIO_GETINFO, &audioinfo ) < 0 )
{
return( Mixer::ERR_READ );
}
else
{
//
// Extract the appropriate fields based on the requested device
//
switch ( devnum )
{
case MIXERDEV_MASTER_VOLUME :
//volume.setSwitchActivated( audioinfo.output_muted );
GainBalanceToVolume( audioinfo.play.gain,
audioinfo.play.balance,
volume );
break;
case MIXERDEV_RECORD_MONITOR :
md->setMuted(false);
volume.setAllVolumes( audioinfo.monitor_gain );
break;
case MIXERDEV_INTERNAL_SPEAKER :
case MIXERDEV_HEADPHONE :
case MIXERDEV_LINE_OUT :
md->setMuted( (audioinfo.play.port & devMask) ? false : true );
GainBalanceToVolume( audioinfo.play.gain,
audioinfo.play.balance,
volume );
break;
case MIXERDEV_MICROPHONE :
case MIXERDEV_LINE_IN :
case MIXERDEV_CD :
md->setMuted( (audioinfo.record.port & devMask) ? false : true );
GainBalanceToVolume( audioinfo.record.gain,
audioinfo.record.balance,
volume );
break;
default :
return Mixer::ERR_READ;
}
return 0;
}
}
//======================================================================
// FUNCTION : Mixer::writeVolumeToHW
// DESCRIPTION : Write the specified audio settings to the hardware.
//======================================================================
int Mixer_SUN::writeVolumeToHW( const QString& id, shared_ptr<MixDevice> md )
{
uint_t gain;
uchar_t balance;
uchar_t mute;
Volume& volume = md->playbackVolume();
int devnum = id2num(id);
//
// Convert the Volume(left vol, right vol) to the Gain/Balance Sun uses
//
VolumeToGainBalance( volume, gain, balance );
mute = md->isMuted() ? 1 : 0;
//
// Read the current audio settings from the hardware
//
audio_info_t audioinfo;
if ( ioctl( fd, AUDIO_GETINFO, &audioinfo ) < 0 )
{
return( Mixer::ERR_READ );
}
//
// Now, based on the devnum that we are writing to, update the appropriate
// volume field and twiddle the appropriate bitmask to enable/mute the
// device as necessary.
//
switch ( devnum )
{
case MIXERDEV_MASTER_VOLUME :
audioinfo.play.gain = gain;
audioinfo.play.balance = balance;
audioinfo.output_muted = mute;
break;
case MIXERDEV_RECORD_MONITOR :
audioinfo.monitor_gain = gain;
// no mute or balance for record monitor
break;
case MIXERDEV_INTERNAL_SPEAKER :
case MIXERDEV_HEADPHONE :
case MIXERDEV_LINE_OUT :
audioinfo.play.gain = gain;
audioinfo.play.balance = balance;
if ( mute )
audioinfo.play.port &= ~MixerSunPortMasks[devnum];
else
audioinfo.play.port |= MixerSunPortMasks[devnum];
break;
case MIXERDEV_MICROPHONE :
case MIXERDEV_LINE_IN :
case MIXERDEV_CD :
audioinfo.record.gain = gain;
audioinfo.record.balance = balance;
if ( mute )
audioinfo.record.port &= ~MixerSunPortMasks[devnum];
else
audioinfo.record.port |= MixerSunPortMasks[devnum];
break;
default :
return Mixer::ERR_READ;
}
//
// Now that we've updated the audioinfo struct, write it back to the hardware
//
if ( ioctl( fd, AUDIO_SETINFO, &audioinfo ) < 0 )
{
return( Mixer::ERR_WRITE );
}
else
{
return 0;
}
}
//======================================================================
// FUNCTION : Mixer::isRecsrcHW
// DESCRIPTION : Returns true if the specified device is a record source.
//======================================================================
// isRecsrcHW() is not supported any longer. You must set the state in the MixDevice in readVolumeFromHW() or writeVolumeFromHW() appropriately
//bool Mixer_SUN::isRecsrcHW( isRecsrcHW(const QString& id )
//{
// int devnum = id2num(id);
// switch ( devnum )
// {
// case MIXERDEV_MICROPHONE :
// case MIXERDEV_LINE_IN :
// case MIXERDEV_CD :
// return true;
//
// default :
// return false;
// }
//}
//======================================================================
// FUNCTION : Mixer::VolumeToGainBalance
// DESCRIPTION : Converts a Volume(left vol + right vol) into the
// Gain/Balance values used by Sun.
//======================================================================
void Mixer_SUN::VolumeToGainBalance( Volume& volume, uint_t& gain, uchar_t& balance )
{
if ( ( volume.count() == 1 ) ||
( volume.getVolume(Volume::LEFT) == volume.getVolume(Volume::RIGHT) ) )
{
gain = volume.getVolume(Volume::LEFT);
balance = AUDIO_MID_BALANCE;
}
else
{
if ( volume.getVolume(Volume::LEFT) > volume.getVolume(Volume::RIGHT) )
{
gain = volume.getVolume(Volume::LEFT);
balance = AUDIO_LEFT_BALANCE +
( AUDIO_MID_BALANCE - AUDIO_LEFT_BALANCE ) *
volume.getVolume(Volume::RIGHT) / volume.getVolume(Volume::LEFT);
}
else
{
gain = volume.getVolume(Volume::RIGHT);
balance = AUDIO_RIGHT_BALANCE -
( AUDIO_RIGHT_BALANCE - AUDIO_MID_BALANCE ) *
volume.getVolume(Volume::LEFT) / volume.getVolume(Volume::RIGHT);
}
}
}
//======================================================================
// FUNCTION : Mixer::GainBalanceToVolume
// DESCRIPTION : Converts Gain/Balance returned by Sun driver to the
// Volume(left vol + right vol) format used by kmix.
//======================================================================
void Mixer_SUN::GainBalanceToVolume( uint_t& gain, uchar_t& balance, Volume& volume )
{
if ( volume.count() == 1 )
{
volume.setVolume( Volume::LEFT, gain );
}
else
{
if ( balance <= AUDIO_MID_BALANCE )
{
volume.setVolume( Volume::LEFT, gain );
volume.setVolume( Volume::RIGHT, gain *
( balance - AUDIO_LEFT_BALANCE ) /
( AUDIO_MID_BALANCE - AUDIO_LEFT_BALANCE ) );
}
else
{
volume.setVolume( Volume::RIGHT, gain );
volume.setVolume( Volume::LEFT, gain *
( AUDIO_RIGHT_BALANCE - balance ) /
( AUDIO_RIGHT_BALANCE - AUDIO_MID_BALANCE ) );
}
}
}
int Mixer_SUN::id2num(const QString& id)
{
return id.toInt();
}
QString SUN_getDriverName() {
return "SUNAudio";
}
QString Mixer_SUN::getDriverName()
{
return "SUNAudio";
}
|