public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
@ 2004-09-09 11:47 Luke Kenneth Casson Leighton
  2004-09-09 13:25 ` Ian Campbell
                   ` (2 more replies)
  0 siblings, 3 replies; 31+ messages in thread
From: Luke Kenneth Casson Leighton @ 2004-09-09 11:47 UTC (permalink / raw)
  To: linux-kernel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 1101 bytes --]

dear linux kernel people,

i was staggered to find that swansmart (smlink.com) have a GPL
driver for their smart usb 56k modem.

they also do a pci version: their download supports both (usb+pci)

they also provide an AC97 ALSA driver (patch is against 2.6.0)

this PCI ALSA driver is based on the i8x0 / MX 440 modem driver,
by Jaroslav Kysela <perex@suse.cz>.

all their code is GPL.  this is very cool.


it is available here:

	http://www.smlink.com/main/down/slmodem-2.9.9.tar.gz

i trust that someone will download, check it, and if
appropriate, incorporate it into the mainstream linux kernel.

the swansmart usb 56k modem is dirt cheap (it was available in
the uk six months ago for about £9), and is extremely popular
in australia and the far east.

l.

-- 
--
Truth, honesty and respect are rare commodities that all spring from
the same well: Love.  If you love yourself and everyone and everything
around you, funnily and coincidentally enough, life gets a lot better.
--
<a href="http://lkcl.net">      lkcl.net      </a> <br />
<a href="mailto:lkcl@lkcl.net"> lkcl@lkcl.net </a> <br />


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-09 11:47 Luke Kenneth Casson Leighton
@ 2004-09-09 13:25 ` Ian Campbell
  2004-09-09 13:46 ` Erik Mouw
  2004-09-09 13:59 ` Theodore Ts'o
  2 siblings, 0 replies; 31+ messages in thread
From: Ian Campbell @ 2004-09-09 13:25 UTC (permalink / raw)
  To: Linux Kernel Mailing List

On Thu, 2004-09-09 at 12:47, Luke Kenneth Casson Leighton wrote:

> i trust that someone will download, check it, and if
> appropriate, incorporate it into the mainstream linux kernel.

The ALSA bit is already in the kernel at sound/pci/intel8x0m.c, I don't
know when it was added though. Not sure of the status of the USB bit,
but I think it is normally up to the author to submit something rather
than some 3rd party...

Unfortunately the ALSA driver doesn't work for me, I just get NO
DIALTONE and the following in the kernel logs:

        codec_semaphore: semaphore is not ready [0x1][0x300300]
        codec_write 1: semaphore is not ready for register 0x54
        
I only tried it out last night, and I don't really need the modem in my
laptop much (it never really travels much further than the sofa :) so I
haven't really investigated much.

The laptop is a VAIO from several years ago. lspci shows the modem as:
0000:00:1f.6 Modem: Intel Corp. Intel 537 [82801BA/BAM AC'97 Modem] (rev 03)

Ian.
-- 
Ian Campbell
Current Noise: Dream Theater - About to Crash

Q:	Why did the lone ranger kill Tonto?
A:	He found out what "kimosabe" really means.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-09 11:47 Luke Kenneth Casson Leighton
  2004-09-09 13:25 ` Ian Campbell
@ 2004-09-09 13:46 ` Erik Mouw
  2004-09-09 14:46   ` Luke Kenneth Casson Leighton
  2004-09-09 13:59 ` Theodore Ts'o
  2 siblings, 1 reply; 31+ messages in thread
From: Erik Mouw @ 2004-09-09 13:46 UTC (permalink / raw)
  To: Luke Kenneth Casson Leighton; +Cc: linux-kernel

On Thu, Sep 09, 2004 at 12:47:47PM +0100, Luke Kenneth Casson Leighton wrote:
> i was staggered to find that swansmart (smlink.com) have a GPL
> driver for their smart usb 56k modem.
> 
> they also do a pci version: their download supports both (usb+pci)
> 
> they also provide an AC97 ALSA driver (patch is against 2.6.0)
> 
> this PCI ALSA driver is based on the i8x0 / MX 440 modem driver,
> by Jaroslav Kysela <perex@suse.cz>.
> 
> all their code is GPL.  this is very cool.

Most of their code is not GPL'ed. It does have a COPYING file, but that
looks like a BSD license to me. The only (implicitly) GPL'ed part is
the ALSA patch.

> it is available here:
> 
> 	http://www.smlink.com/main/down/slmodem-2.9.9.tar.gz
> 
> i trust that someone will download, check it, and if
> appropriate, incorporate it into the mainstream linux kernel.

It's not a GPL driver, the kernel part contains a binary object file
(drivers/amrlibs.o) so I don't see how it can be included in the main
kernel tree. OTOH, at first glance only the PCI driver needs that
binary blob, the USB driver doesn't.


Erik

-- 
+-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 --
| Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-09 11:47 Luke Kenneth Casson Leighton
  2004-09-09 13:25 ` Ian Campbell
  2004-09-09 13:46 ` Erik Mouw
@ 2004-09-09 13:59 ` Theodore Ts'o
  2 siblings, 0 replies; 31+ messages in thread
From: Theodore Ts'o @ 2004-09-09 13:59 UTC (permalink / raw)
  To: Luke Kenneth Casson Leighton; +Cc: linux-kernel

On Thu, Sep 09, 2004 at 12:47:47PM +0100, Luke Kenneth Casson Leighton wrote:
> dear linux kernel people,
> 
> i was staggered to find that swansmart (smlink.com) have a GPL
> driver for their smart usb 56k modem.
> 
> i trust that someone will download, check it, and if
> appropriate, incorporate it into the mainstream linux kernel.

It's mostly GPL'ed, but there are binary-only objects both in the
user-mode daemon (modem/dsplibs.o) and in the kernel driver
(drivers/amrlibs.o). 

The good news is that there a completely GPL'ed, source-complete
driver already in the 2.6 kernel, sound/pci/intel8x0m.c, which will
work with the user-mode daemon found in the smlink.com distribution.
This driver doesn't have all of the functionality of slamr driver
(which requires the propietary, binary-only object file) --- most
notably, ATM1 doesn't work when using the completely open-source
intl8x0m driver.  However, it does work just fine, and so as long as
you don't mind using the propietary object file in user-space, it's a
great solution.  I've been using the smlink daemon with both the
open-source and partial-propietary driver, and both work just fine on
my T40 laptop.

						- Ted

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
@ 2004-09-09 14:04 tvrtko.ursulin
  2004-09-09 15:47 ` Luke Kenneth Casson Leighton
  0 siblings, 1 reply; 31+ messages in thread
From: tvrtko.ursulin @ 2004-09-09 14:04 UTC (permalink / raw)
  To: Erik Mouw; +Cc: linux-kernel, linux-kernel-owner, Luke Kenneth Casson Leighton

>It's not a GPL driver, the kernel part contains a binary object file
>(drivers/amrlibs.o) so I don't see how it can be included in the main
>kernel tree. OTOH, at first glance only the PCI driver needs that
>binary blob, the USB driver doesn't.

Droping in. :)

Kernel part is not required, slmodemd works with the snd-intel8x0m Alsa 
driver. For me at least, and for the PCI version.


-- 
Tvrtko August Ursulin
Software Engineer, Sophos

Tel: 01235 559933
Web: www.sophos.com
Sophos - protecting businesses against viruses and spam


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-09 13:46 ` Erik Mouw
@ 2004-09-09 14:46   ` Luke Kenneth Casson Leighton
  0 siblings, 0 replies; 31+ messages in thread
From: Luke Kenneth Casson Leighton @ 2004-09-09 14:46 UTC (permalink / raw)
  To: Erik Mouw; +Cc: linux-kernel

On Thu, Sep 09, 2004 at 03:46:14PM +0200, Erik Mouw wrote:

> > all their code is GPL.  this is very cool.
> 
> Most of their code is not GPL'ed. It does have a COPYING file, but that
> looks like a BSD license to me. The only (implicitly) GPL'ed part is
> the ALSA patch.
 
 well, better than nothing.

> > it is available here:
> > 
> > 	http://www.smlink.com/main/down/slmodem-2.9.9.tar.gz
> > 
> > i trust that someone will download, check it, and if
> > appropriate, incorporate it into the mainstream linux kernel.
> 
> It's not a GPL driver, the kernel part contains a binary object file
> (drivers/amrlibs.o) so I don't see how it can be included in the main
> kernel tree. 

 DRAT.

> OTOH, at first glance only the PCI driver needs that
> binary blob, the USB driver doesn't.

 ah ha!

 i sent them a message, see if they react well to licensing the
 rest as GPL.

 l.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-09 14:04 tvrtko.ursulin
@ 2004-09-09 15:47 ` Luke Kenneth Casson Leighton
  0 siblings, 0 replies; 31+ messages in thread
From: Luke Kenneth Casson Leighton @ 2004-09-09 15:47 UTC (permalink / raw)
  To: tvrtko.ursulin; +Cc: Erik Mouw, linux-kernel, linux-kernel-owner

On Thu, Sep 09, 2004 at 03:04:58PM +0100, tvrtko.ursulin@sophos.com wrote:
> >It's not a GPL driver, the kernel part contains a binary object file
> >(drivers/amrlibs.o) so I don't see how it can be included in the main
> >kernel tree. OTOH, at first glance only the PCI driver needs that
> >binary blob, the USB driver doesn't.
> 
> Droping in. :)
> 
> Kernel part is not required, slmodemd works with the snd-intel8x0m Alsa 
> driver. For me at least, and for the PCI version.
 
  ah! yes!  apt-cache show sl-modem-daemon.


	

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
       [not found] ` <2CAhw-4dR-3@gated-at.bofh.it>
@ 2004-09-10 16:51   ` SashaK
  0 siblings, 0 replies; 31+ messages in thread
From: SashaK @ 2004-09-10 16:51 UTC (permalink / raw)
  To: Theodore Ts'o, Linux Kernel

On Thu, 09 Sep 2004 18:50:06 +0200
Theodore Ts'o <tytso@mit.edu> wrote:

> The good news is that there a completely GPL'ed, source-complete
> driver already in the 2.6 kernel, sound/pci/intel8x0m.c, which will
> work with  the user-mode daemon found in the smlink.com distribution.
> This driver doesn't have all of the functionality of slamr driver
> (which requires the propietary, binary-only object file) --- most
> notably, ATM1 doesn't work when using the completely open-source
> intl8x0m driver.

Those functionality limitations in open source modem drivers are just
"unimplemented yet" stuff. The final goal is to replace proprietary
slamr driver completely.

Best Regards,
Sasha.

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
@ 2004-09-11 10:26 Mikael Pettersson
  2004-09-11 13:48 ` SashaK
  0 siblings, 1 reply; 31+ messages in thread
From: Mikael Pettersson @ 2004-09-11 10:26 UTC (permalink / raw)
  To: linux-kernel, sashak, tytso

On Fri, 10 Sep 2004 19:51:04 +0300, SashaK <sashak@smlink.com> wrote:
>Theodore Ts'o <tytso@mit.edu> wrote:
>
>> The good news is that there a completely GPL'ed, source-complete
>> driver already in the 2.6 kernel, sound/pci/intel8x0m.c, which will
>> work with  the user-mode daemon found in the smlink.com distribution.
>> This driver doesn't have all of the functionality of slamr driver
>> (which requires the propietary, binary-only object file) --- most
>> notably, ATM1 doesn't work when using the completely open-source
>> intl8x0m driver.
>
>Those functionality limitations in open source modem drivers are just
>"unimplemented yet" stuff. The final goal is to replace proprietary
>slamr driver completely.

I hope you succeed with open-sourcing all of slmodem's driver
code. My Targa Athlon64 laptop has the AMR thingy and the
32-bit x86 binary only slmodem driver prevents me from using
the modem while running a 64-bit kernel.

/Mikael

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-11 10:26 Mikael Pettersson
@ 2004-09-11 13:48 ` SashaK
  0 siblings, 0 replies; 31+ messages in thread
From: SashaK @ 2004-09-11 13:48 UTC (permalink / raw)
  To: Mikael Pettersson; +Cc: linux-kernel, tytso

On Sat, 11 Sep 2004 12:26:00 +0200 (MEST)
Mikael Pettersson <mikpe@csd.uu.se> wrote:

> I hope you succeed with open-sourcing all of slmodem's driver
> code. My Targa Athlon64 laptop has the AMR thingy and the
> 32-bit x86 binary only slmodem driver prevents me from using
> the modem while running a 64-bit kernel.

You mean to GPL user-space program slmodemd?
I think it is good idea, but unfortunately this code is not just my, and
final decision was 'no'.

Sasha.

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
       [not found] ` <2Dfup-7Zv-9@gated-at.bofh.it>
@ 2004-09-11 14:09   ` Andi Kleen
  2004-09-11 20:07     ` SashaK
  0 siblings, 1 reply; 31+ messages in thread
From: Andi Kleen @ 2004-09-11 14:09 UTC (permalink / raw)
  To: SashaK; +Cc: linux-kernel

SashaK <sashak@smlink.com> writes:

> On Sat, 11 Sep 2004 12:26:00 +0200 (MEST)
> Mikael Pettersson <mikpe@csd.uu.se> wrote:
>
>> I hope you succeed with open-sourcing all of slmodem's driver
>> code. My Targa Athlon64 laptop has the AMR thingy and the
>> 32-bit x86 binary only slmodem driver prevents me from using
>> the modem while running a 64-bit kernel.
>
> You mean to GPL user-space program slmodemd?
> I think it is good idea, but unfortunately this code is not just my, and
> final decision was 'no'.

One way that would work is to make the binary parts of your driver run
in user space and let the kernel part just provide a kind of simple
sound card.  The later should be much easier to free.

Modern CPUs are usually fast enough that the additional latency
caused by this doesn't matter.

The 64bit kernel can run 32bit programs without problems.

-Andi


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
@ 2004-09-11 18:50 Mikael Pettersson
  2004-09-11 22:11 ` SashaK
  0 siblings, 1 reply; 31+ messages in thread
From: Mikael Pettersson @ 2004-09-11 18:50 UTC (permalink / raw)
  To: sashak; +Cc: linux-kernel, tytso

On Sat, 11 Sep 2004 16:48:56 +0300, SashaK <sashak@smlink.com> wrote:
>On Sat, 11 Sep 2004 12:26:00 +0200 (MEST)
>Mikael Pettersson <mikpe@csd.uu.se> wrote:
>
>> I hope you succeed with open-sourcing all of slmodem's driver
>> code. My Targa Athlon64 laptop has the AMR thingy and the
>> 32-bit x86 binary only slmodem driver prevents me from using
>> the modem while running a 64-bit kernel.
>
>You mean to GPL user-space program slmodemd?
>I think it is good idea, but unfortunately this code is not just my, and
>final decision was 'no'.

No, I meant the 'slamr' kernel driver module, which is
built from a big binary-only library (amrlibs.o) and
a small amount of kernel glue source code. As long as
amrlibs.o is distributed only as a 32-bit x86 binary,
I won't be able to use it with a 64-bit amd64 kernel.

slmodemd is not the problem since an amd64 kernel can
support 32-bit x86 user-space binaries.

/Mikael

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97  patch)
  2004-09-11 14:09   ` GPL source code for Smart USB 56 modem (includes ALSA AC97 patch) Andi Kleen
@ 2004-09-11 20:07     ` SashaK
  2004-09-12  8:30       ` Andi Kleen
  0 siblings, 1 reply; 31+ messages in thread
From: SashaK @ 2004-09-11 20:07 UTC (permalink / raw)
  To: Andi Kleen; +Cc: linux-kernel

On Sat, 11 Sep 2004 16:09:41 +0200
Andi Kleen <ak@muc.de> wrote:

> SashaK <sashak@smlink.com> writes:
> 
> > You mean to GPL user-space program slmodemd?
> > I think it is good idea, but unfortunately this code is not just my,
> > and final decision was 'no'.
> 
> One way that would work is to make the binary parts of your driver run
> in user space and let the kernel part just provide a kind of simple
> sound card. 

It is done so - user space daemon (with binary part) interacts with ALSA
drivers.

> The later should be much easier to free.

There was such approach, but seems it was wrong.

> The 64bit kernel can run 32bit programs without problems.

This should be possible (don't check yet). But the problem here was
that AMD64 machines are usually based on non-Intel chipsets
(VIA, NVidia), supports for those chipsets were added to ALSA just in
last days. Now it may be tested with recent version of ALSA.

Sasha. 

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-11 18:50 Mikael Pettersson
@ 2004-09-11 22:11 ` SashaK
  2004-09-13 20:26   ` David Lloyd
  2004-09-21 16:55   ` David Woodhouse
  0 siblings, 2 replies; 31+ messages in thread
From: SashaK @ 2004-09-11 22:11 UTC (permalink / raw)
  To: Mikael Pettersson; +Cc: linux-kernel

On Sat, 11 Sep 2004 20:50:58 +0200 (MEST)
Mikael Pettersson <mikpe@csd.uu.se> wrote:

> No, I meant the 'slamr' kernel driver module, which is
> built from a big binary-only library (amrlibs.o) and
> a small amount of kernel glue source code. As long as
> amrlibs.o is distributed only as a 32-bit x86 binary,
> I won't be able to use it with a 64-bit amd64 kernel.

This is exactly that was discussed - 'slamr' is going to be replaced by
ALSA drivers. I don't know which modem you have, but recent ALSA
driver (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m),
ATI IXP (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.

Sasha.

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-11 20:07     ` SashaK
@ 2004-09-12  8:30       ` Andi Kleen
  2004-09-12 13:11         ` Sasha Khapyorsky
  0 siblings, 1 reply; 31+ messages in thread
From: Andi Kleen @ 2004-09-12  8:30 UTC (permalink / raw)
  To: SashaK; +Cc: linux-kernel

On Sat, Sep 11, 2004 at 11:07:53PM +0300, SashaK wrote:
> On Sat, 11 Sep 2004 16:09:41 +0200
> Andi Kleen <ak@muc.de> wrote:
> 
> > SashaK <sashak@smlink.com> writes:
> > 
> > > You mean to GPL user-space program slmodemd?
> > > I think it is good idea, but unfortunately this code is not just my,
> > > and final decision was 'no'.
> > 
> > One way that would work is to make the binary parts of your driver run
> > in user space and let the kernel part just provide a kind of simple
> > sound card. 
> 
> It is done so - user space daemon (with binary part) interacts with ALSA
> drivers.

Ok, thanks for the correction. 

> 
> > The later should be much easier to free.
> 
> There was such approach, but seems it was wrong.

What's the problem exactly - your kernel part is still binary only? 

> 
> > The 64bit kernel can run 32bit programs without problems.
> 
> This should be possible (don't check yet). But the problem here was
> that AMD64 machines are usually based on non-Intel chipsets
> (VIA, NVidia), supports for those chipsets were added to ALSA just in
> last days. Now it may be tested with recent version of ALSA.

One small issue is that when you have custom ioctls there may 
be some need to add them to the compat layer, otherwise the user
space part cannot issue them. This could be even done in a separate 
module from your driver though.

-Andi

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-12  8:30       ` Andi Kleen
@ 2004-09-12 13:11         ` Sasha Khapyorsky
  0 siblings, 0 replies; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-12 13:11 UTC (permalink / raw)
  To: Andi Kleen; +Cc: linux-kernel

On 12 Sep 2004 10:30:39 +0200
Andi Kleen <ak@muc.de> wrote:

> > > The later should be much easier to free.
> > 
> > There was such approach, but seems it was wrong.
> 
> What's the problem exactly - your kernel part is still binary only? 

Current binary kernel part (slamr) is not a problem - it may be removed,
then ALSA drivers will be finished. But user-space program still have
binary code and there is no replacement.

> > 
> > > The 64bit kernel can run 32bit programs without problems.
> > 
> > This should be possible (don't check yet). But the problem here was
> > that AMD64 machines are usually based on non-Intel chipsets
> > (VIA, NVidia), supports for those chipsets were added to ALSA just
> > in last days. Now it may be tested with recent version of ALSA.
> 
> One small issue is that when you have custom ioctls there may 
> be some need to add them to the compat layer, otherwise the user
> space part cannot issue them. This could be even done in a separate 
> module from your driver though.

Thanks for explanations.

Sasha.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97   patch)
  2004-09-11 22:11 ` SashaK
@ 2004-09-13 20:26   ` David Lloyd
  2004-09-14 13:19     ` Mario R. Carro
  2004-09-14 14:59     ` Sasha Khapyorsky
  2004-09-21 16:55   ` David Woodhouse
  1 sibling, 2 replies; 31+ messages in thread
From: David Lloyd @ 2004-09-13 20:26 UTC (permalink / raw)
  To: SashaK; +Cc: Mikael Pettersson, linux-kernel

On Sun, 12 Sep 2004, SashaK wrote:

> On Sat, 11 Sep 2004 20:50:58 +0200 (MEST)
> Mikael Pettersson <mikpe@csd.uu.se> wrote:
>
>> No, I meant the 'slamr' kernel driver module, which is
>> built from a big binary-only library (amrlibs.o) and
>> a small amount of kernel glue source code. As long as
>> amrlibs.o is distributed only as a 32-bit x86 binary,
>> I won't be able to use it with a 64-bit amd64 kernel.
>
> This is exactly that was discussed - 'slamr' is going to be replaced by 
> ALSA drivers. I don't know which modem you have, but recent ALSA driver 
> (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m), ATI IXP 
> (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.

Are these all motherboard-chipset modems, or is there such a thing as an 
AC97-based PCI modem card?

- D

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97   patch)
  2004-09-13 20:26   ` David Lloyd
@ 2004-09-14 13:19     ` Mario R. Carro
  2004-09-14 14:59     ` Sasha Khapyorsky
  1 sibling, 0 replies; 31+ messages in thread
From: Mario R. Carro @ 2004-09-14 13:19 UTC (permalink / raw)
  To: linux-kernel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1123 bytes --]

I have one a PCI based one, branded as OvisLink.

MRC

-- 

THREADS SRL
Tel:    (54-291) 488-7451
e-Mail: info@threads-srl.com
Web:    www.threads-srl.com

"David Lloyd" <dmlloyd@tds.net> escribió en el mensaje
news:Pine.LNX.4.60.0409131526050.29875@tomservo.workpc.tds.net...
> On Sun, 12 Sep 2004, SashaK wrote:
>
> > On Sat, 11 Sep 2004 20:50:58 +0200 (MEST)
> > Mikael Pettersson <mikpe@csd.uu.se> wrote:
> >
> >> No, I meant the 'slamr' kernel driver module, which is
> >> built from a big binary-only library (amrlibs.o) and
> >> a small amount of kernel glue source code. As long as
> >> amrlibs.o is distributed only as a 32-bit x86 binary,
> >> I won't be able to use it with a 64-bit amd64 kernel.
> >
> > This is exactly that was discussed - 'slamr' is going to be replaced by
> > ALSA drivers. I don't know which modem you have, but recent ALSA driver
> > (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m), ATI IXP
> > (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.
>
> Are these all motherboard-chipset modems, or is there such a thing as an
> AC97-based PCI modem card?
>
> - D





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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97   patch)
  2004-09-13 20:26   ` David Lloyd
  2004-09-14 13:19     ` Mario R. Carro
@ 2004-09-14 14:59     ` Sasha Khapyorsky
  2004-09-14 21:04       ` Giuseppe Bilotta
  1 sibling, 1 reply; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-14 14:59 UTC (permalink / raw)
  To: David Lloyd; +Cc: Mikael Pettersson, linux-kernel

On Mon, 13 Sep 2004 15:26:35 -0500 (CDT)
David Lloyd <dmlloyd@tds.net> wrote:

> On Sun, 12 Sep 2004, SashaK wrote:
> 
> > On Sat, 11 Sep 2004 20:50:58 +0200 (MEST)
> > Mikael Pettersson <mikpe@csd.uu.se> wrote:
> >
> >> No, I meant the 'slamr' kernel driver module, which is
> >> built from a big binary-only library (amrlibs.o) and
> >> a small amount of kernel glue source code. As long as
> >> amrlibs.o is distributed only as a 32-bit x86 binary,
> >> I won't be able to use it with a 64-bit amd64 kernel.
> >
> > This is exactly that was discussed - 'slamr' is going to be replaced
> > by ALSA drivers. I don't know which modem you have, but recent ALSA
> > driver (CVS version) already supports ICH, SiS, NForce
> > (snd-intel8x0m), ATI IXP (snd-atiixp-modem) and VIA
> > (snd-via82xx-modem) AC97 modems.
> 
> Are these all motherboard-chipset modems, or is there such a thing as
> an AC97-based PCI modem card?

Such modems also exist (AC97 controller + MC97 codec + DAA), but less
popular (especially with laptops there modem are mostly used).

Sasha.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97     patch)
  2004-09-14 14:59     ` Sasha Khapyorsky
@ 2004-09-14 21:04       ` Giuseppe Bilotta
  2004-09-15  0:58         ` Sasha Khapyorsky
  0 siblings, 1 reply; 31+ messages in thread
From: Giuseppe Bilotta @ 2004-09-14 21:04 UTC (permalink / raw)
  To: linux-kernel

Sasha Khapyorsky wrote:
> Such modems also exist (AC97 controller + MC97 codec + DAA), but less
> popular (especially with laptops there modem are mostly used).

I have one such built in in my Dell Inspiron 8200, which is why 
I'm following this thread with particular interest.

The strange thing is that under Windows the modem is configured 
as a Conexant thingie ... or is the problem that I have both 
and the Conexant thingie is the one connected to the actual 
modem plug? Is there a way to know this (other than having a 
look inside my laptop, that is)?

-- 
Giuseppe "Oblomov" Bilotta

Can't you see
It all makes perfect sense
Expressed in dollar and cents
Pounds shillings and pence
                  (Roger Waters)


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97     patch)
  2004-09-14 21:04       ` Giuseppe Bilotta
@ 2004-09-15  0:58         ` Sasha Khapyorsky
  2004-09-17 10:22           ` Giuseppe Bilotta
  0 siblings, 1 reply; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-15  0:58 UTC (permalink / raw)
  To: Giuseppe Bilotta; +Cc: linux-kernel

On Tue, 14 Sep 2004 23:04:41 +0200
Giuseppe Bilotta <bilotta78@hotpop.com> wrote:

> Sasha Khapyorsky wrote:
> > Such modems also exist (AC97 controller + MC97 codec + DAA), but
> > less popular (especially with laptops there modem are mostly used).
> 
> I have one such built in in my Dell Inspiron 8200, which is why 
> I'm following this thread with particular interest.
> 
> The strange thing is that under Windows the modem is configured 
> as a Conexant thingie ... or is the problem that I have both 
> and the Conexant thingie is the one connected to the actual 
> modem plug? Is there a way to know this (other than having a 
> look inside my laptop, that is)?

If it looks like this:

00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller

it is most likely on-board south bridge and MDC (or other riser)
modem. This may work with ALSA.

Or send me your lspci.

Sasha.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97       patch)
  2004-09-15  0:58         ` Sasha Khapyorsky
@ 2004-09-17 10:22           ` Giuseppe Bilotta
  2004-09-18 11:29             ` Sasha Khapyorsky
  0 siblings, 1 reply; 31+ messages in thread
From: Giuseppe Bilotta @ 2004-09-17 10:22 UTC (permalink / raw)
  To: linux-kernel

Sasha Khapyorsky wrote:
> On Tue, 14 Sep 2004 23:04:41 +0200
> Giuseppe Bilotta <bilotta78@hotpop.com> wrote:
> 
> > Sasha Khapyorsky wrote:
> > > Such modems also exist (AC97 controller + MC97 codec + DAA), but
> > > less popular (especially with laptops there modem are mostly used).
> > 
> > I have one such built in in my Dell Inspiron 8200, which is why 
> > I'm following this thread with particular interest.
> > 
> > The strange thing is that under Windows the modem is configured 
> > as a Conexant thingie ... or is the problem that I have both 
> > and the Conexant thingie is the one connected to the actual 
> > modem plug? Is there a way to know this (other than having a 
> > look inside my laptop, that is)?
> 
> If it looks like this:
> 
> 00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller
> 
> it is most likely on-board south bridge and MDC (or other riser)
> modem. This may work with ALSA.

That's it:

> 0000:00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller (rev 02) 


Very verbose lspci output for both the soundcard and modem give 
me:

> 0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801CA/CAM AC'97 Audio Controller (rev 02)
>       Subsystem: Cirrus Logic: Unknown device 5959
>       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 7
>       Region 0: I/O ports at d800 [size=256]
>       Region 1: I/O ports at dc80 [size=64]
> 
> 0000:00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller (rev 02) (prog-if 00 [Generic])
>       Subsystem: Conexant MD56ORD V.92 MDC Modem
>       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 7
>       Region 0: I/O ports at d400 [size=256]
>       Region 1: I/O ports at dc00 [size=128] 

OTOH, ALSA in 2.6.5 doesn't like the modem controller:

> PCI: Setting latency timer of device 0000:00:1f.5 to 64
> MC'97 1 converters and GPIO not ready (0xff00)
> intel8x0_measure_ac97_clock: measured 52287 usecs
> intel8x0: clocking to 48000
> PCI: Setting latency timer of device 0000:00:1f.6 to 64
> MC'97 1 converters and GPIO not ready (0xff00)

and 2.6.7 totally fails on both the audio and modem controller

> unable to grab IRQ 7
> Intel ICH: probe of 0000:00:1f.5 failed with error -16
> unable to grab IRQ 7
> Intel ICH Modem: probe of 0000:00:1f.6 failed with error -16 

I will try one of the 2.6.9 rcs one of these days and see if I 
can get things to work.

-- 
Giuseppe "Oblomov" Bilotta

Can't you see
It all makes perfect sense
Expressed in dollar and cents
Pounds shillings and pence
                  (Roger Waters)


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97     patch)
  2004-09-17 10:22           ` Giuseppe Bilotta
@ 2004-09-18 11:29             ` Sasha Khapyorsky
  2004-09-18 14:35               ` Giuseppe Bilotta
  0 siblings, 1 reply; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-18 11:29 UTC (permalink / raw)
  To: Giuseppe Bilotta; +Cc: linux-kernel

On Fri, 17 Sep 2004 12:22:05 +0200
Giuseppe Bilotta <bilotta78@hotpop.com> wrote:

> That's it:
> 
> > 0000:00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller (rev 02) 

This is on-board controller.

> OTOH, ALSA in 2.6.5 doesn't like the modem controller:
> 
> > PCI: Setting latency timer of device 0000:00:1f.5 to 64
> > MC'97 1 converters and GPIO not ready (0xff00)
> > intel8x0_measure_ac97_clock: measured 52287 usecs
> > intel8x0: clocking to 48000
> > PCI: Setting latency timer of device 0000:00:1f.6 to 64
> > MC'97 1 converters and GPIO not ready (0xff00)
> 
> and 2.6.7 totally fails on both the audio and modem controller
> 
> > unable to grab IRQ 7
> > Intel ICH: probe of 0000:00:1f.5 failed with error -16
> > unable to grab IRQ 7
> > Intel ICH Modem: probe of 0000:00:1f.6 failed with error -16 

Not sure that last one is ALSA related. As noted in mesg 'request_irq' fails.

> I will try one of the 2.6.9 rcs one of these days and see if I 
> can get things to work.

If not please report a problem here https://bugtrack.alsa-project.org/alsa-bug/,
Or let me know.

Sasha.

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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97         patch)
  2004-09-18 11:29             ` Sasha Khapyorsky
@ 2004-09-18 14:35               ` Giuseppe Bilotta
  2004-09-18 20:20                 ` Sasha Khapyorsky
  0 siblings, 1 reply; 31+ messages in thread
From: Giuseppe Bilotta @ 2004-09-18 14:35 UTC (permalink / raw)
  To: linux-kernel

Sasha Khapyorsky wrote:
> On Fri, 17 Sep 2004 12:22:05 +0200
> Giuseppe Bilotta <bilotta78@hotpop.com> wrote:
> 
> > That's it:
> > 
> > > 0000:00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem Controller (rev 02) 
> 
> This is on-board controller.

Yes. And it is indeed the Conexant modem seen by Windows.

> > OTOH, ALSA in 2.6.5 doesn't like the modem controller:
> > 
> > > PCI: Setting latency timer of device 0000:00:1f.5 to 64
> > > MC'97 1 converters and GPIO not ready (0xff00)
> > > intel8x0_measure_ac97_clock: measured 52287 usecs
> > > intel8x0: clocking to 48000
> > > PCI: Setting latency timer of device 0000:00:1f.6 to 64
> > > MC'97 1 converters and GPIO not ready (0xff00)
> > 
> > and 2.6.7 totally fails on both the audio and modem controller
> > 
> > > unable to grab IRQ 7
> > > Intel ICH: probe of 0000:00:1f.5 failed with error -16
> > > unable to grab IRQ 7
> > > Intel ICH Modem: probe of 0000:00:1f.6 failed with error -16 
> 
> Not sure that last one is ALSA related. As noted in mesg 'request_irq' fails.

Ok, I found the reason of the latter failure: in 2.6.7 I have 
ISA-PnP enabled (not in 2.6.5) and this loads the parport 
driver before the sound driver. parport steals the IRQ.

Module loading order is important: if I load the i8x0 sound 
modules first, the messages are more or less the same as the 
ones in 2.6.5 (including the "MC'97 1 converters and GPIO not 
ready" message), and then parport accepts IRQ 7 to be taken by 
resorting to polled operation:

> parport: PnPBIOS parport detected.
> parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
> parport0: irq 7 in use, resorting to polled operation

I wonder what this means, and if something can be done about it 
(like: can the i8x0 sound modules use some other IRQ?)

> > I will try one of the 2.6.9 rcs one of these days and see if I 
> > can get things to work.
> 
> If not please report a problem here https://bugtrack.alsa-project.org/alsa-bug/,
> Or let me know.

I will. Do you have any idea on the "not ready" issue?

-- 
Giuseppe "Oblomov" Bilotta

Can't you see
It all makes perfect sense
Expressed in dollar and cents
Pounds shillings and pence
                  (Roger Waters)


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97     patch)
  2004-09-18 14:35               ` Giuseppe Bilotta
@ 2004-09-18 20:20                 ` Sasha Khapyorsky
  2004-09-20 20:23                   ` Giuseppe Bilotta
  0 siblings, 1 reply; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-18 20:20 UTC (permalink / raw)
  To: Giuseppe Bilotta; +Cc: linux-kernel

On Sat, 18 Sep 2004 16:35:32 +0200
Giuseppe Bilotta <bilotta78@hotpop.com> wrote:

> Ok, I found the reason of the latter failure: in 2.6.7 I have 
> ISA-PnP enabled (not in 2.6.5) and this loads the parport 
> driver before the sound driver. parport steals the IRQ.
> 
> Module loading order is important: if I load the i8x0 sound 
> modules first, the messages are more or less the same as the 
> ones in 2.6.5 (including the "MC'97 1 converters and GPIO not 
> ready" message), and then parport accepts IRQ 7 to be taken by 
> resorting to polled operation:
> 
> > parport: PnPBIOS parport detected.
> > parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
> > parport0: irq 7 in use, resorting to polled operation

I don't know really, but suppose that parport does not accept irq sharing.

> I will. Do you have any idea on the "not ready" issue?

This one is more interesting, probably special patch is necessary for conexant codec, let's see.

Please report bug to alsa and attach there output of 'lspci -vv' and tar of '/proc/asound' directory (or send to me).

Let's detach from linux-kernel list - things become pure-ALSA related.

Thanks,
Sasha.


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97           patch)
  2004-09-18 20:20                 ` Sasha Khapyorsky
@ 2004-09-20 20:23                   ` Giuseppe Bilotta
  0 siblings, 0 replies; 31+ messages in thread
From: Giuseppe Bilotta @ 2004-09-20 20:23 UTC (permalink / raw)
  To: linux-kernel

Sasha Khapyorsky wrote:
> On Sat, 18 Sep 2004 16:35:32 +0200
> Giuseppe Bilotta <bilotta78@hotpop.com> wrote:
> > > parport: PnPBIOS parport detected.
> > > parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
> > > parport0: irq 7 in use, resorting to polled operation
> 
> I don't know really, but suppose that parport does not accept irq sharing.

Ok, I'll inquire with the parport people.

> > I will. Do you have any idea on the "not ready" issue?
> 
> This one is more interesting, probably special patch is necessary for conexant codec, let's see.
> 
> Please report bug to alsa and attach there output of 'lspci -vv' and tar of '/proc/asound' directory (or send to me).

Done. (Has been automatically assigned to you, it seems.)

-- 
Giuseppe "Oblomov" Bilotta

Can't you see
It all makes perfect sense
Expressed in dollar and cents
Pounds shillings and pence
                  (Roger Waters)


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-11 22:11 ` SashaK
  2004-09-13 20:26   ` David Lloyd
@ 2004-09-21 16:55   ` David Woodhouse
  2004-09-21 20:09     ` David Lloyd
  2004-09-22  1:08     ` Sasha Khapyorsky
  1 sibling, 2 replies; 31+ messages in thread
From: David Woodhouse @ 2004-09-21 16:55 UTC (permalink / raw)
  To: SashaK; +Cc: Mikael Pettersson, linux-kernel

On Sun, 2004-09-12 at 01:11 +0300, SashaK wrote:
> This is exactly that was discussed - 'slamr' is going to be replaced by
> ALSA drivers. I don't know which modem you have, but recent ALSA
> driver (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m),
> ATI IXP (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.

What chance of making it work with the ISDN drivers? Should we make an
ALSA driver for ISDN?

-- 
dwmw2


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97   patch)
  2004-09-21 16:55   ` David Woodhouse
@ 2004-09-21 20:09     ` David Lloyd
  2004-09-22  8:19       ` David Woodhouse
  2004-09-22  1:08     ` Sasha Khapyorsky
  1 sibling, 1 reply; 31+ messages in thread
From: David Lloyd @ 2004-09-21 20:09 UTC (permalink / raw)
  To: David Woodhouse; +Cc: SashaK, Mikael Pettersson, linux-kernel

On Tue, 21 Sep 2004, David Woodhouse wrote:

> On Sun, 2004-09-12 at 01:11 +0300, SashaK wrote:
>> This is exactly that was discussed - 'slamr' is going to be replaced by
>> ALSA drivers. I don't know which modem you have, but recent ALSA
>> driver (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m),
>> ATI IXP (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.
>
> What chance of making it work with the ISDN drivers? Should we make an 
> ALSA driver for ISDN?

That's an interesting idea.  Some thoughts I'd have off the bat:

- I don't think there's a software modem implementation (free or
   otherwise) for linux that can support the server side of a digital
   (v.90, v.92) connection, but that would be excellent to have

- Americans might have an FCC concern due to power output restrictions on
   digital modem protocols, and also other voice applications

- Presumably it would only make sense to do this with voice connections

- Could this idea be extended to analog telephony devices?


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97 patch)
  2004-09-21 16:55   ` David Woodhouse
  2004-09-21 20:09     ` David Lloyd
@ 2004-09-22  1:08     ` Sasha Khapyorsky
  1 sibling, 0 replies; 31+ messages in thread
From: Sasha Khapyorsky @ 2004-09-22  1:08 UTC (permalink / raw)
  To: David Woodhouse; +Cc: Mikael Pettersson, linux-kernel

On Tue, 21 Sep 2004 17:55:06 +0100
David Woodhouse <dwmw2@infradead.org> wrote:

> What chance of making it work with the ISDN drivers? Should we make an
> ALSA driver for ISDN?

ISDN is not soft modem - we don't need ALSA drivers for this.

Sasha.



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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97   patch)
  2004-09-21 20:09     ` David Lloyd
@ 2004-09-22  8:19       ` David Woodhouse
  2004-09-22 19:07         ` David Lloyd
  0 siblings, 1 reply; 31+ messages in thread
From: David Woodhouse @ 2004-09-22  8:19 UTC (permalink / raw)
  To: David Lloyd; +Cc: SashaK, Mikael Pettersson, linux-kernel

On Tue, 2004-09-21 at 15:09 -0500, David Lloyd wrote:
> On Tue, 21 Sep 2004, David Woodhouse wrote:
> 
> > On Sun, 2004-09-12 at 01:11 +0300, SashaK wrote:
> >> This is exactly that was discussed - 'slamr' is going to be replaced by
> >> ALSA drivers. I don't know which modem you have, but recent ALSA
> >> driver (CVS version) already supports ICH, SiS, NForce (snd-intel8x0m),
> >> ATI IXP (snd-atiixp-modem) and VIA (snd-via82xx-modem) AC97 modems.
> >
> > What chance of making it work with the ISDN drivers? Should we make an 
> > ALSA driver for ISDN?
> 
> That's an interesting idea.  Some thoughts I'd have off the bat:
> 
> - I don't think there's a software modem implementation (free or
>    otherwise) for linux that can support the server side of a digital
>    (v.90, v.92) connection, but that would be excellent to have

That'd be even better, yes -- but I was thinking of v.34.
Even having just v.29 (fax) would be nice.

> - Americans might have an FCC concern due to power output restrictions on
>    digital modem protocols, and also other voice applications

You can already use the Linux ISDN code in 'voice modem' mode and do
what you like with it... what would concern them more?

> - Presumably it would only make sense to do this with voice connections

Indeed.

> - Could this idea be extended to analog telephony devices?

Ideally, it could be extended to analogue coupling using standard
speakers and microphone. :)

-- 
dwmw2


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

* Re: GPL source code for Smart USB 56 modem (includes ALSA AC97     patch)
  2004-09-22  8:19       ` David Woodhouse
@ 2004-09-22 19:07         ` David Lloyd
  0 siblings, 0 replies; 31+ messages in thread
From: David Lloyd @ 2004-09-22 19:07 UTC (permalink / raw)
  To: David Woodhouse; +Cc: SashaK, Mikael Pettersson, linux-kernel

On Wed, 22 Sep 2004, David Woodhouse wrote:

>> - Could this idea be extended to analog telephony devices?
>
> Ideally, it could be extended to analogue coupling using standard 
> speakers and microphone. :)

I mean e.g. those PBX-like device things (like the Quicknet thing maybe?) 
that let you run a telephone network in your facility, so you could hook 
up fax machines or modems to them in a 'POTS emulation' kind of sense.

- D

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

end of thread, other threads:[~2004-09-22 19:06 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <2DdiX-6ye-17@gated-at.bofh.it>
     [not found] ` <2Dfup-7Zv-9@gated-at.bofh.it>
2004-09-11 14:09   ` GPL source code for Smart USB 56 modem (includes ALSA AC97 patch) Andi Kleen
2004-09-11 20:07     ` SashaK
2004-09-12  8:30       ` Andi Kleen
2004-09-12 13:11         ` Sasha Khapyorsky
2004-09-11 18:50 Mikael Pettersson
2004-09-11 22:11 ` SashaK
2004-09-13 20:26   ` David Lloyd
2004-09-14 13:19     ` Mario R. Carro
2004-09-14 14:59     ` Sasha Khapyorsky
2004-09-14 21:04       ` Giuseppe Bilotta
2004-09-15  0:58         ` Sasha Khapyorsky
2004-09-17 10:22           ` Giuseppe Bilotta
2004-09-18 11:29             ` Sasha Khapyorsky
2004-09-18 14:35               ` Giuseppe Bilotta
2004-09-18 20:20                 ` Sasha Khapyorsky
2004-09-20 20:23                   ` Giuseppe Bilotta
2004-09-21 16:55   ` David Woodhouse
2004-09-21 20:09     ` David Lloyd
2004-09-22  8:19       ` David Woodhouse
2004-09-22 19:07         ` David Lloyd
2004-09-22  1:08     ` Sasha Khapyorsky
  -- strict thread matches above, loose matches on Subject: below --
2004-09-11 10:26 Mikael Pettersson
2004-09-11 13:48 ` SashaK
     [not found] <2CvrA-Fv-11@gated-at.bofh.it>
     [not found] ` <2CAhw-4dR-3@gated-at.bofh.it>
2004-09-10 16:51   ` SashaK
2004-09-09 14:04 tvrtko.ursulin
2004-09-09 15:47 ` Luke Kenneth Casson Leighton
2004-09-09 11:47 Luke Kenneth Casson Leighton
2004-09-09 13:25 ` Ian Campbell
2004-09-09 13:46 ` Erik Mouw
2004-09-09 14:46   ` Luke Kenneth Casson Leighton
2004-09-09 13:59 ` Theodore Ts'o

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox