I’m a bit rusty … but anyway … for the OP, wrt the Master sound being muted, with this currently card-1, it can be forced to be unmuted with the ‘amixer’ command in an xterm as a regular user:
amixer -c 1 -- set 'Master' on 60%
I may have the syntax wrong … possibly it should be:
amixer -c 1 -- sset 'Master' on 60%
Now the above only works as long as analog is card-1, and as noted audio by default goes to card-0. So after setting the above, you likely need to do what I note below to swap card-0 and card-1.
From the script I note:
00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series]
00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller (rev 01)
and also
!!Advanced information - PCI Vendor/Device/Subsystem ID's
!!-------------------------------------------------------
00:01.1 0403: 1002:1714
Subsystem: 103c:358b
--
00:14.2 0403: 1022:780d (rev 01)
Subsystem: 103c:358b
The above is very useful, as it gives us sufficient information to deduce the ID the PCI vendor/device/subystem ID for both the HDMI and the analog devices. We can then configure a setup file so to assign the analog sound to card-0 and the HDMI sound to card-1.
So either as the first couple lines in the start of the /etc/modprobe.d/50-sound.conf file add the following, (or if the file does not exist create the file with the following content):
options snd_hda_intel index=0 vid=1022 pid=780d
options snd_hda_intel index=1 vid=1002 pid=1714
then with the /etc/modprobe.d/50-sound.conf file saved (you will need to use root permissions to edit/create the file) save the settings and test. Do NOT (I repeat do NOT) run YaST sound after creating this file, as YaST will wipe out those settings.
IF after doing the above edit, swaping the analog sound and HDMI sound, if the Master volume is muted, then with the analog sound as card-0, then the unmute command will be something like the following in an xterm as a regular user:
amixer -c 0 -- set 'Master' on, 60
again - be careful with the syntax
Good luck.