LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 06-29-2004, 11:55 PM   #1
kms_md
LQ Newbie
 
Registered: Nov 2003
Posts: 2

Rep: Reputation: 0
Fedora 2/Thinkpad 600e/Sound


hello all.

i know many of you have installed sound on this type of laptop. i have searched throroughly through this board and others looking for solutions. i still cannot get sound to work on this laptop.

first, i have reviewed the dma/irq/port settings using ps2.exe and i have turned pcibuspower to off as well. quickboot has been turned off in BIOS.

the cs4232 drivers from ALSA have been installed according to the directions on the alsa-project. org web site. after completing the installation, i get the following response to modprobe snd-cs4232:
FATAL: Error inserting snd_cs4232 (/lib/modules/2.6.5-1.358/kernel/sound/isa/cs423x/snd-cs4232.ko): No such device

alsaconf can see the card when it searches for legacy cards, but cannot probe the card and subsequently quits.

lspci shows:
00:00.0 Host bridge: Intel Corp. 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corp. 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
00:02.0 CardBus bridge: Texas Instruments PCI1251A
00:02.1 CardBus bridge: Texas Instruments PCI1251A
00:06.0 Multimedia audio controller: Cirrus Logic CS 4610/11 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
00:07.0 Bridge: Intel Corp. 82371AB/EB/MB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corp. 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corp. 82371AB/EB/MB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corp. 82371AB/EB/MB PIIX4 ACPI (rev 02)
01:00.0 VGA compatible controller: Neomagic Corporation NM2200 [MagicGraph 256AV] (rev 20)

modinfo soundcore shows:
description: Core sound module
author: Alan Cox
license: GPL
alias: char-major-14-*
vermagic: 2.6.5-1.358 686 REGPARM 4KSTACKS gcc-3.3
depends:


modinfo snd-cs4232 shows:
author: Jaroslav Kysela <perex@suse.cz>
license: GPL
description: Cirrus Logic CS4232
parm: index:Index value for CS4232 soundcard.
parm: id:ID string for CS4232 soundcard.
parm: enable:Enable CS4232 soundcard.
parm: isapnp:ISA PnP detection for specified soundcard.
parm: port:Port # for CS4232 driver.
parm: cport:Control port # for CS4232 driver.
parm: mpu_port:MPU-401 port # for CS4232 driver.
parm: fm_port:FM port # for CS4232 driver.
parm: sb_port:SB port # for CS4232 driver (optional).
parm: irq:IRQ # for CS4232 driver.
parm: mpu_irq:MPU-401 IRQ # for CS4232 driver.
parm: dma1MA1 # for CS4232 driver.
parm: dma2MA2 # for CS4232 driver.
vermagic: 2.6.5-1.358 686 REGPARM 4KSTACKS gcc-3.3
depends: snd-cs4231-lib,snd-opl3-lib,snd,snd-mpu401-uart,snd
alias: pnp:cCSC0d32dCSC0000dCSC0010dPNPb006*
alias: pnp:cCSC1a32dCSC0000dCSC0010dCSC0003*
alias: pnp:cCSC4232dCSC0000dCSC0002dCSC0003*
alias: pnp:cCSC4236dCSC0000dCSC0010dCSC0003*
alias: pnp:cCSC7532dCSC0000dCSC0010dCSCb006*
alias: pnp:cCSC7632dCSC0000dCSC0010dPNPb006*
alias: pnp:cCSCf032dCSC0000dCSC0010dCSC0003*


dmesg shows:
<edit>
CS4232 soundcard not found or device busy
CS4232 soundcard not found or device busy
CS4232 soundcard not found or device busy
CS4232 soundcard not found or device busy

i have edited /etc/modprobe.conf with the following:

alias char-major-116 snd
alias char-major-14 soundcore
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
alias sound-card-0 snd-cs4232
alias sound-slot-0 snd-cs4232
options snd-cs4232 port=0x530 cport=0x538 isapnp=0 dma1=1 dma2=0 irq=5


where specifically have i gone wrong. i gave up on suse 9.0 a few months ago due to this problem. i know the sound card works fine under windows.

any assistance would be appreciated.

kms
 
Old 06-30-2004, 12:29 AM   #2
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
Use the snd-cs4236 driver instead. Edit your modprobe.conf and delete the lines you added for the soundcard. The latest alsaconf (from the alsa-utils package) detects the 600E correctly and will add the correct lines automatically, or if that fails this works for me:
Code:
alias /dev/mixer snd-mixer-oss
alias /dev/dsp snd-pcm-oss
alias /dev/midi snd-seq-oss

# --- BEGIN: Generated by ALSACONF, do not edit. ---
# --- ALSACONF verion 1.0.4 ---
options snd  device_mode=0666
alias snd-card-0 snd-cs4236
alias sound-slot-0 snd-cs4236
options snd-cs4236 port=0x530 cport=0x538 isapnp=0 dma1=1 dma2=0 irq=5
Restart the Alsa init script (/etc/init.d/alsasound restart will do it on most distros).


Håkan
 
Old 06-30-2004, 08:01 AM   #3
kms_md
LQ Newbie
 
Registered: Nov 2003
Posts: 2

Original Poster
Rep: Reputation: 0
i compiled the cs4236 driver and have the same results.

after compiling the driver, editing module.conf, i still get the following

modprobe snd-cs4236 port=0x530 cport=0x538 isapnp=0 dma1=1 dma2=0 irq=5
WARNING: Error inserting snd (/lib/modules/2.6.5-1.358/kernel/sound/acore/snd.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.5-1.358/kernel/sound/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.5-1.358/kernel/sound/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_cs4231_lib (/lib/modules/2.6.5-1.358/kernel/sound/isa/cs423x/snd-cs4231-lib.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.5-1.358/kernel/sound/acore/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_rawmidi (/lib/modules/2.6.5-1.358/kernel/sound/acore/snd-rawmidi.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_mpu401_uart (/lib/modules/2.6.5-1.358/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_cs4236_lib (/lib/modules/2.6.5-1.358/kernel/sound/isa/cs423x/snd-cs4236-lib.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_hwdep (/lib/modules/2.6.5-1.358/kernel/sound/acore/snd-hwdep.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_opl3_lib (/lib/modules/2.6.5-1.358/kernel/sound/drivers/opl3/snd-opl3-lib.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_cs4236 (/lib/modules/2.6.5-1.358/kernel/sound/isa/cs423x/snd-cs4236.ko): Unknown symbol in module, or unknown parameter (see dmesg)

alsaconf will not recognize as well with the cs4236 driver.

am i missing something?

kms
 
Old 07-01-2004, 04:15 AM   #4
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
What does the dmesg output have to say about your attempted insertion of the driver? And you seem to have compiled the driver against the source for a different kernel as you get a lot of symbols errors. This may stop the module from loading as well.


Håkan
 
Old 01-21-2005, 03:09 PM   #5
edgood1
Member
 
Registered: Jan 2005
Distribution: fedora, redhat, gentoo, suse
Posts: 30

Rep: Reputation: 15
Solution to snd_cs4236 not loading under Fedora Core

This is a common problem with a very easy fix.

Go into the bios (hold F1 during power on works for most 600 series thinkpads). There is an option called quick boot or something along that line.

DISABLE IT!

then select Initalize and enter.

Save the settings and exit the bios.

Voila.... cs-4236 should load.

The problem here lies in the Crystal Audio chipset. For some reason it does not properly initalize during a 'quick boot' for the linux module to load.



Ive seen this problem posted everywhere on the net. I'd like to see some replies to see if this fixes it.


--eddie
 
Old 01-21-2005, 06:11 PM   #6
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
FYI, using the Initialize feature in the BIOS only helped me when the computer froze up completely when I tried loading ALSA modules.

The error messages kms_md posted look more like mismatching module versions for the actual running kernel.


Håkan
 
Old 02-01-2005, 08:11 AM   #7
edgood1
Member
 
Registered: Jan 2005
Distribution: fedora, redhat, gentoo, suse
Posts: 30

Rep: Reputation: 15
This issue can also be seen on the Fedora Core bugzilla. I've recieved a lot of replies about the quickboot fix working for other thinkpad users.

https://bugzilla.redhat.com/bugzilla....cgi?id=144767
 
Old 03-10-2006, 01:47 PM   #8
staticblackz
LQ Newbie
 
Registered: Dec 2005
Posts: 2

Rep: Reputation: 0
600e fix for debian

The key is too disable the other sound modules
disable snd_cs46xx, cs46xx, and css4232
and then modprobe snd_cs4236 with the io and other options.
 
Old 03-10-2006, 06:25 PM   #9
lestoil
Member
 
Registered: Apr 2004
Location: new york
Distribution: win2k,ubuntu,sw13,arch,centos5.3
Posts: 815

Rep: Reputation: 31
check out http://linux-laptop.net/hosted/thinkpad600e-fc4.html for this installer's sucessful solution to sound problem. He had same problem with FC2/3.
Good luck
 
  


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
DISCUSSION: Sound on the Thinkpad 600E hw-tph LinuxAnswers Discussion 3 05-29-2009 04:18 AM
Sound on my IBM Thinkpad 600e using Fedora openglforums Linux - Laptop and Netbook 37 10-24-2006 02:56 PM
no sound with ibm thinkpad 600e pat travers Debian 14 10-18-2005 02:38 PM
no sound on thinkpad 600e qfesp2002 Linux - Laptop and Netbook 4 09-30-2005 11:22 AM
Sound on IBM ThinkPad 600E firejdl Linux - Hardware 1 06-19-2003 11:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 04:40 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