linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] 86xx: Enable the AC97 interface on 8641D board.
@ 2007-05-02 21:53 Jon Loeliger
  2007-05-03 14:44 ` Kumar Gala
  2007-05-10  5:16 ` Kumar Gala
  0 siblings, 2 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-02 21:53 UTC (permalink / raw)
  To: linuxppc-dev@ozlabs.org

From: Jason Jin <jason.jin@freescale.com>

HD interface and AC97 interface share some pins and they are enabled at
the same time, In order to use AC97 interface, we need to disable the HD
interface first.

Signed-off-by:Jason Jin<jason.jin@freescale.com>
Acked-by: Jon Loeliger <jdl@freescale.com>
---
 arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
index 3d3d98f..13a14dd 100644
--- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
+++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
@@ -168,7 +168,7 @@ static void __devinit quirk_uli1575(struct pci_dev *dev)
 {
 	unsigned short temp;
 	struct pci_controller *hose = pci_bus_to_host(dev->bus);
-	unsigned char irq2pin[16];
+	unsigned char irq2pin[16], c;
 	unsigned long pirq_map_word = 0;
 	u32 irq;
 	int i;
@@ -288,6 +288,11 @@ static void __devinit quirk_uli1575(struct pci_dev *dev)
 	outb(0x1e, 0x4d1);
 
 #undef ULI1575_SET_DEV_IRQ
+
+	/* Disable the HD interface and enable the AC97 interface. */
+	pci_read_config_byte(dev, 0xb8, &c);
+	c &= 0x7f;
+	pci_write_config_byte(dev, 0xb8, c);
 }
 
 static void __devinit quirk_uli5288(struct pci_dev *dev)
-- 
1.5.0.3

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-02 21:53 [PATCH] 86xx: Enable the AC97 interface on 8641D board Jon Loeliger
@ 2007-05-03 14:44 ` Kumar Gala
  2007-05-03 15:55   ` Jon Loeliger
  2007-05-10  5:16 ` Kumar Gala
  1 sibling, 1 reply; 16+ messages in thread
From: Kumar Gala @ 2007-05-03 14:44 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org


On May 2, 2007, at 4:53 PM, Jon Loeliger wrote:

> From: Jason Jin <jason.jin@freescale.com>
>
> HD interface and AC97 interface share some pins and they are  
> enabled at
> the same time, In order to use AC97 interface, we need to disable  
> the HD
> interface first.
>
> Signed-off-by:Jason Jin<jason.jin@freescale.com>
> Acked-by: Jon Loeliger <jdl@freescale.com>
> ---
>  arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)

Is the HD feature not used at all?  Is there a AC97 Driver CONFIG_  
that makes sense to wrap that with?  Just wondering about the mutual  
exclusion (and how to provide flexibility to the user).

- k

>
> diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/ 
> powerpc/platforms/86xx/mpc86xx_hpcn.c
> index 3d3d98f..13a14dd 100644
> --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
> +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c
> @@ -168,7 +168,7 @@ static void __devinit quirk_uli1575(struct  
> pci_dev *dev)
>  {
>  	unsigned short temp;
>  	struct pci_controller *hose = pci_bus_to_host(dev->bus);
> -	unsigned char irq2pin[16];
> +	unsigned char irq2pin[16], c;
>  	unsigned long pirq_map_word = 0;
>  	u32 irq;
>  	int i;
> @@ -288,6 +288,11 @@ static void __devinit quirk_uli1575(struct  
> pci_dev *dev)
>  	outb(0x1e, 0x4d1);
>
>  #undef ULI1575_SET_DEV_IRQ
> +
> +	/* Disable the HD interface and enable the AC97 interface. */
> +	pci_read_config_byte(dev, 0xb8, &c);
> +	c &= 0x7f;
> +	pci_write_config_byte(dev, 0xb8, c);
>  }
>
>  static void __devinit quirk_uli5288(struct pci_dev *dev)
> -- 
> 1.5.0.3
>
>
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 14:44 ` Kumar Gala
@ 2007-05-03 15:55   ` Jon Loeliger
  2007-05-03 16:01     ` Kumar Gala
  2007-05-03 16:10     ` Olof Johansson
  0 siblings, 2 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-03 15:55 UTC (permalink / raw)
  To: Kumar Gala; +Cc: linuxppc-dev@ozlabs.org

On Thu, 2007-05-03 at 09:44, Kumar Gala wrote:
> On May 2, 2007, at 4:53 PM, Jon Loeliger wrote:
> 
> > From: Jason Jin <jason.jin@freescale.com>
> >
> > HD interface and AC97 interface share some pins and they are  
> > enabled at
> > the same time, In order to use AC97 interface, we need to disable  
> > the HD
> > interface first.
> >
> > Signed-off-by:Jason Jin<jason.jin@freescale.com>
> > Acked-by: Jon Loeliger <jdl@freescale.com>
> > ---
> >  arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
> >  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> Is the HD feature not used at all?  Is there a AC97 Driver CONFIG_  
> that makes sense to wrap that with?  Just wondering about the mutual  
> exclusion (and how to provide flexibility to the user).
> 
> - k


The ULI supports both the HD and AC97 interfaces, but the 8641
only supports the AC97 interface.  Thus we can straight disable
the HD and convert/configure the shared pins to be AC97.  Thus,
there is no real CONFIG_ need at all.  It's only AC97.  And then
ultimately, the presence of sound support is controlled by
the ALSA config options as per normal.

Thanks,
jdl

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 15:55   ` Jon Loeliger
@ 2007-05-03 16:01     ` Kumar Gala
  2007-05-03 16:03       ` Jon Loeliger
  2007-05-03 16:10     ` Olof Johansson
  1 sibling, 1 reply; 16+ messages in thread
From: Kumar Gala @ 2007-05-03 16:01 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org


On May 3, 2007, at 10:55 AM, Jon Loeliger wrote:

> On Thu, 2007-05-03 at 09:44, Kumar Gala wrote:
>> On May 2, 2007, at 4:53 PM, Jon Loeliger wrote:
>>
>>> From: Jason Jin <jason.jin@freescale.com>
>>>
>>> HD interface and AC97 interface share some pins and they are
>>> enabled at
>>> the same time, In order to use AC97 interface, we need to disable
>>> the HD
>>> interface first.
>>>
>>> Signed-off-by:Jason Jin<jason.jin@freescale.com>
>>> Acked-by: Jon Loeliger <jdl@freescale.com>
>>> ---
>>>  arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
>>>  1 files changed, 6 insertions(+), 1 deletions(-)
>>
>> Is the HD feature not used at all?  Is there a AC97 Driver CONFIG_
>> that makes sense to wrap that with?  Just wondering about the mutual
>> exclusion (and how to provide flexibility to the user).
>>
>> - k
>
>
> The ULI supports both the HD and AC97 interfaces, but the 8641
> only supports the AC97 interface.  Thus we can straight disable
> the HD and convert/configure the shared pins to be AC97.  Thus,
> there is no real CONFIG_ need at all.  It's only AC97.  And then
> ultimately, the presence of sound support is controlled by
> the ALSA config options as per normal.

Ok.  I'm guessing HD here isn't hard disk, but some audio thing.

- k

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:01     ` Kumar Gala
@ 2007-05-03 16:03       ` Jon Loeliger
  0 siblings, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-03 16:03 UTC (permalink / raw)
  To: Kumar Gala; +Cc: linuxppc-dev@ozlabs.org

On Thu, 2007-05-03 at 11:01, Kumar Gala wrote:


> Ok.  I'm guessing HD here isn't hard disk, but some audio thing.

That is correct.

jdl

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 15:55   ` Jon Loeliger
  2007-05-03 16:01     ` Kumar Gala
@ 2007-05-03 16:10     ` Olof Johansson
  2007-05-03 16:17       ` Jon Loeliger
  1 sibling, 1 reply; 16+ messages in thread
From: Olof Johansson @ 2007-05-03 16:10 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org

On Thu, May 03, 2007 at 10:55:25AM -0500, Jon Loeliger wrote:
> On Thu, 2007-05-03 at 09:44, Kumar Gala wrote:
> > On May 2, 2007, at 4:53 PM, Jon Loeliger wrote:
> > 
> > > From: Jason Jin <jason.jin@freescale.com>
> > >
> > > HD interface and AC97 interface share some pins and they are  
> > > enabled at
> > > the same time, In order to use AC97 interface, we need to disable  
> > > the HD
> > > interface first.
> > >
> > > Signed-off-by:Jason Jin<jason.jin@freescale.com>
> > > Acked-by: Jon Loeliger <jdl@freescale.com>
> > > ---
> > >  arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
> > >  1 files changed, 6 insertions(+), 1 deletions(-)
> > 
> > Is the HD feature not used at all?  Is there a AC97 Driver CONFIG_  
> > that makes sense to wrap that with?  Just wondering about the mutual  
> > exclusion (and how to provide flexibility to the user).
> > 
> > - k
> 
> 
> The ULI supports both the HD and AC97 interfaces, but the 8641
> only supports the AC97 interface.  Thus we can straight disable
> the HD and convert/configure the shared pins to be AC97.  Thus,
> there is no real CONFIG_ need at all.  It's only AC97.  And then
> ultimately, the presence of sound support is controlled by
> the ALSA config options as per normal.

This sounds like something that firmware should take care of, not
hardcoded in the board code.  Seems like the device is just a PCI device
that doesn't have a device tree entry.

Why not do this in u-boot instead?


-Olof

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:10     ` Olof Johansson
@ 2007-05-03 16:17       ` Jon Loeliger
  2007-05-03 16:19         ` Kumar Gala
                           ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-03 16:17 UTC (permalink / raw)
  To: Olof Johansson; +Cc: linuxppc-dev@ozlabs.org

On Thu, 2007-05-03 at 11:10, Olof Johansson wrote:

> 
> This sounds like something that firmware should take care of, not
> hardcoded in the board code.  Seems like the device is just a PCI device
> that doesn't have a device tree entry.

Well, it's not a PCI device at all.

> Why not do this in u-boot instead?

Why do it there?  We'd have to do it _again_ in Linux
if we didn't come in from U-Boot anyway.

jdl

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:17       ` Jon Loeliger
@ 2007-05-03 16:19         ` Kumar Gala
  2007-05-03 17:28           ` Olof Johansson
  2007-05-09 16:14           ` Jon Loeliger
  2007-05-03 17:26         ` Olof Johansson
  2007-05-06 22:42         ` Matt Sealey
  2 siblings, 2 replies; 16+ messages in thread
From: Kumar Gala @ 2007-05-03 16:19 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: Olof Johansson, linuxppc-dev@ozlabs.org


On May 3, 2007, at 11:17 AM, Jon Loeliger wrote:

> On Thu, 2007-05-03 at 11:10, Olof Johansson wrote:
>
>>
>> This sounds like something that firmware should take care of, not
>> hardcoded in the board code.  Seems like the device is just a PCI  
>> device
>> that doesn't have a device tree entry.
>
> Well, it's not a PCI device at all.
>
>> Why not do this in u-boot instead?
>
> Why do it there?  We'd have to do it _again_ in Linux
> if we didn't come in from U-Boot anyway.

I agree with Jon here.  This is in board specific code so I don't see  
any issue with it.

- k

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:17       ` Jon Loeliger
  2007-05-03 16:19         ` Kumar Gala
@ 2007-05-03 17:26         ` Olof Johansson
  2007-05-03 17:38           ` Scott Wood
  2007-05-06 22:42         ` Matt Sealey
  2 siblings, 1 reply; 16+ messages in thread
From: Olof Johansson @ 2007-05-03 17:26 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org

On Thu, May 03, 2007 at 11:17:26AM -0500, Jon Loeliger wrote:
> On Thu, 2007-05-03 at 11:10, Olof Johansson wrote:
> 
> > 
> > This sounds like something that firmware should take care of, not
> > hardcoded in the board code.  Seems like the device is just a PCI device
> > that doesn't have a device tree entry.
> 
> Well, it's not a PCI device at all.

Really? You use a PCI quirk to manipulate it.

> > Why not do this in u-boot instead?
> 
> Why do it there?  We'd have to do it _again_ in Linux
> if we didn't come in from U-Boot anyway.

The same argument could be used to motivate not doing any kind of board
inits in any firmware and do it all from the board code in linux.

Don't you guys use M1575 on other eval boards too, so you'll need the
same board quirk duplicated?


-Olof

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:19         ` Kumar Gala
@ 2007-05-03 17:28           ` Olof Johansson
  2007-05-09 16:14           ` Jon Loeliger
  1 sibling, 0 replies; 16+ messages in thread
From: Olof Johansson @ 2007-05-03 17:28 UTC (permalink / raw)
  To: Kumar Gala; +Cc: linuxppc-dev@ozlabs.org

On Thu, May 03, 2007 at 11:19:21AM -0500, Kumar Gala wrote:
> 
> On May 3, 2007, at 11:17 AM, Jon Loeliger wrote:
> >>Why not do this in u-boot instead?
> >
> >Why do it there?  We'd have to do it _again_ in Linux
> >if we didn't come in from U-Boot anyway.
> 
> I agree with Jon here.  This is in board specific code so I don't see  
> any issue with it.

Good to know. I'll keep that in mind myself for future reference, no
need to waste effort trying to get clean board ports.


-Olof

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 17:26         ` Olof Johansson
@ 2007-05-03 17:38           ` Scott Wood
  0 siblings, 0 replies; 16+ messages in thread
From: Scott Wood @ 2007-05-03 17:38 UTC (permalink / raw)
  To: Olof Johansson; +Cc: linuxppc-dev@ozlabs.org

Olof Johansson wrote:
> On Thu, May 03, 2007 at 11:17:26AM -0500, Jon Loeliger wrote:
>>Why do it there?  We'd have to do it _again_ in Linux
>>if we didn't come in from U-Boot anyway.
> 
> The same argument could be used to motivate not doing any kind of board
> inits in any firmware and do it all from the board code in linux.

Not to mention that it's more likely that someone will use a different 
OS than different firmware, and then they'd have to duplicate the board 
code *there*.

-Scott

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:17       ` Jon Loeliger
  2007-05-03 16:19         ` Kumar Gala
  2007-05-03 17:26         ` Olof Johansson
@ 2007-05-06 22:42         ` Matt Sealey
  2 siblings, 0 replies; 16+ messages in thread
From: Matt Sealey @ 2007-05-06 22:42 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: Olof Johansson, linuxppc-dev@ozlabs.org


Jon Loeliger wrote:
> On Thu, 2007-05-03 at 11:10, Olof Johansson wrote:
> 
>> This sounds like something that firmware should take care of, not
>> hardcoded in the board code.  Seems like the device is just a PCI device
>> that doesn't have a device tree entry.
> 
> Well, it's not a PCI device at all.

A PCI Express southbridge - not much difference really is there?

>> Why not do this in u-boot instead?
> 
> Why do it there?  We'd have to do it _again_ in Linux
> if we didn't come in from U-Boot anyway.

Because the firmware should configure the board specifics if possible,
Linux should only be tweaking Northbridge/Southbridge settings if it
is truly configurable at runtime or boot. If the difference is between
whether an AC97 or Azalia codec is installed and soldered to the board,
and it is not possible to have both, really the firmware should be
setting up the chip so that only one is obviously usable.

Ostensibly Linux and any drivers should be able to check which is
enabled on the board - one revision may have AC97 and one may have
Azalia HD audio. If this can be swapped by simply having each driver
check the enabled codec mode on init, and dropping out if not correct,
then it's starting to get to be Plug And Play.

The alternative is that every revision of the board has it Hardcoded
Into A Board Support Package, with different device trees and strange
quirks which may or may not be easily determined, cluttering Kconfigs
and so on.

In theory; the firmware should do it, and if not, it should be done
as early in Linux boot (platform init, device tree fixup) as possible.
That's how we agreed to do it on the Efika after much, much discussion
and argument :D

-- 
Matt Sealey <matt@genesi-usa.com>
Genesi, Manager, Developer Relations

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-03 16:19         ` Kumar Gala
  2007-05-03 17:28           ` Olof Johansson
@ 2007-05-09 16:14           ` Jon Loeliger
  2007-05-09 16:19             ` Kumar Gala
  1 sibling, 1 reply; 16+ messages in thread
From: Jon Loeliger @ 2007-05-09 16:14 UTC (permalink / raw)
  To: Kumar Gala; +Cc: linuxppc-dev@ozlabs.org

On Thu, 2007-05-03 at 11:19, Kumar Gala wrote:

> I agree with Jon here.  This is in board specific code so I don't see  
> any issue with it.


Hi Kumar,

So, bottom line, will you pick this patch up and
pass it along to Paul?

Thanks,
jdl

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-09 16:14           ` Jon Loeliger
@ 2007-05-09 16:19             ` Kumar Gala
  0 siblings, 0 replies; 16+ messages in thread
From: Kumar Gala @ 2007-05-09 16:19 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org


On May 9, 2007, at 11:14 AM, Jon Loeliger wrote:

> On Thu, 2007-05-03 at 11:19, Kumar Gala wrote:
>
>> I agree with Jon here.  This is in board specific code so I don't see
>> any issue with it.
>
>
> Hi Kumar,
>
> So, bottom line, will you pick this patch up and
> pass it along to Paul?

will do.

- k

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-02 21:53 [PATCH] 86xx: Enable the AC97 interface on 8641D board Jon Loeliger
  2007-05-03 14:44 ` Kumar Gala
@ 2007-05-10  5:16 ` Kumar Gala
  2007-05-10 15:45   ` Jon Loeliger
  1 sibling, 1 reply; 16+ messages in thread
From: Kumar Gala @ 2007-05-10  5:16 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev@ozlabs.org

On Wed, 2 May 2007, Jon Loeliger wrote:

> From: Jason Jin <jason.jin@freescale.com>
>
> HD interface and AC97 interface share some pins and they are enabled at
> the same time, In order to use AC97 interface, we need to disable the HD
> interface first.
>
> Signed-off-by:Jason Jin<jason.jin@freescale.com>
> Acked-by: Jon Loeliger <jdl@freescale.com>
> ---
>  arch/powerpc/platforms/86xx/mpc86xx_hpcn.c |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
>

applied.

- k

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

* Re: [PATCH] 86xx: Enable the AC97 interface on 8641D board.
  2007-05-10  5:16 ` Kumar Gala
@ 2007-05-10 15:45   ` Jon Loeliger
  0 siblings, 0 replies; 16+ messages in thread
From: Jon Loeliger @ 2007-05-10 15:45 UTC (permalink / raw)
  To: Kumar Gala; +Cc: linuxppc-dev@ozlabs.org

On Thu, 2007-05-10 at 00:16, Kumar Gala wrote:
> On Wed, 2 May 2007, Jon Loeliger wrote:
> 
> > From: Jason Jin <jason.jin@freescale.com>
> >
> > HD interface and AC97 interface share some pins and they are enabled at
> > the same time, In order to use AC97 interface, we need to disable the HD
> > interface first.
> >
> 
> applied.
> 
> - k

Thank you!

jdl

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

end of thread, other threads:[~2007-05-10 15:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-02 21:53 [PATCH] 86xx: Enable the AC97 interface on 8641D board Jon Loeliger
2007-05-03 14:44 ` Kumar Gala
2007-05-03 15:55   ` Jon Loeliger
2007-05-03 16:01     ` Kumar Gala
2007-05-03 16:03       ` Jon Loeliger
2007-05-03 16:10     ` Olof Johansson
2007-05-03 16:17       ` Jon Loeliger
2007-05-03 16:19         ` Kumar Gala
2007-05-03 17:28           ` Olof Johansson
2007-05-09 16:14           ` Jon Loeliger
2007-05-09 16:19             ` Kumar Gala
2007-05-03 17:26         ` Olof Johansson
2007-05-03 17:38           ` Scott Wood
2007-05-06 22:42         ` Matt Sealey
2007-05-10  5:16 ` Kumar Gala
2007-05-10 15:45   ` Jon Loeliger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).