LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-13-2008, 05:00 PM   #1
forrest44
Member
 
Registered: May 2004
Location: In the staple gun
Distribution: slackware4life
Posts: 119

Rep: Reputation: 15
hsfmodem-driver + Intel HDA = no more sound!...?


Anyone had any experience with this?

Sound worked find on my Presario C500 laptop after the standard slackware install.

I have dial-up internet, so after running the scanModem.gz script, I went and downlowded and installed the hsf modem driver from www.linuxant.com.

Now my sound no longer plays. (nothing comes through speakers.) I can adjust volumes in alsamixer though.

My soundcard(?)/modem is reported as "Audio device: Intel Corporation 82801G".


After running /etc/rc.d/init.d/hsf stop I have no more sound device. (ie alsamixer/KMix don't give me any controls) Has the hsf driver has installed its own alsa drivers?

help help! What should I do?

Cheers
 
Old 11-13-2008, 07:34 PM   #2
forrest44
Member
 
Registered: May 2004
Location: In the staple gun
Distribution: slackware4life
Posts: 119

Original Poster
Rep: Reputation: 15
It should also be noted that I am using Slackware 12.0.
 
Old 11-13-2008, 08:28 PM   #3
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,372

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
The modem driver is probably adding the snd-intel8x0m kernel module. Check the output from lsmod. If the kernel module is present, try modprobe -r snd-intel8x0m to remove it.
There may also be a kernel module for the modem device. This should be removed by the /etc/rc.d/init.d/hsf stop command, but it would pay to check.
You may need to customise your /etc/rc.d/init.d/hsf to suit your Slackware setup to avoid having to do this manually.
 
Old 11-15-2008, 11:57 PM   #4
forrest44
Member
 
Registered: May 2004
Location: In the staple gun
Distribution: slackware4life
Posts: 119

Original Poster
Rep: Reputation: 15
Thanks

I booted up today and everything works fine! Before there was no dialing sound when the modem was dialing, but now there are the dial tones and everything. What really annoys me is I don't know what I did to fix it!! grrrr

Now, while attempting to play a sound clip while the modem is dialing, Amarok says 'sound card is busy'.

How can I stop the dialing tones and thus free up the sound card?
 
Old 11-16-2008, 06:33 AM   #5
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,372

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
You have not given the details of the modem in your machine, but I suspect that the driver that you downloaded is similar to that which I have on my laptop. It probably installs a kernel module for your modem device (in my case 'slamr'), which is now being added to your kernel at boot time. This driver is working through the Intel 82801 chip, which can be used to generate modem tones when used in conjunction with the snd-intel8x0m kernel module.
I had problems with the slamr kernel module, so in my setup this module is blacklisted in my /etc/modprobe.d/blacklist so that it is not loaded at boot time. When I want to use the modem, I run the script shown below with a start option. This causes the slamr and snd-intel8x0m modules to be added. When I have finished using the modem, I run the script with a stop option. This causes the slamr and snd-intel8x0m modules to be removed. Note that the script requires root privileges and is kept in /etc/rc.d/.

I suspect that you need to modify your /etc/rc.d/init.d/hsf script to perform similar operations, so that the required kernel modules are only loaded when required.
If you look in /etc/modprobe.d/blacklist, you will see that the snd-intel8x0m module and other ALSA modules to support sound modems, are blacklisted with the comment
Quote:
For most people they just break sound support...
Code:
#!/bin/sh
#
# rc.slmodemd
#
# Start slmodemd daemon for SmartLink
#
## My addition to add country support
SLMODEMD_COUNTRY=AUSTRALIA
## My addition to add modem functions to the Intel 82801 CA/CAM AC'97 controller
CHIPSET_MODEM_MODULE=snd-intel8x0m
## My addition to nominate slmodemd kernel module
SLMODEMD_KERNEL_MODULE=slamr

slmodemd_start() 
{
	if [ -x /usr/sbin/slmodemd ]; then
		echo -n "Starting SmartLink modem daemon: "
		echo "/usr/sbin/slmodemd"
		modprobe $CHIPSET_MODEM_MODULE ; \
		modprobe $SLMODEMD_KERNEL_MODULE ; \
		slmodemd --country=$SLMODEMD_COUNTRY --alsa &
	fi
}

slmodemd_stop()
{
	echo "Shutting down SmartLink modem daemon"
	killall slmodemd
## My additions to remove the kernel modules that support the 1456VLQ4 Toshiba internal modem
	sleep 1
	modprobe -r $CHIPSET_MODEM_MODULE ; \
	modprobe -r $SLMODEMD_KERNEL_MODULE
}

slmodemd_restart()
{
	slmodemd_stop
	sleep 1
	slmodemd_start
}


# if [ "$SLMODEMD_DEVICE" ]; then readonly SLMODEMD_DEVICE; fi
## My additions to allow settings as environment variables
if [ "SLMODEMD_COUNTRY" ]; then readonly SLMODEMD_COUNTRY; fi
if [ "SLMODEMD_KERNEL_MODULE" ]; then readonly SLMODEMD_KERNEL_MODULE; fi
if [ "CHIPSET_MODEM_MODULE" ]; then readonly CHIPSET_MODEM_MODULE; fi

## Sanity checks
grep -q $SLMODEMD_KERNEL_MODULE.*o /lib/modules/$(uname -r)/modules.dep ||\
{ echo "rc.slmodemd: kernel module $SLMODEMD_KERNEL_MODULE.(k)o missing"; exit 1; }
grep -q $CHIPSET_MODEM_MODULE.*o /lib/modules/$(uname -r)/modules.dep ||\
{ echo "rc.slmodemd: kernel module $CHIPSET_MODEM_MODULE.(k)o missing"; exit 1; }

case "$1" in
	'start')
	slmodemd_start
	;;
	'stop')
	slmodemd_stop
	;;
	'restart')
	slmodemd_restart
	;;
	*)
	echo "usage $0 start|stop|restart"
esac

Last edited by allend; 11-16-2008 at 06:36 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ALSA driver problem: Intel HDA card driver Digital Watches Linux - Hardware 8 04-11-2008 07:02 AM
NForce sound card found & snd-hda-intel driver loaded, no sound Rod Butcher Linux - Hardware 8 03-05-2008 07:30 AM
HDA intel Sound Card Sounds problems with intel sound card on Ubuntu zengingok Linux - Hardware 9 08-17-2007 10:52 AM
snd-hda-intel - no sound Laen Slackware 3 11-12-2006 01:07 PM
no sound; configuring hda-intel sound card in suse 10.1 crashes X MamaWombat SUSE / openSUSE 1 05-30-2006 10:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:26 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration