Table of Contents

AC100 sound mixer

These netbooks use ALC5632 audio codec plus mixer IC which has quite some amount of knobs and switches. Most of them are available for direct manipulation with alsamixer, GNOME Volume Control and other applications that interact with ALSA mixers.

Analog Audio Mixer Path

Fear not, here's the diagram from the datasheet that allows one to make sense out of all those confusing opportunities:

Understanding it doesn't require any special knowledge, here's a short legend:

Common usage scenarious

Here ALSA control names are used, if you're using alsamixer or other similar software you will not see “Playback” or “Mux” in the control names, that is normal.

Stereo playback on integrated speakers

Should be enabled:

Should be set:

Master and speaker playbacks should be unmuted and set to the desired level.

Proper mono sound via MONO mixer or Speaker mixer is impossible to produce on unmodified hardware, see reversed_polarity_of_one_of_the_integrated_speakers for details. Luckily most usage scenarios do not require that anyway. You can swap polarity of connection of one of the speakers but then RN/-R would need to be used for the stereo output.

Stereo playback on headphones

Same as stereo playback on integrated speakers but with Enabled:

Set:

To mute the internal speakers you can disable Int Spk or mute Speaker.

Recording sound from integrated DMIC

This can be used to record sound from the digital microphone integrated in the webcam module, useful for e.g. VoIP Selected for capture:

Set:

Tweak DMIC Boost Volume and Rec Capture Volume to your needs.

Recording from external microphone

Selected for capture:

Tweak Mic 1 Boost Volume, Mic1 Capture Volume and Rec Capture Volume to your needs.

Save and Restore different sound settings

Don't frighten you do not need to memorize all the above settings. If you select the settings in alsamixer according to your needs type on the command line:

# alsactl store -f <name>
</code
e.g. 
<code>
# alsactl store -f headphones.state

Now, if you want to switch over to your headphone settings next time simply type

alsactl restore -f headphones.state

Hence, you can save settings for internal speakers, headphones, mute all, etc. If you do not want to type all the above to restore just create a little shell script (name it e.g. setsound.sh) to do that for you.

#!/bin/sh
# Set alsa sound to a predefined state
# save state via 
# alsactl store -f <name>.state
# call this this by
# ./setsound headphones

alsactl restore -f {$1}.state

make the file executable

# chmod +x ./setsound.sh

now you can set sound settings by simply typing

# ./setsound.sh headphone