All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hda/patch_si3054: new codec vendor IDs
@ 2006-09-25  8:01 Sasha Khapyorsky
  2006-09-25 11:29 ` Marvin Stodolsky
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sasha Khapyorsky @ 2006-09-25  8:01 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Marvin Stodolsky, alsa-devel

Hi Takashi,

There are new IDs for Si3054 based HDA modems.

Sasha

---
There are additional IDs for Si3054 codec based HDA modems. Most of
them were discovered on discuss@linmodems.org list - Thanks to MarvS
and all linmodems.org folks.

Signed-off-by: Sasha Khapyorsky <sashak@alsa-project.org>

---
diff -r 63e58b008259 pci/hda/patch_si3054.c
--- a/pci/hda/patch_si3054.c	Mon Sep 04 13:03:51 2006 +0200
+++ b/pci/hda/patch_si3054.c	Sun Sep 24 03:20:25 2006 +0300
@@ -297,7 +297,12 @@ struct hda_codec_preset snd_hda_preset_s
 struct hda_codec_preset snd_hda_preset_si3054[] = {
  	{ .id = 0x163c3055, .name = "Si3054", .patch = patch_si3054 },
  	{ .id = 0x163c3155, .name = "Si3054", .patch = patch_si3054 },
+ 	{ .id = 0x11c11040, .name = "Si3054", .patch = patch_si3054 },
  	{ .id = 0x11c13026, .name = "Si3054", .patch = patch_si3054 },
+ 	{ .id = 0x11c13055, .name = "Si3054", .patch = patch_si3054 },
+ 	{ .id = 0x11c13155, .name = "Si3054", .patch = patch_si3054 },
+ 	{ .id = 0x10573055, .name = "Si3054", .patch = patch_si3054 },
+ 	{ .id = 0x10573155, .name = "Si3054", .patch = patch_si3054 },
 	{}
 };
 

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

* Re: [PATCH] hda/patch_si3054: new codec vendor IDs
  2006-09-25  8:01 [PATCH] hda/patch_si3054: new codec vendor IDs Sasha Khapyorsky
@ 2006-09-25 11:29 ` Marvin Stodolsky
  2006-09-26 13:40 ` Takashi Iwai
  2006-11-20 13:19 ` Marvin Stodolsky
  2 siblings, 0 replies; 4+ messages in thread
From: Marvin Stodolsky @ 2006-09-25 11:29 UTC (permalink / raw)
  To: Takashi Iwai, alsa-devel

Several  tarballs of /proc/asound have been accumulated,
corresponding to the new softmodems on HDA card cases encountered
through the List discuss@linmodems.org.  When encountering  a novel
HDA modem Vendor ID,  my scanModem script does:
    cp -a /proc/asound  $VendorID
    tar cfz $VendorID.tgz  $VendorID/
   echo "  Please send $VendorID.tgz to marvin.stodolsky@gamil.com"
where Vendor ID  is novel such as in:

>  PCI ID     Subsystem  Name
>  ---------- ---------  -----------------
>  10de:026c  107b:0317  0403: nVidia Corporation MCP51 High Definition Audio
>
>     /proc/asound/card0/codec#1
> -------------------------------
> Codec: Generic 11c1 ID 1040
> Address: 1
> Vendor Id: 0x11c11040
> Subsystem Id: 0x11c10001
> Revision Id: 0x100200
> -------------------------------

Should it be usefull to any of you to have these cases, please left me know.
The internal archive within
http://linmodems.technion.ac.il/packages/scanModem.gz
currently has the HDA modem cases below.

MarvS
-----------
      cat<<END>/dev/null
In the Archive below, the first field is the modem chipset
manufacturer  ID for HDA cards
OR the mc97 codec for cards with a AC'97/MC97 compatible register,
orginally read from the 0:7c and 0:7e fields and then translated.
           Following is the SubSystem PCI IDs of cards with that codec,
which is grep filtered on. This field accepts comments diverse.
The HDA cards are first listed. In newer cases there are:   $SUBSYS_$VendorID
END

      if test "$PCIDEV" = 8086:2668 ; then
      HDA=1
# Class 0403: 8086:2668   Class 0403: Intel Corporation
82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller
     cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
14f1  1025:008f 1028:01c9 1028:01cb
11c1  1179:ff00 1025:0070
163c  1558:0900
END
      elif test "$PCIDEV" = 8086:27d8 ; then
      HDA=1
        # Audio device: Intel Corporation 82801G (ICH7 Family) High
Definition Audio Controller
     cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
14f1  1028:01cd_14f12bfa 1043:81d8  17aa:2010 1028:01bd 1025:0090
11c1  1179:ff00_11c13026 ; 103c:30aa
1057  1558:5405_10573055
END
      elif test "$PCIDEV" = 1002:437b ; then
        HDA=1
      # Audio device: ATI Technologies Inc SB450 HDA Audio (rev 01)
      cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
11c1  1462:0369 , 10cf:1326
END
      elif test "$PCIDEV" = 10de:026c ; then
        HDA=1
      # nVidia Corporation MCP51 High Definition Audio
      cat<<END | grep $SUBSYS | cut -d' ' -f1 >$TMPM.2
14f1   103c:30b7
11c1   107b:0317_11c11040 ;
END




On 9/25/06, Sasha Khapyorsky <sashakh@gmail.com> wrote:
> Hi Takashi,
>
> There are new IDs for Si3054 based HDA modems.
>
> Sasha
>
> ---
> There are additional IDs for Si3054 codec based HDA modems. Most of
> them were discovered on discuss@linmodems.org list - Thanks to MarvS
> and all linmodems.org folks.
>
> Signed-off-by: Sasha Khapyorsky <sashak@alsa-project.org>
>
> ---
> diff -r 63e58b008259 pci/hda/patch_si3054.c
> --- a/pci/hda/patch_si3054.c    Mon Sep 04 13:03:51 2006 +0200
> +++ b/pci/hda/patch_si3054.c    Sun Sep 24 03:20:25 2006 +0300
> @@ -297,7 +297,12 @@ struct hda_codec_preset snd_hda_preset_s
>  struct hda_codec_preset snd_hda_preset_si3054[] = {
>         { .id = 0x163c3055, .name = "Si3054", .patch = patch_si3054 },
>         { .id = 0x163c3155, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c11040, .name = "Si3054", .patch = patch_si3054 },
>         { .id = 0x11c13026, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c13055, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c13155, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x10573055, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x10573155, .name = "Si3054", .patch = patch_si3054 },
>         {}
>  };
>
>

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

* Re: [PATCH] hda/patch_si3054: new codec vendor IDs
  2006-09-25  8:01 [PATCH] hda/patch_si3054: new codec vendor IDs Sasha Khapyorsky
  2006-09-25 11:29 ` Marvin Stodolsky
@ 2006-09-26 13:40 ` Takashi Iwai
  2006-11-20 13:19 ` Marvin Stodolsky
  2 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2006-09-26 13:40 UTC (permalink / raw)
  To: Sasha Khapyorsky; +Cc: alsa-devel, Marvin Stodolsky

At Mon, 25 Sep 2006 11:01:01 +0300,
Sasha Khapyorsky wrote:
> 
> Hi Takashi,
> 
> There are new IDs for Si3054 based HDA modems.
> 
> Sasha
> 
> ---
> There are additional IDs for Si3054 codec based HDA modems. Most of
> them were discovered on discuss@linmodems.org list - Thanks to MarvS
> and all linmodems.org folks.
> 
> Signed-off-by: Sasha Khapyorsky <sashak@alsa-project.org>

Thanks, applied to ALSA HG tree.  It had also another entry for
Motorola one, so I merged manually.


Takashi

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

* Re: [PATCH] hda/patch_si3054: new codec vendor IDs
  2006-09-25  8:01 [PATCH] hda/patch_si3054: new codec vendor IDs Sasha Khapyorsky
  2006-09-25 11:29 ` Marvin Stodolsky
  2006-09-26 13:40 ` Takashi Iwai
@ 2006-11-20 13:19 ` Marvin Stodolsky
  2 siblings, 0 replies; 4+ messages in thread
From: Marvin Stodolsky @ 2006-11-20 13:19 UTC (permalink / raw)
  To: Sasha Khapyorsky, Eduard Bloch; +Cc: Takashi Iwai, Jacques Goldberg, alsa-devel

Eduard,

 Formally, the Smartlink modem rights have been sold to Conexant.

Note Sasha's new email address. He can most responsively respond on
slmodemd legal  issues.  Jacque is knowledgeable about the situation

From traffic on Discuss@linmodems .org,  only a small fraction of the
modems in new PCs use the slamr.ko driver with a closed source
omponent.  Most new soft modems are supported by a combination of an
ALSA modem driver and slmodemd.
Takashi and Sasha contribute to the ALSA driver code.

Among the ALSA supported modems there is an increasing proportion of
Systems with High Definition Audio cards with embedded modems.  From
this trend, my guess is that most new cheap modems will be of this
type.

Please feel free to incorporate any of the (evolving) diagnostics from
my scanModem into your sl-modem-daemon package.

MarvS

On 11/20/06, Eduard Bloch <edi@gmx.de> wrote:
> Hello Marvin Stodolsky,
>
> Please forward the mail to those whom it may concern.
>
> I considered finally merging with 2.9.11 in the Debian packages (and so
> Ubuntu, etc.). But there are problems, simply essential questions:
>
>  - who is the current maintainer? There is no recent name change in the
>    README. It is obviosly no longer smlink.com, but who is it then? Who
>    creates the new releases, who is the contact person?
>
>  - the legal status is still unknown. I heard rumors about "the last lab
>    version" taken by SashaK to make an own free release. But... I cannot
>    rely on rumors. I need simple facts, an official maintainer of the
>    package (even the forked one) who can guarantee the legal state.
>
> A detailed README.MAINTAINER with autor/maintainer names, history and
> legality state explanation or so should be sufficient.
>
> Eduard.
> --
> Was passiert, wenn M$ das Y2K-Problem nicht lösen kann?
> Die neue Version wird Windows 1900 heißen.
>


On 9/25/06, Sasha Khapyorsky <sashakh@gmail.com> wrote:
> Hi Takashi,
>
> There are new IDs for Si3054 based HDA modems.
>
> Sasha
>
> ---
> There are additional IDs for Si3054 codec based HDA modems. Most of
> them were discovered on discuss@linmodems.org list - Thanks to MarvS
> and all linmodems.org folks.
>
> Signed-off-by: Sasha Khapyorsky <sashak@alsa-project.org>
>
> ---
> diff -r 63e58b008259 pci/hda/patch_si3054.c
> --- a/pci/hda/patch_si3054.c    Mon Sep 04 13:03:51 2006 +0200
> +++ b/pci/hda/patch_si3054.c    Sun Sep 24 03:20:25 2006 +0300
> @@ -297,7 +297,12 @@ struct hda_codec_preset snd_hda_preset_s
>  struct hda_codec_preset snd_hda_preset_si3054[] = {
>         { .id = 0x163c3055, .name = "Si3054", .patch = patch_si3054 },
>         { .id = 0x163c3155, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c11040, .name = "Si3054", .patch = patch_si3054 },
>         { .id = 0x11c13026, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c13055, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x11c13155, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x10573055, .name = "Si3054", .patch = patch_si3054 },
> +       { .id = 0x10573155, .name = "Si3054", .patch = patch_si3054 },
>         {}
>  };
>
>
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel

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

end of thread, other threads:[~2006-11-20 13:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-25  8:01 [PATCH] hda/patch_si3054: new codec vendor IDs Sasha Khapyorsky
2006-09-25 11:29 ` Marvin Stodolsky
2006-09-26 13:40 ` Takashi Iwai
2006-11-20 13:19 ` Marvin Stodolsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.