All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
@ 2016-01-20 12:30 Lothar Waßmann
  2016-01-28 22:33 ` Mark Brown
  0 siblings, 1 reply; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-20 12:30 UTC (permalink / raw)
  To: Arnd Bergmann, Fabio Estevam, Jaroslav Kysela, Liam Girdwood,
	Lothar Waßmann, Mark Brown, Nicolin Chen, Takashi Iwai,
	alsa-devel, linux-kernel

i.MX6UL does not provide an SSI interface like the other i.MX6 SoCs,
but only an SAI interface.
Select the appropriate interface(s) depending on the enabled SoC types.

Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de>
---
 sound/soc/fsl/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
index 14dfdee..c128823 100644
--- a/sound/soc/fsl/Kconfig
+++ b/sound/soc/fsl/Kconfig
@@ -258,7 +258,8 @@ config SND_SOC_IMX_SGTL5000
 	select SND_SOC_SGTL5000
 	select SND_SOC_IMX_PCM_DMA
 	select SND_SOC_IMX_AUDMUX
-	select SND_SOC_FSL_SSI
+	select SND_SOC_FSL_SAI if SOC_IMX6UL
+	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
 	help
 	  Say Y if you want to add support for SoC audio on an i.MX board with
 	  a sgtl5000 codec.
-- 
2.1.4

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-20 12:30 [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type Lothar Waßmann
@ 2016-01-28 22:33 ` Mark Brown
  2016-01-28 23:08   ` Nicolin Chen
  2016-01-29  5:59   ` Lothar Waßmann
  0 siblings, 2 replies; 11+ messages in thread
From: Mark Brown @ 2016-01-28 22:33 UTC (permalink / raw)
  To: Lothar Waßmann
  Cc: Arnd Bergmann, Fabio Estevam, Jaroslav Kysela, Liam Girdwood,
	Nicolin Chen, Takashi Iwai, alsa-devel, linux-kernel

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

On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:

> -	select SND_SOC_FSL_SSI
> +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX

Does this card not work for older i.MXs (which had the same SSI/AUDMUX
combination as the majority of the i.MX6 family) as well?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-28 22:33 ` Mark Brown
@ 2016-01-28 23:08   ` Nicolin Chen
  2016-01-29  5:51     ` Lothar Waßmann
  2016-01-29  5:59   ` Lothar Waßmann
  1 sibling, 1 reply; 11+ messages in thread
From: Nicolin Chen @ 2016-01-28 23:08 UTC (permalink / raw)
  To: Lothar Waßmann, Mark Brown
  Cc: Arnd Bergmann, Fabio Estevam, Jaroslav Kysela, Liam Girdwood,
	Takashi Iwai, alsa-devel, linux-kernel

On Thu, Jan 28, 2016 at 11:33:52PM +0100, Mark Brown wrote:
> On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> 
> > -	select SND_SOC_FSL_SSI
> > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> 
> Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> combination as the majority of the i.MX6 family) as well?

It's widely used in older i.MXs according to their DTS files. So
it should be safer to just leave SSI over here.

And I actually doubt the feasibility of running this driver with
i.MX6UL as there might not be an AUDMUX on i.MX6UL since it does
not have SSI any more while the driver always touches the address
space of AUDMUX which may not exist on i.MX6UL.

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-28 23:08   ` Nicolin Chen
@ 2016-01-29  5:51     ` Lothar Waßmann
  2016-01-29  6:25       ` Nicolin Chen
  0 siblings, 1 reply; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-29  5:51 UTC (permalink / raw)
  To: Nicolin Chen
  Cc: Mark Brown, Arnd Bergmann, Fabio Estevam, Jaroslav Kysela,
	Liam Girdwood, Takashi Iwai, alsa-devel, linux-kernel

Hi,

On Thu, 28 Jan 2016 15:08:47 -0800 Nicolin Chen wrote:
> On Thu, Jan 28, 2016 at 11:33:52PM +0100, Mark Brown wrote:
> > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > 
> > > -	select SND_SOC_FSL_SSI
> > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > 
> > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > combination as the majority of the i.MX6 family) as well?
> 
> It's widely used in older i.MXs according to their DTS files. So
> it should be safer to just leave SSI over here.
> 
Nothing prevents you to enable the SSI driver on any i.MX6 module.
The only change I made is to select the SAI driver instead of the SSI
driver on i.MX6UL because the i.MX6UL does not have an SSI unit!

> And I actually doubt the feasibility of running this driver with
> i.MX6UL as there might not be an AUDMUX on i.MX6UL since it does
> not have SSI any more while the driver always touches the address
> space of AUDMUX which may not exist on i.MX6UL.
>
#define this driver
The FSL_SAI driver does not touch the audmux address space in any way.
The simple-card audio driver works perfectly well with the FSL_SAI
driver on i.MX6UL.


Lothar Waßmann

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-28 22:33 ` Mark Brown
  2016-01-28 23:08   ` Nicolin Chen
@ 2016-01-29  5:59   ` Lothar Waßmann
  2016-01-29  6:30     ` Nicolin Chen
  2016-01-29 11:16     ` Mark Brown
  1 sibling, 2 replies; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-29  5:59 UTC (permalink / raw)
  To: Mark Brown
  Cc: Arnd Bergmann, Fabio Estevam, Jaroslav Kysela, Liam Girdwood,
	Nicolin Chen, Takashi Iwai, alsa-devel, linux-kernel

Hi,

On Thu, 28 Jan 2016 23:33:52 +0100 Mark Brown wrote:
> On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> 
> > -	select SND_SOC_FSL_SSI
> > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> 
> Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> combination as the majority of the i.MX6 family) as well?
>
Our baseboard contains an SGTL5000 codec which is working with
i.MX25, i.MX27, i.MX5, i.MX6Q, i.MX6DL with the fsl_ssi and imx-sgtl5000
+ imx-audmux driver, on i.MX28 with the mxs-saif and mxs-sgtl5000 driver
and on i.MX6UL with the fsl_sai + simple-card driver.


Lothar Waßmann

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-29  5:51     ` Lothar Waßmann
@ 2016-01-29  6:25       ` Nicolin Chen
  2016-01-29 11:33         ` Lothar Waßmann
  0 siblings, 1 reply; 11+ messages in thread
From: Nicolin Chen @ 2016-01-29  6:25 UTC (permalink / raw)
  To: Lothar Waßmann
  Cc: Mark Brown, Arnd Bergmann, Fabio Estevam, Jaroslav Kysela,
	Liam Girdwood, Takashi Iwai, alsa-devel, linux-kernel

On Fri, Jan 29, 2016 at 06:51:33AM +0100, Lothar Waßmann wrote:
> Hi,
> 
> On Thu, 28 Jan 2016 15:08:47 -0800 Nicolin Chen wrote:
> > On Thu, Jan 28, 2016 at 11:33:52PM +0100, Mark Brown wrote:
> > > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > > 
> > > > -	select SND_SOC_FSL_SSI
> > > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > > 
> > > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > > combination as the majority of the i.MX6 family) as well?
> > 
> > It's widely used in older i.MXs according to their DTS files. So
> > it should be safer to just leave SSI over here.
> > 
> Nothing prevents you to enable the SSI driver on any i.MX6 module.

What about i.MX2, 3 and 5 series? Will they still be able to enable
SSI without changing .config file as usual?

> The only change I made is to select the SAI driver instead of the SSI
> driver on i.MX6UL because the i.MX6UL does not have an SSI unit!
> 
> > And I actually doubt the feasibility of running this driver with
> > i.MX6UL as there might not be an AUDMUX on i.MX6UL since it does
> > not have SSI any more while the driver always touches the address
> > space of AUDMUX which may not exist on i.MX6UL.
> >
> #define this driver

Your change is applied to "SND_SOC_IMX_SGTL5000" whose corresponding
driver is the imx-sgtl5000.c file.

> The FSL_SAI driver does not touch the audmux address space in any way.

This imx-sgtl5000 driver does access AUDMUX registers. And I thought
you tried to use this one which made me very confused.

> The simple-card audio driver works perfectly well with the FSL_SAI
> driver on i.MX6UL.

It seems like you are using simple-card while letting the other driver
(imx-sgtl5000) select SAI for you. It doesn't sound so right to me.

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-29  5:59   ` Lothar Waßmann
@ 2016-01-29  6:30     ` Nicolin Chen
  2016-01-29  9:43         ` Lothar Waßmann
  2016-01-29 11:16     ` Mark Brown
  1 sibling, 1 reply; 11+ messages in thread
From: Nicolin Chen @ 2016-01-29  6:30 UTC (permalink / raw)
  To: Lothar Waßmann
  Cc: Mark Brown, Arnd Bergmann, Fabio Estevam, Jaroslav Kysela,
	Liam Girdwood, Takashi Iwai, alsa-devel, linux-kernel

On Fri, Jan 29, 2016 at 06:59:38AM +0100, Lothar Waßmann wrote:
> Hi,
> 
> On Thu, 28 Jan 2016 23:33:52 +0100 Mark Brown wrote:
> > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > 
> > > -	select SND_SOC_FSL_SSI
> > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > 
> > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > combination as the majority of the i.MX6 family) as well?
> >
> Our baseboard contains an SGTL5000 codec which is working with
> i.MX25, i.MX27, i.MX5, i.MX6Q, i.MX6DL with the fsl_ssi and imx-sgtl5000
> + imx-audmux driver, on i.MX28 with the mxs-saif and mxs-sgtl5000 driver
> and on i.MX6UL with the fsl_sai + simple-card driver.

Have you tried fsl-asoc-card to connect SSI/SAI with sgtl5000? If it
works for you directly, I believe things should be easier for you
instead of dealing with Kconfig.

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-29  6:30     ` Nicolin Chen
@ 2016-01-29  9:43         ` Lothar Waßmann
  0 siblings, 0 replies; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-29  9:43 UTC (permalink / raw)
  To: Nicolin Chen
  Cc: Mark Brown, Arnd Bergmann, Fabio Estevam, Jaroslav Kysela,
	Liam Girdwood, Takashi Iwai, alsa-devel, linux-kernel

Hi,

On Thu, 28 Jan 2016 22:30:13 -0800 Nicolin Chen wrote:
> On Fri, Jan 29, 2016 at 06:59:38AM +0100, Lothar Waßmann wrote:
> > Hi,
> > 
> > On Thu, 28 Jan 2016 23:33:52 +0100 Mark Brown wrote:
> > > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > > 
> > > > -	select SND_SOC_FSL_SSI
> > > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > > 
> > > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > > combination as the majority of the i.MX6 family) as well?
> > >
> > Our baseboard contains an SGTL5000 codec which is working with
> > i.MX25, i.MX27, i.MX5, i.MX6Q, i.MX6DL with the fsl_ssi and imx-sgtl5000
> > + imx-audmux driver, on i.MX28 with the mxs-saif and mxs-sgtl5000 driver
> > and on i.MX6UL with the fsl_sai + simple-card driver.
> 
> Have you tried fsl-asoc-card to connect SSI/SAI with sgtl5000? If it
> works for you directly, I believe things should be easier for you
> instead of dealing with Kconfig.
>
My patch simply selects the FSL_SAI instead of the FSL_SSI interface for
i.MX6UL since the latter is NOT AVAILABLE on i.MX6UL and thus it doesn't
make any sense to select it on this SoC.

But maybe the select statements should be removed altogether since they
are a case of the frowned-upon "select for user visible symbols".


Lothar Waßmann

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
@ 2016-01-29  9:43         ` Lothar Waßmann
  0 siblings, 0 replies; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-29  9:43 UTC (permalink / raw)
  To: Nicolin Chen
  Cc: Fabio Estevam, alsa-devel, Arnd Bergmann, linux-kernel,
	Takashi Iwai, Liam Girdwood, Mark Brown

Hi,

On Thu, 28 Jan 2016 22:30:13 -0800 Nicolin Chen wrote:
> On Fri, Jan 29, 2016 at 06:59:38AM +0100, Lothar Waßmann wrote:
> > Hi,
> > 
> > On Thu, 28 Jan 2016 23:33:52 +0100 Mark Brown wrote:
> > > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > > 
> > > > -	select SND_SOC_FSL_SSI
> > > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > > 
> > > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > > combination as the majority of the i.MX6 family) as well?
> > >
> > Our baseboard contains an SGTL5000 codec which is working with
> > i.MX25, i.MX27, i.MX5, i.MX6Q, i.MX6DL with the fsl_ssi and imx-sgtl5000
> > + imx-audmux driver, on i.MX28 with the mxs-saif and mxs-sgtl5000 driver
> > and on i.MX6UL with the fsl_sai + simple-card driver.
> 
> Have you tried fsl-asoc-card to connect SSI/SAI with sgtl5000? If it
> works for you directly, I believe things should be easier for you
> instead of dealing with Kconfig.
>
My patch simply selects the FSL_SAI instead of the FSL_SSI interface for
i.MX6UL since the latter is NOT AVAILABLE on i.MX6UL and thus it doesn't
make any sense to select it on this SoC.

But maybe the select statements should be removed altogether since they
are a case of the frowned-upon "select for user visible symbols".


Lothar Waßmann
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-29  5:59   ` Lothar Waßmann
  2016-01-29  6:30     ` Nicolin Chen
@ 2016-01-29 11:16     ` Mark Brown
  1 sibling, 0 replies; 11+ messages in thread
From: Mark Brown @ 2016-01-29 11:16 UTC (permalink / raw)
  To: Lothar Waßmann
  Cc: Arnd Bergmann, Fabio Estevam, Jaroslav Kysela, Liam Girdwood,
	Nicolin Chen, Takashi Iwai, alsa-devel, linux-kernel

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

On Fri, Jan 29, 2016 at 06:59:38AM +0100, Lothar Waßmann wrote:
> On Thu, 28 Jan 2016 23:33:52 +0100 Mark Brown wrote:
> > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:

> > > -	select SND_SOC_FSL_SSI
> > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX

> > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > combination as the majority of the i.MX6 family) as well?

> Our baseboard contains an SGTL5000 codec which is working with
> i.MX25, i.MX27, i.MX5, i.MX6Q, i.MX6DL with the fsl_ssi and imx-sgtl5000
> + imx-audmux driver, on i.MX28 with the mxs-saif and mxs-sgtl5000 driver
> and on i.MX6UL with the fsl_sai + simple-card driver.

That's your base board but that doesn't really help other users who may
be using this driver (and even for your system I'm not clear how
any configuration without an i.MX6 will enable a CPU DAI driver with
this change).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type
  2016-01-29  6:25       ` Nicolin Chen
@ 2016-01-29 11:33         ` Lothar Waßmann
  0 siblings, 0 replies; 11+ messages in thread
From: Lothar Waßmann @ 2016-01-29 11:33 UTC (permalink / raw)
  To: Nicolin Chen
  Cc: Mark Brown, Arnd Bergmann, Fabio Estevam, Jaroslav Kysela,
	Liam Girdwood, Takashi Iwai, alsa-devel, linux-kernel

Hi,

On Thu, 28 Jan 2016 22:25:30 -0800 Nicolin Chen wrote:
> On Fri, Jan 29, 2016 at 06:51:33AM +0100, Lothar Waßmann wrote:
> > Hi,
> > 
> > On Thu, 28 Jan 2016 15:08:47 -0800 Nicolin Chen wrote:
> > > On Thu, Jan 28, 2016 at 11:33:52PM +0100, Mark Brown wrote:
> > > > On Wed, Jan 20, 2016 at 01:30:38PM +0100, Lothar Waßmann wrote:
> > > > 
> > > > > -	select SND_SOC_FSL_SSI
> > > > > +	select SND_SOC_FSL_SAI if SOC_IMX6UL
> > > > > +	select SND_SOC_FSL_SSI if SOC_IMX6Q || SOC_IMX6SL || SOC_IMX6SX
> > > > 
> > > > Does this card not work for older i.MXs (which had the same SSI/AUDMUX
> > > > combination as the majority of the i.MX6 family) as well?
> > > 
> > > It's widely used in older i.MXs according to their DTS files. So
> > > it should be safer to just leave SSI over here.
> > > 
> > Nothing prevents you to enable the SSI driver on any i.MX6 module.
> 
> What about i.MX2, 3 and 5 series? Will they still be able to enable
> SSI without changing .config file as usual?
> 
> > The only change I made is to select the SAI driver instead of the SSI
> > driver on i.MX6UL because the i.MX6UL does not have an SSI unit!
> > 
> > > And I actually doubt the feasibility of running this driver with
> > > i.MX6UL as there might not be an AUDMUX on i.MX6UL since it does
> > > not have SSI any more while the driver always touches the address
> > > space of AUDMUX which may not exist on i.MX6UL.
> > >
> > #define this driver
> 
> Your change is applied to "SND_SOC_IMX_SGTL5000" whose corresponding
> driver is the imx-sgtl5000.c file.
> 
> > The FSL_SAI driver does not touch the audmux address space in any way.
> 
> This imx-sgtl5000 driver does access AUDMUX registers. And I thought
> you tried to use this one which made me very confused.
> 
That change is obsolete, because as Mark Brown suggested, the
simple-card driver works perfectly well.

> > The simple-card audio driver works perfectly well with the FSL_SAI
> > driver on i.MX6UL.
> 
> It seems like you are using simple-card while letting the other driver
> (imx-sgtl5000) select SAI for you. It doesn't sound so right to me.
>
That was before I found out that the simple-card driver works.


Lothar Waßmann

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

end of thread, other threads:[~2016-01-29 11:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-20 12:30 [PATCH] ASoC: fsl: select SND_SOC_FSL_SAI or SND_SOC_FSL_SSI depending on SoC type Lothar Waßmann
2016-01-28 22:33 ` Mark Brown
2016-01-28 23:08   ` Nicolin Chen
2016-01-29  5:51     ` Lothar Waßmann
2016-01-29  6:25       ` Nicolin Chen
2016-01-29 11:33         ` Lothar Waßmann
2016-01-29  5:59   ` Lothar Waßmann
2016-01-29  6:30     ` Nicolin Chen
2016-01-29  9:43       ` Lothar Waßmann
2016-01-29  9:43         ` Lothar Waßmann
2016-01-29 11:16     ` Mark Brown

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.