You are not logged in.

#1 2011-11-19 16:48:35

Napalm
Member
Registered: 2011-11-19
Posts: 9

[Solved] No sound on Armada 1750

Hello everybody. After installing Arch on my old Armada 1750 laptop, I noticed that the legacy isa sound card was not automatically recognized and I can't use alsaconf (according to Alsa wiki). I know for sure that it works with snd-es18xx module and I tried inserting it into rc,conf and rebooting, but it didn't solve the issue either. What can I do now? Thanks for your help.

Last edited by Napalm (2011-12-04 22:08:26)

Offline

#2 2011-11-21 21:44:38

pfnorris
Member
Registered: 2011-03-09
Posts: 26

Re: [Solved] No sound on Armada 1750

Have you followed the instructions in the installation guide? That is have you installed alsa-utils, and then run alsamixer. If so what was the result? Does alsamixer recognise your card? Are the master and/or PCM channels muted (MM)? I would start there if possible.

Offline

#3 2011-11-21 23:51:32

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Thank you pfnorris for your reply smile After system installation, I installed alsa-utils then run alsamixer but it didn't recognize my sound card so no way to set PCM/Master volume sad I wrote that the correct module is snd-es18xx because it was ok on other distros (*buntu, Puppy,...). Dunno what to do now.

Offline

#4 2011-11-22 19:58:02

pfnorris
Member
Registered: 2011-03-09
Posts: 26

Re: [Solved] No sound on Armada 1750

You could try running lspci -vv in a terminal. This should indicate if the sound card is being detected at all (amongst many other things). If so it may give some clues that might be helpful. Feel free to post the output here so folks can see what is being detected.

Offline

#5 2011-11-22 20:54:00

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Thanks again for your help. I'm going to make a fresh install tomorrow so I can post a flawless lspci -vv output. Hope it can help us understand what's going on.

Offline

#6 2011-11-26 23:09:26

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Sorry for replying after so much time, had to fix some probs in real life. After making a fresh install I run lspci -vv on a terminal but no sound card was detected at all. What should I do next?

Offline

#7 2011-12-02 18:30:47

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Any help? Thanx

Offline

#8 2011-12-02 22:21:02

Mavirick
Member
Registered: 2011-12-01
Posts: 62

Re: [Solved] No sound on Armada 1750

Can you run:

cat /proc/asound/cards

Then post what you get from that?

Offline

#9 2011-12-03 00:34:39

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Thanks for replying. After a fresh install I ran the command you gave me but It unfortunately says that there is no /proc/asound/cards file or directory.

Last edited by Napalm (2011-12-03 00:35:26)

Offline

#10 2011-12-03 01:46:25

Mavirick
Member
Registered: 2011-12-01
Posts: 62

Re: [Solved] No sound on Armada 1750

Alright when you get a chance at a terminal do this and tell me what it returns:

aplay -l

Offline

#11 2011-12-03 08:33:37

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Command returns:

[root@armadillo1750 ~]# aplay -l
aplay: device_list:240: no soundcards found...

Offline

#12 2011-12-03 09:57:55

Mavirick
Member
Registered: 2011-12-01
Posts: 62

Re: [Solved] No sound on Armada 1750

While I know you said the snd-es18xx driver had worked prior, try using the snd-es1688 driver and see if that makes a difference.

Offline

#13 2011-12-03 12:06:32

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

I put snd-es1688 into /etc/rc.conf. Running aplay -l still returns no soundcard found error, but cat /proc/asound/cards now returns:

--- no soundcards ---

while with snd-es18xx It previously said that there was no /proc/asound/cards file or directory. Sounds like a lil' improvement.

Last edited by Napalm (2011-12-03 12:08:14)

Offline

#14 2011-12-03 19:04:04

Mavirick
Member
Registered: 2011-12-01
Posts: 62

Re: [Solved] No sound on Armada 1750

Okay you may need to try some different variables, looking at the kernel documentation for the snd-es18xx:

    Module for ESS AudioDrive ES-18xx sound cards.

    isapnp	- ISA PnP detection - 0 = disable, 1 = enable (default)

    with isapnp=0, the following options are available:

    port	- port # for ES-18xx chip (0x220,0x240,0x260)
    mpu_port	- port # for MPU-401 port (0x300,0x310,0x320,0x330), -1 = disable (default)
    fm_port	- port # for FM (optional, not used)
    irq		- IRQ # for ES-18xx chip (5,7,9,10)
    dma1	- first DMA # for ES-18xx chip (0,1,3)
    dma2	- first DMA # for ES-18xx chip (0,1,3)

You then need to modify the modprobe.d

options snd-es18xx isapnp=0 port=0x220 irq=9

You might need to vary the port and irq until you get working sound.

Offline

#15 2011-12-04 21:06:30

Napalm
Member
Registered: 2011-11-19
Posts: 9

Re: [Solved] No sound on Armada 1750

Thank you Mav for your precious help. Adding

options snd-es18xx isapnp=0 port=0x220 irq=5 dma1=1 dma2=1

to /etc/modprobe.d/modprobe.conf and snd-es18xx into the modules section in /etc/rc.conf solved the issue.
Thanks again

Last edited by Napalm (2011-12-04 22:07:49)

Offline

#16 2011-12-04 21:09:38

Mavirick
Member
Registered: 2011-12-01
Posts: 62

Re: [Solved] No sound on Armada 1750

Glad I was able to help, in order to mark it closed you just need to go back to your first post and edit the title with [Solved] in front of it.

Offline

Board footer

Powered by FluxBB