ALT Linux hardware support
 help / color / mirror / Atom feed
* [Hardware] Звук на Laptop Amilo v2040
@ 2006-02-13  9:37 Dmytro Kovalskyy
  2006-02-13 10:02 ` Sergey Vlasov
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Dmytro Kovalskyy @ 2006-02-13  9:37 UTC (permalink / raw)
  To: hardware

Привет,

Есть такая машинка на которой стоит Intel High Definition Audio.
Установил компакт 3.0, и поднялись драйвера звуковой карты нормально 

snd_hda_intel          16768  1
snd_hda_codec          68736  1 snd_hda_intel
snd_pcm_oss            51744  0
snd_seq_dummy           3972  0
snd_seq_oss            33024  0
snd_seq_midi_event      7040  1 snd_seq_oss
snd_seq                49296  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device          8716  3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_mixer_oss          18048  1 snd_pcm_oss
snd_pcm                85384  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_timer              23812  2 snd_seq,snd_pcm
snd                    53636  12 
snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_seq_dummy,snd_seq_oss,snd_seq,snd_seq_device,snd_mixer_oss,snd_pcm,snd_timer
soundcore               9184  1 snd
snd_page_alloc          9860  2 snd_hda_intel,snd_pcm

...однако звука в колонках таки нет.

После копания в инете
нашел (http://student.fiit.stuba.sk/~kotuc04/suse/), что это лечится путем 
наложения патча

--- sound/pci/hda/hda_codec.c.old 2005-11-17 07:08:51.000000000 +0100
+++ sound/pci/hda/hda_codec.c 2005-11-17 07:21:05.000000000 +0100
@@ -1704,15 +1704,6 @@
  if (mout->hp_nid)
   /* headphone out will just decode front left/right (stereo) */
   snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, 0, format);
- /* surrounds */
- for (i = 1; i < mout->num_dacs; i++) {
-  if (chs >= (i + 1) * 2) /* independent out */
-   snd_hda_codec_setup_stream(codec, nids[i], stream_tag, i * 2,
-         format);
-  else /* copy front */
-   snd_hda_codec_setup_stream(codec, nids[i], stream_tag, 0,
-         format);
- }
  return 0;
 }
 
@@ -1724,10 +1715,9 @@
  hda_nid_t *nids = mout->dac_nids;
  int i;
 
- for (i = 0; i < mout->num_dacs; i++)
-  snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
  if (mout->hp_nid)
   snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
+ snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], 0, 0, 0);
  down(&codec->spdif_mutex);
  if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
   snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);

правда для версии алсы 1.0.10.

У меня вопрос к мейнтенерам модулей ядра. А можно ли надеяться что выпустят 
пропатченную версию алсового модуля для Компакта 3.0?

Заранее спасибо,

Дима



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Hardware] Звук на Laptop Amilo v2040
  2006-02-13  9:37 [Hardware] Звук на Laptop Amilo v2040 Dmytro Kovalskyy
@ 2006-02-13 10:02 ` Sergey Vlasov
  2006-02-13 11:38   ` Dmytro Kovalskyy
  2006-02-14  9:00 ` [Hardware] " Dmytro Kovalskyy
  2006-02-15 15:40 ` И все таки звук есть!!! (was Re: [Hardware] Звук на Laptop Amilo v2040) Dmytro Kovalskyy
  2 siblings, 1 reply; 8+ messages in thread
From: Sergey Vlasov @ 2006-02-13 10:02 UTC (permalink / raw)
  To: hardware

[-- Attachment #1: Type: text/plain, Size: 1995 bytes --]

On Mon, Feb 13, 2006 at 11:37:12AM +0200, Dmytro Kovalskyy wrote:
> Есть такая машинка на которой стоит Intel High Definition Audio.
> Установил компакт 3.0, и поднялись драйвера звуковой карты нормально 
[skip]
> ...однако звука в колонках таки нет.
> 
> После копания в инете
> нашел (http://student.fiit.stuba.sk/~kotuc04/suse/), что это лечится путем 
> наложения патча
> 
> --- sound/pci/hda/hda_codec.c.old 2005-11-17 07:08:51.000000000 +0100
> +++ sound/pci/hda/hda_codec.c 2005-11-17 07:21:05.000000000 +0100
> @@ -1704,15 +1704,6 @@
>   if (mout->hp_nid)
>    /* headphone out will just decode front left/right (stereo) */
>    snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, 0, format);
> - /* surrounds */
> - for (i = 1; i < mout->num_dacs; i++) {
> -  if (chs >= (i + 1) * 2) /* independent out */
> -   snd_hda_codec_setup_stream(codec, nids[i], stream_tag, i * 2,
> -         format);
> -  else /* copy front */
> -   snd_hda_codec_setup_stream(codec, nids[i], stream_tag, 0,
> -         format);
> - }
>   return 0;
>  }
>  
> @@ -1724,10 +1715,9 @@
>   hda_nid_t *nids = mout->dac_nids;
>   int i;
>  
> - for (i = 0; i < mout->num_dacs; i++)
> -  snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
>   if (mout->hp_nid)
>    snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
> + snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], 0, 0, 0);
>   down(&codec->spdif_mutex);
>   if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
>    snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
> 
> правда для версии алсы 1.0.10.
> 
> У меня вопрос к мейнтенерам модулей ядра. А можно ли надеяться что выпустят 
> пропатченную версию алсового модуля для Компакта 3.0?

С таким патчем - нет (этот патч просто отключает поддержку
4/6/8-канального звука; почему после этого появляется звук на этом
ноутбуке - непонятно).  Нужно найти способ исправить эту проблему, не
ломая ничего другого.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Hardware] Звук на Laptop Amilo v2040
  2006-02-13 10:02 ` Sergey Vlasov
@ 2006-02-13 11:38   ` Dmytro Kovalskyy
  2006-02-13 12:39     ` [Hardware] " Anton Farygin
  0 siblings, 1 reply; 8+ messages in thread
From: Dmytro Kovalskyy @ 2006-02-13 11:38 UTC (permalink / raw)
  To: hardware

>
> С таким патчем - нет (этот патч просто отключает поддержку
> 4/6/8-канального звука; почему после этого появляется звук на этом
> ноутбуке - непонятно).  Нужно найти способ исправить эту проблему, не
> ломая ничего другого.
А чем я могу помочь стране, чтоб это произошло быстрее?

Дима
-- 
-----------------------------------------------------
Dmytro Kovalskyy, PhD                D.Kovalskyy@enamine.net
Molecular Modelling Group Leader     tel.: +38 044 537 32 18
Enamine ltd.                         fax : +38 044 537 32 53
23, Matrosova str.  
01103 Kiev, Ukraine

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Hardware] Re: Звук на Laptop Amilo v2040
  2006-02-13 11:38   ` Dmytro Kovalskyy
@ 2006-02-13 12:39     ` Anton Farygin
  2006-02-14 13:20       ` Michael Shigorin
  0 siblings, 1 reply; 8+ messages in thread
From: Anton Farygin @ 2006-02-13 12:39 UTC (permalink / raw)
  To: hardware

On Mon, 13 Feb 2006 13:38:05 +0200, Dmytro Kovalskyy wrote:

> А чем я могу помочь стране, чтоб это
> произошло быстрее?

Повесить багу в upstream ?

Rgds,
Rider



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Hardware] Звук на Laptop Amilo v2040
  2006-02-13  9:37 [Hardware] Звук на Laptop Amilo v2040 Dmytro Kovalskyy
  2006-02-13 10:02 ` Sergey Vlasov
@ 2006-02-14  9:00 ` Dmytro Kovalskyy
  2006-02-15 15:40 ` И все таки звук есть!!! (was Re: [Hardware] Звук на Laptop Amilo v2040) Dmytro Kovalskyy
  2 siblings, 0 replies; 8+ messages in thread
From: Dmytro Kovalskyy @ 2006-02-14  9:00 UTC (permalink / raw)
  To: hardware

А может быть проблема со звуком из-за следубщего.
На этом ноуте есть модем Motorola SM56, но его аж никак не видно в lspci.
Сейчас я внимательно посмотрел в винде на чем он висит и оказывается, что
"Размещение 65535 (Внутрення шина для High Definition Audio)"

может дело именно в модеме?
Если еще какие нибудь данные про этот модем нужны то я их могу вытянуть из 
Винды.


Меж прочим ктото значет о том что эти модемы можно запустить под линухом?

Дима

-- 
-----------------------------------------------------
Dmytro Kovalskyy, PhD                D.Kovalskyy@enamine.net
Molecular Modelling Group Leader     tel.: +38 044 537 32 18
Enamine ltd.                         fax : +38 044 537 32 53
23, Matrosova str.  
01103 Kiev, Ukraine

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Hardware] Re: Звук на Laptop Amilo v2040
  2006-02-13 12:39     ` [Hardware] " Anton Farygin
@ 2006-02-14 13:20       ` Michael Shigorin
  2006-02-14 13:41         ` Dmytro Kovalskyy
  0 siblings, 1 reply; 8+ messages in thread
From: Michael Shigorin @ 2006-02-14 13:20 UTC (permalink / raw)
  To: hardware

On Mon, Feb 13, 2006 at 03:39:53PM +0300, Anton Farygin wrote:
> On Mon, 13 Feb 2006 13:38:05 +0200, Dmytro Kovalskyy wrote:
> > А чем я могу помочь стране, чтоб это произошло быстрее?
> Повесить багу в upstream ?

Дим, давай сюда lspci и что ещё, если аккаунт некогда завести.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Hardware] Re: Звук на Laptop Amilo v2040
  2006-02-14 13:20       ` Michael Shigorin
@ 2006-02-14 13:41         ` Dmytro Kovalskyy
  0 siblings, 0 replies; 8+ messages in thread
From: Dmytro Kovalskyy @ 2006-02-14 13:41 UTC (permalink / raw)
  To: hardware

В сообщении от Вторник 14 Февраль 2006 15:20 Michael Shigorin написал(a):
> On Mon, Feb 13, 2006 at 03:39:53PM +0300, Anton Farygin wrote:
> > On Mon, 13 Feb 2006 13:38:05 +0200, Dmytro Kovalskyy wrote:
> > > А чем я могу помочь стране, чтоб это произошло быстрее?
> >
> > Повесить багу в upstream ?
>
> Дим, давай сюда lspci и что ещё, если аккаунт некогда завести.
реально некогда :0)


вывожу что есть


[dikov@dnote dikov]$ cat /proc/asound/cards
0 [Intel          ]: HDA-Intel - HDA Intel
                     HDA Intel at 0xb0000000 irq 16



[dikov@dnote dikov]$ lspci -vvx
0000:00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
        Subsystem: Wistron Corp.: Unknown device 4047
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort+ >SERR- <PERR-
        Latency: 0
        Capabilities: <available only to root>
00: 86 80 90 25 06 01 90 20 04 00 00 06 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 47 40
30: 00 00 00 00 e0 00 00 00 00 00 00 00 00 00 00 00
 
0000:00:02.0 VGA compatible controller: Intel Corporation Mobile 
915GM/GMS/910GML Express Graphics Controller (rev 04) (prog-if 00 [VGA])
        Subsystem: Wistron Corp.: Unknown device 2071
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at b0080000 (32-bit, non-prefetchable)
        Region 1: I/O ports at 1800 [size=8]
        Region 2: Memory at c0000000 (32-bit, prefetchable) [size=256M]
        Region 3: Memory at b0040000 (32-bit, non-prefetchable) [size=256K]
        Capabilities: <available only to root>
00: 86 80 92 25 07 00 90 00 04 00 00 03 00 00 80 00
10: 00 00 08 b0 01 18 00 00 08 00 00 c0 00 00 04 b0
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 71 20
30: 00 00 00 00 d0 00 00 00 00 00 00 00 0a 01 00 00
 
0000:00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML 
Express Graphics Controller (rev 04)
        Subsystem: Wistron Corp.: Unknown device 2071
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Region 0: Memory at 20000000 (32-bit, non-prefetchable) [disabled]
        Capabilities: <available only to root>
00: 86 80 92 27 00 00 90 00 04 00 80 03 00 00 80 00
10: 00 00 00 20 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 71 20
30: 00 00 00 00 d0 00 00 00 00 00 00 00 00 00 00 00
 
0000:00:1b.0 Class 0403: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
        Subsystem: Wistron Corp.: Unknown device 2017
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0, cache line size 08
        Interrupt: pin A routed to IRQ 16
        Region 0: Memory at b0000000 (64-bit, non-prefetchable)
        Capabilities: <available only to root>
00: 86 80 68 26 06 00 10 00 04 00 03 04 08 00 00 00
10: 04 00 00 b0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 17 20
30: 00 00 00 00 50 00 00 00 00 00 00 00 0a 01 00 00
 
0000:00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
PCI Express Port 1 (rev 04) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0, cache line size 08
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
        I/O behind bridge: 00002000-00002fff
        Memory behind bridge: b4000000-b7ffffff
        Prefetchable memory behind bridge: 00000000d0000000-00000000d3f00000
        Expansion ROM at 00002000 [disabled] [size=4K]
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
        Capabilities: <available only to root>
00: 86 80 60 26 07 00 10 00 04 00 04 06 08 00 81 00
10: 00 00 00 00 00 00 00 00 00 02 02 00 20 20 00 20
20: 00 b4 f0 b7 01 d0 f1 d3 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 04 00
 
0000:00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
        Subsystem: Wistron Corp.: Unknown device 10a5
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 23
        Region 4: I/O ports at 1820 [size=32]
00: 86 80 58 26 05 00 80 02 04 00 03 0c 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 21 18 00 00 00 00 00 00 00 00 00 00 c0 17 a5 10
30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 01 00 00
 
0000:00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
        Subsystem: Wistron Corp.: Unknown device 10a5
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin B routed to IRQ 17
        Region 4: I/O ports at 1840 [size=32]
00: 86 80 59 26 05 00 80 02 04 00 03 0c 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 41 18 00 00 00 00 00 00 00 00 00 00 c0 17 a5 10
30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 02 00 00
 
0000:00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
        Subsystem: Wistron Corp.: Unknown device 10a5
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin C routed to IRQ 18
        Region 4: I/O ports at 1860 [size=32]
00: 86 80 5a 26 05 00 80 02 04 00 03 0c 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 61 18 00 00 00 00 00 00 00 00 00 00 c0 17 a5 10
30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 03 00 00
 
0000:00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
        Subsystem: Wistron Corp.: Unknown device 10a5
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin D routed to IRQ 19
        Region 4: I/O ports at 1880 [size=32]
00: 86 80 5b 26 05 00 80 02 04 00 03 0c 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 81 18 00 00 00 00 00 00 00 00 00 00 c0 17 a5 10
30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 04 00 00
 
0000:00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
        Subsystem: Wistron Corp.: Unknown device 10a6
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 23
        Region 0: Memory at b0004000 (32-bit, non-prefetchable)
        Capabilities: <available only to root>
00: 86 80 5c 26 06 01 90 02 04 20 03 0c 00 00 00 00
10: 00 40 00 b0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 a6 10
30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 01 00 00
 
0000:00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) 
(prog-if 01 [Subtractive decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Bus: primary=00, secondary=06, subordinate=07, sec-latency=216
        I/O behind bridge: 00003000-00003fff
        Memory behind bridge: b8000000-b80fffff
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
        Capabilities: <available only to root>
00: 86 80 48 24 07 01 10 00 d4 01 04 06 00 00 01 00
10: 00 00 00 00 00 00 00 00 00 06 07 d8 30 30 80 22
20: 00 b8 00 b8 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 00 04 00
 
0000:00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface 
Bridge (rev 04)
        Subsystem: Wistron Corp.: Unknown device 4045
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
00: 86 80 41 26 07 00 00 02 04 00 01 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 45 40
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 
0000:00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 
Family) IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
        Subsystem: Wistron Corp.: Unknown device 4043
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        Region 0: I/O ports at <unassigned>
        Region 1: I/O ports at <unassigned>
        Region 2: I/O ports at <unassigned>
        Region 3: I/O ports at <unassigned>
        Region 4: I/O ports at 1810 [size=16]
00: 86 80 6f 26 05 00 88 02 04 8a 01 01 00 00 00 00
10: 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00
20: 11 18 00 00 00 00 00 00 00 00 00 00 c0 17 43 40
30: 00 00 00 00 00 00 00 00 00 00 00 00 ff 01 00 00
 
0000:00:1f.2 Class 0106: Intel Corporation 82801FBM (ICH6M) SATA Controller 
(rev 04) (prog-if 01)
        Subsystem: Wistron Corp.: Unknown device 4042
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin B routed to IRQ 17
        Region 0: I/O ports at 18c8
        Region 1: I/O ports at 18c0 [size=4]
        Region 2: I/O ports at 18a8 [size=8]
        Region 3: I/O ports at 180c [size=4]
        Region 4: I/O ports at 18b0 [size=16]
        Region 5: Memory at b0004400 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <available only to root>
00: 86 80 53 26 07 00 b0 02 04 01 06 01 00 00 00 00
10: c9 18 00 00 c1 18 00 00 a9 18 00 00 0d 18 00 00
20: b1 18 00 00 00 44 00 b0 00 00 00 00 c0 17 42 40
30: 00 00 00 00 70 00 00 00 00 00 00 00 0b 02 00 00
 
0000:00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
SMBus Controller (rev 04)
        Subsystem: Wistron Corp.: Unknown device 4041
        Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin B routed to IRQ 11
        Region 4: I/O ports at 18e0 [size=32]
00: 86 80 6a 26 01 01 80 02 04 00 05 0c 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: e1 18 00 00 00 00 00 00 00 00 00 00 c0 17 41 40
30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 02 00 00
 
0000:06:05.0 Network controller: Intel Corporation PRO/Wireless 2200BG (rev 
05)
        Subsystem: Intel Corporation: Unknown device 2702
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 32 (750ns min, 6000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 20
        Region 0: Memory at b8006000 (32-bit, non-prefetchable)
        Capabilities: <available only to root>
00: 86 80 20 42 16 01 90 02 05 00 80 02 08 20 00 00
10: 00 60 00 b8 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 86 80 02 27
30: 00 00 00 00 dc 00 00 00 00 00 00 00 0a 01 03 18
 
0000:06:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8169 
Gigabit Ethernet (rev 10)
        Subsystem: Wistron Corp.: Unknown device 1094
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 32 (8000ns min, 16000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 20
        Region 0: I/O ports at 3000
        Region 1: Memory at b8007000 (32-bit, non-prefetchable) [size=256]
        Capabilities: <available only to root>
00: ec 10 69 81 17 01 b0 02 10 00 00 02 08 20 00 00
10: 01 30 00 00 00 70 00 b8 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 94 10
30: 00 00 00 00 dc 00 00 00 00 00 00 00 0a 01 20 40
 
0000:06:09.0 CardBus bridge: Texas Instruments PCIxx21/x515 Cardbus Controller
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 168, cache line size 20
        Interrupt: pin A routed to IRQ 22
        Region 0: Memory at b8008000 (32-bit, non-prefetchable)
        Bus: primary=06, secondary=07, subordinate=0a, sec-latency=176
        Memory window 0: 20400000-207ff000 (prefetchable)
        Memory window 1: 20800000-20bff000
        I/O window 0: 00004000-000040ff
        I/O window 1: 00004400-000044ff
        BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
00: 4c 10 31 80 07 00 10 02 00 00 07 06 20 a8 82 00
10: 00 80 00 b8 a0 00 00 02 06 07 0a b0 00 00 40 20
20: 00 f0 7f 20 00 00 80 20 00 f0 bf 20 00 40 00 00
30: fc 40 00 00 00 44 00 00 fc 44 00 00 0a 01 c0 05
 
0000:06:09.2 FireWire (IEEE 1394): Texas Instruments OHCI Compliant IEEE 1394 
Host Controller (prog-if 10 [OHCI])
        Subsystem: Wistron Corp.: Unknown device 3007
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 32 (500ns min, 1000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 22
        Region 0: Memory at b8007800 (32-bit, non-prefetchable)
        Region 1: Memory at b8000000 (32-bit, non-prefetchable) [size=16K]
        Capabilities: <available only to root>
00: 4c 10 32 80 16 01 10 02 00 10 00 0c 08 20 80 00
10: 00 78 00 b8 00 00 00 b8 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 07 30
30: 00 00 00 00 44 00 00 00 00 00 00 00 0a 01 02 04
 
0000:06:09.3 Mass storage controller: Texas Instruments PCIxx21 Integrated 
FlashMedia Controller
        Subsystem: Wistron Corp.: Unknown device 3007
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 57 (1750ns min, 1000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at b8004000 (32-bit, non-prefetchable)
        Capabilities: <available only to root>
00: 4c 10 33 80 06 01 10 02 00 00 80 01 08 39 80 00
10: 00 40 00 b8 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 07 30
30: 00 00 00 00 44 00 00 00 00 00 00 00 0a 01 07 04
 
0000:06:09.4 Class 0805: Texas Instruments PCI6411, PCI6421, PCI6611, PCI6621, 
PCI7411, PCI7421, PCI7611, PCI7621 Secure Digital (SD) Controller
        Subsystem: Wistron Corp.: Unknown device 3007
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 57 (1750ns min, 1000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at b8009400 (32-bit, non-prefetchable)
        Region 1: Memory at b8009000 (32-bit, non-prefetchable) [size=256]
        Region 2: Memory at b8007400 (32-bit, non-prefetchable) [size=256]
        Capabilities: <available only to root>
00: 4c 10 34 80 06 01 10 02 00 00 05 08 08 39 80 00
10: 00 94 00 b8 00 90 00 b8 00 74 00 b8 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 c0 17 07 30
30: 00 00 00 00 80 00 00 00 00 00 00 00 0a 01 07 04




[dikov@dnote dikov]$ cat /proc/asound/card0/codec#0
Codec: Analog Devices AD1986A
Address: 0
Vendor Id: 0x11d41986
Subsystem Id: 0x0
Revision Id: 0x100400
Default PCM: rates 0x07f, bits 0x0e, types 0x1
Default Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
Default Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
Node 0x02 [Audio Output] wcaps 0x30311: Stereo Digital
  PCM: rates 0x060, bits 0x02, types 0x5
  Connection: 2
     0x01* 0x06
Node 0x03 [Audio Output] wcaps 0x445: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x94 0x94
Node 0x04 [Audio Output] wcaps 0x405: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x94 0x94
Node 0x05 [Audio Output] wcaps 0x405: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x94 0x94
Node 0x06 [Audio Input] wcaps 0x100511: Stereo
  PCM: rates 0x07f, bits 0x06, types 0x1
  Connection: 1
     0x12
Node 0x07 [Audio Mixer] wcaps 0x200101: Stereo
  Connection: 8
     0x03 0x09 0x13 0x14 0x15 0x16 0x17 0x18
Node 0x08 [Audio Mixer] wcaps 0x200108: Mono
  Connection: 1
     0x07
Node 0x09 [Audio Mixer] wcaps 0x200106: Mono Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals: 0x80
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals: 0x80
  Connection: 2
     0x04 0x05
Node 0x0a [Audio Selector] wcaps 0x300101: Stereo
  Connection: 3
     0x07* 0x04 0x05
Node 0x0b [Audio Selector] wcaps 0x300101: Stereo
  Connection: 2
     0x07* 0x04
Node 0x0c [Audio Selector] wcaps 0x300101: Stereo
  Connection: 2
     0x04* 0x07
Node 0x0d [Audio Selector] wcaps 0x300101: Stereo
  Connection: 2
     0x05* 0x08
Node 0x0e [Audio Selector] wcaps 0x300100: Mono
  Connection: 2
     0x08* 0x11
Node 0x0f [Audio Selector] wcaps 0x30010d: Stereo Amp-Out
  Amp-Out caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-Out vals: 0x00 0x00
  Connection: 8
     0x1f* 0x20 0x1d 0x1d 0x27 0x28 0x29 0x2a
Node 0x10 [Audio Selector] wcaps 0x300101: Stereo
  Connection: 3
     0x20* 0x1c 0x1f
Node 0x11 [Audio Selector] wcaps 0x300941: Stereo
  Connection: 2
     0x0f* 0x2b
Node 0x12 [Audio Selector] wcaps 0x30010d: Stereo Amp-Out
  Amp-Out caps: ofs=0x00, nsteps=0x0f, stepsize=0x05, mute=1
  Amp-Out vals: 0x80 0x80
  Connection: 6
     0x11* 0x22 0x10 0x07 0x08 0x23
Node 0x13 [Audio Selector] wcaps 0x300105: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x80 0x80
  Connection: 1
     0x11
Node 0x14 [Audio Selector] wcaps 0x300104: Mono Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x80
  Connection: 1
     0x23
Node 0x15 [Audio Selector] wcaps 0x300105: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x1c 0x1c
  Connection: 1
     0x22
Node 0x16 [Audio Selector] wcaps 0x300105: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x80 0x80
  Connection: 1
     0x21
Node 0x17 [Audio Selector] wcaps 0x300105: Stereo Amp-Out
  Amp-Out caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x80 0x80
  Connection: 1
     0x10
Node 0x18 [Audio Selector] wcaps 0x30010c: Mono Amp-Out
  Amp-Out caps: ofs=0x0f, nsteps=0x0f, stepsize=0x0b, mute=1
  Amp-Out vals: 0x89
  Connection: 2
     0x19* 0x24
Node 0x19 [Beep Generator Widget] wcaps 0x700200: Mono Digital
Node 0x1a [Pin Complex] wcaps 0x40018d: Stereo Amp-Out
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x17 0x17
  Pincap 0x081f: OUT HP
  Pin Default 0x01813030: [Jack] Line In at Ext Rear
    Conn = 1/8, Color = Blue
  Pin-ctls: 0xc0: OUT HP
  Connection: 1
     0x0a
Node 0x1b [Pin Complex] wcaps 0x40018d: Stereo Amp-Out
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x90 0x90
  Pincap 0x081001f: OUT HP
  Pin Default 0x01014011: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Green
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x0b
Node 0x1c [Pin Complex] wcaps 0x40018d: Stereo Amp-Out
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x90 0x90
  Pincap 0x0837: IN OUT
  Pin Default 0x9933f170: [Fixed] CD at Int ATAPI
    Conn = ATAPI, Color = Other
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x0c
Node 0x1d [Pin Complex] wcaps 0x40098d: Stereo Amp-Out
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x94 0x91
  Pincap 0x081737: IN OUT
  Pin Default 0x99f3f115: [Fixed] Other at Int ATAPI
    Conn = ATAPI, Color = Other
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x0d
Node 0x1e [Pin Complex] wcaps 0x40018c: Mono Amp-Out
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-Out vals: 0x00
  Pincap 0x0810: OUT
  Pin Default 0x901700f0: [Fixed] Speaker at Int N/A
    Conn = Analog, Color = Unknown
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x0e
Node 0x1f [Pin Complex] wcaps 0x400081: Stereo
  Pincap 0x081727: IN
  Pin Default 0x02a190f0: [Jack] Mic at Ext Front
    Conn = 1/8, Color = Pink
  Pin-ctls: 0x24: IN
Node 0x20 [Pin Complex] wcaps 0x400081: Stereo
  Pincap 0x081727: IN
  Pin Default 0x018130f0: [Jack] Line In at Ext Rear
    Conn = 1/8, Color = Blue
  Pin-ctls: 0x20: IN
Node 0x21 [Pin Complex] wcaps 0x400081: Stereo
  Pincap 0x0827: IN
  Pin Default 0x409700f0: [N/A] Aux at Ext N/A
    Conn = Analog, Color = Unknown
  Pin-ctls: 0x20: IN
Node 0x22 [Pin Complex] wcaps 0x400081: Stereo
  Pincap 0x0820: IN
  Pin Default 0x903300f0: [Fixed] CD at Int N/A
    Conn = ATAPI, Color = Unknown
  Pin-ctls: 0x20: IN
Node 0x23 [Pin Complex] wcaps 0x400080: Mono
  Pincap 0x0820: IN
  Pin Default 0x40b700f0: [N/A] Telephony at Ext N/A
    Conn = Analog, Color = Unknown
  Pin-ctls: 0x20: IN
Node 0x24 [Pin Complex] wcaps 0x400000: Mono
  Pincap 0x0820: IN
  Pin Default 0x50f700f0: [N/A] Other at Int N/A
    Conn = Analog, Color = Unknown
  Pin-ctls: 0x20: IN
Node 0x25 [Pin Complex] wcaps 0x400301: Stereo Digital
  Pincap 0x0810: OUT
  Pin Default 0x014500f0: [Jack] SPDIF Out at Ext Rear
    Conn = Optical, Color = Unknown
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x02
Node 0x26 [Power Widget] wcaps 0x500500: Mono
  Connection: 8
     0x07* 0x08 0x13 0x14 0x15 0x16 0x17 0x18
Node 0x27 [Audio Mixer] wcaps 0x200101: Stereo
  Connection: 2
     0x1f 0x1d
Node 0x28 [Audio Mixer] wcaps 0x200101: Stereo
  Connection: 2
     0x1f 0x20
Node 0x29 [Audio Mixer] wcaps 0x200101: Stereo
  Connection: 2
     0x1d 0x20
Node 0x2a [Audio Mixer] wcaps 0x200101: Stereo
  Connection: 3
     0x1f 0x1d 0x20
Node 0x2b [Audio Mixer] wcaps 0x200100: Mono
  Connection: 1
     0x0f



-- 
-----------------------------------------------------
Dmytro Kovalskyy, PhD                D.Kovalskyy@enamine.net
Molecular Modelling Group Leader     tel.: +38 044 537 32 18
Enamine ltd.                         fax : +38 044 537 32 53
23, Matrosova str.  
01103 Kiev, Ukraine


^ permalink raw reply	[flat|nested] 8+ messages in thread

* И все таки звук есть!!! (was Re: [Hardware] Звук на Laptop Amilo v2040)
  2006-02-13  9:37 [Hardware] Звук на Laptop Amilo v2040 Dmytro Kovalskyy
  2006-02-13 10:02 ` Sergey Vlasov
  2006-02-14  9:00 ` [Hardware] " Dmytro Kovalskyy
@ 2006-02-15 15:40 ` Dmytro Kovalskyy
  2 siblings, 0 replies; 8+ messages in thread
From: Dmytro Kovalskyy @ 2006-02-15 15:40 UTC (permalink / raw)
  To: hardware

на ядре 2.6.12-up и alsa1.0.9 --вывода звука на ноуте нет никакого
в алсамиксере есть много регуляторов 

на ядре 2.6.11-wks alsa1.0.8 -- вывод есть звука, но очень тихий 
в алсамиксере есть только один регулятор но им можно отрегулировать звук

на ядре 2.6.14-up и wks alsa1.0.10 -- изначално есть звук, но любая музыка 
вопспроизводлится с сильным фоновым писком, если же пробовать понизить 
громкость через алсамиксер то звук пропадает.

вот разница по драйверам и кодекам из lsmod


snd 2.6.11-wks26-up-alt4
snd_azx                15840  1
snd_hda_codec          44416  1 snd_azx
snd_pcm_oss            53280  0
snd_seq_oss            34304  0
snd_seq_midi_event      8192  1 snd_seq_oss
snd_seq                52752  4 snd_seq_oss,snd_seq_midi_event
snd_seq_device          8716  2 snd_seq_oss,snd_seq
snd_mixer_oss          18944  1 snd_pcm_oss
snd_pcm                91400  3 snd_azx,snd_hda_codec,snd_pcm_oss
snd_timer              25988  2 snd_seq,snd_pcm
snd                    55652  11 
snd_azx,snd_hda_codec,snd_pcm_oss,snd_seq_oss,snd_seq,snd_seq_device,snd_mixer_oss,snd_pcm,snd_timer
soundcore              10080  1 snd
snd_page_alloc          9860  2 snd_azx,snd_pcm


snd 2.6.12-std26-up-alt4
snd_hda_intel          16768  1
snd_hda_codec          68736  1 snd_hda_intel
snd_pcm_oss            51744  0
snd_seq_dummy           3972  0
snd_seq_oss            33024  0
snd_seq_midi_event      7040  1 snd_seq_oss
snd_seq                49296  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device          8716  3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_mixer_oss          18048  1 snd_pcm_oss
snd_pcm                85384  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_timer              23812  2 snd_seq,snd_pcm
snd                    53636  12 
snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_seq_dummy,snd_seq_oss,snd_seq,snd_seq_device,snd_mixer_oss,snd_pcm,snd_timer
soundcore               9184  1 snd
snd_page_alloc          9860  2 snd_hda_intel,snd_pcm



-- 
-----------------------------------------------------
Dmytro Kovalskyy, PhD                D.Kovalskyy@enamine.net
Molecular Modelling Group Leader     tel.: +38 044 537 32 18
Enamine ltd.                         fax : +38 044 537 32 53
23, Matrosova str.  
01103 Kiev, Ukraine

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-02-15 15:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-13  9:37 [Hardware] Звук на Laptop Amilo v2040 Dmytro Kovalskyy
2006-02-13 10:02 ` Sergey Vlasov
2006-02-13 11:38   ` Dmytro Kovalskyy
2006-02-13 12:39     ` [Hardware] " Anton Farygin
2006-02-14 13:20       ` Michael Shigorin
2006-02-14 13:41         ` Dmytro Kovalskyy
2006-02-14  9:00 ` [Hardware] " Dmytro Kovalskyy
2006-02-15 15:40 ` И все таки звук есть!!! (was Re: [Hardware] Звук на Laptop Amilo v2040) Dmytro Kovalskyy

ALT Linux hardware support

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/hardware/0 hardware/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 hardware hardware/ http://lore.altlinux.org/hardware \
		hardware@altlinux.ru hardware@lists.altlinux.org hardware@lists.altlinux.ru hardware@lists.altlinux.com hardware@altlinux.org
	public-inbox-index hardware

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.hardware


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git