All of lore.kernel.org
 help / color / mirror / Atom feed
* [rtc-linux] [PATCH] rtc: sunxi: use external oscillator
@ 2016-07-06  8:43 Stephan Roslen
  2016-07-06 20:20 ` [rtc-linux] " Maxime Ripard
  0 siblings, 1 reply; 8+ messages in thread
From: Stephan Roslen @ 2016-07-06  8:43 UTC (permalink / raw)
  To: a.zummo, alexandre.belloni, maxime.ripard, wens, rtc-linux

We noticed some serious drift problems in Allwinner A20 RTCs. I found out, that the oscillator source needs to be set to an external 32.768 KHz oscillator instead of the internal 32.000 KHz oscillator.

Signed-off-by: Stephan Roslen <stephan@roslen.de>
---
 drivers/rtc/rtc-sunxi.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/drivers/rtc/rtc-sunxi.c b/drivers/rtc/rtc-sunxi.c
index abada60..001256e 100644
--- a/drivers/rtc/rtc-sunxi.c
+++ b/drivers/rtc/rtc-sunxi.c
@@ -34,9 +34,19 @@
 #include <linux/types.h>
 
 #define SUNXI_LOSC_CTRL				0x0000
+
+/* magic number required to set bit 0 */
+#define SUNXI_LOSC_CTRL_KEY			0x16AA0000
+
+#define SUNXI_LOSC_CTRL_AUTO_SWT_EN		BIT(14)
+
 #define SUNXI_LOSC_CTRL_RTC_HMS_ACC		BIT(8)
 #define SUNXI_LOSC_CTRL_RTC_YMD_ACC		BIT(7)
 
+#define SUNXI_LOSC_CTRL_EXT_GSM1		BIT(3)
+#define SUNXI_LOSC_CTRL_EXT_GSM0		BIT(2)
+#define SUNXI_LOSC_CTRL_SRC_SEL			BIT(0)
+
 #define SUNXI_RTC_YMD				0x0004
 
 #define SUNXI_RTC_HMS				0x0008
@@ -438,6 +448,8 @@ static int sunxi_rtc_probe(struct platform_device *pdev)
 	struct resource *res;
 	int ret;
 
+	uint32_t loscctrl;
+
 	chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
 	if (!chip)
 		return -ENOMEM;
@@ -468,6 +480,19 @@ static int sunxi_rtc_probe(struct platform_device *pdev)
 		return -ENODEV;
 	}
 
+	loscctrl = readl(chip->base + SUNXI_LOSC_CTRL);
+	loscctrl &= ~(SUNXI_LOSC_CTRL_AUTO_SWT_EN);
+	loscctrl |= (SUNXI_LOSC_CTRL_SRC_SEL | SUNXI_LOSC_CTRL_KEY);
+	loscctrl |= SUNXI_LOSC_CTRL_EXT_GSM1;
+	writel(loscctrl, chip->base + SUNXI_LOSC_CTRL);
+	udelay(100);
+
+	loscctrl = readl(chip->base + SUNXI_LOSC_CTRL);
+	if (!(loscctrl & SUNXI_LOSC_CTRL_SRC_SEL)) {
+		dev_err(&pdev->dev, "Error: Set LOSC to external failed.\n");
+		dev_err(&pdev->dev, "Warning: RTC time will be wrong!\n");
+	}
+
 	/* clear the alarm count value */
 	writel(0, chip->base + SUNXI_ALRM_DHMS);
 
-- 
2.7.4

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-06  8:43 [rtc-linux] [PATCH] rtc: sunxi: use external oscillator Stephan Roslen
@ 2016-07-06 20:20 ` Maxime Ripard
  2016-07-07  4:50   ` Stephan Roslen
  0 siblings, 1 reply; 8+ messages in thread
From: Maxime Ripard @ 2016-07-06 20:20 UTC (permalink / raw)
  To: Stephan Roslen; +Cc: a.zummo, alexandre.belloni, wens, rtc-linux

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

On Wed, Jul 06, 2016 at 10:43:00AM +0200, Stephan Roslen wrote:
> We noticed some serious drift problems in Allwinner A20 RTCs. I
> found out, that the oscillator source needs to be set to an external
> 32.768 KHz oscillator instead of the internal 32.000 KHz oscillator.

You should wrap the commit description.

> 
> Signed-off-by: Stephan Roslen <stephan@roslen.de>
> ---
>  drivers/rtc/rtc-sunxi.c | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/drivers/rtc/rtc-sunxi.c b/drivers/rtc/rtc-sunxi.c
> index abada60..001256e 100644
> --- a/drivers/rtc/rtc-sunxi.c
> +++ b/drivers/rtc/rtc-sunxi.c
> @@ -34,9 +34,19 @@
>  #include <linux/types.h>
>  
>  #define SUNXI_LOSC_CTRL				0x0000
> +
> +/* magic number required to set bit 0 */
> +#define SUNXI_LOSC_CTRL_KEY			0x16AA0000
> +
> +#define SUNXI_LOSC_CTRL_AUTO_SWT_EN		BIT(14)
> +
>  #define SUNXI_LOSC_CTRL_RTC_HMS_ACC		BIT(8)
>  #define SUNXI_LOSC_CTRL_RTC_YMD_ACC		BIT(7)
>  
> +#define SUNXI_LOSC_CTRL_EXT_GSM1		BIT(3)
> +#define SUNXI_LOSC_CTRL_EXT_GSM0		BIT(2)
> +#define SUNXI_LOSC_CTRL_SRC_SEL			BIT(0)
> +
>  #define SUNXI_RTC_YMD				0x0004
>  
>  #define SUNXI_RTC_HMS				0x0008
> @@ -438,6 +448,8 @@ static int sunxi_rtc_probe(struct platform_device *pdev)
>  	struct resource *res;
>  	int ret;
>  
> +	uint32_t loscctrl;
> +
>  	chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
>  	if (!chip)
>  		return -ENOMEM;
> @@ -468,6 +480,19 @@ static int sunxi_rtc_probe(struct platform_device *pdev)
>  		return -ENODEV;
>  	}
>  
> +	loscctrl = readl(chip->base + SUNXI_LOSC_CTRL);
> +	loscctrl &= ~(SUNXI_LOSC_CTRL_AUTO_SWT_EN);
> +	loscctrl |= (SUNXI_LOSC_CTRL_SRC_SEL | SUNXI_LOSC_CTRL_KEY);
> +	loscctrl |= SUNXI_LOSC_CTRL_EXT_GSM1;
> +	writel(loscctrl, chip->base + SUNXI_LOSC_CTRL);
> +	udelay(100);

Why is that udelay needed?

> +
> +	loscctrl = readl(chip->base + SUNXI_LOSC_CTRL);
> +	if (!(loscctrl & SUNXI_LOSC_CTRL_SRC_SEL)) {
> +		dev_err(&pdev->dev, "Error: Set LOSC to external failed.\n");
> +		dev_err(&pdev->dev, "Warning: RTC time will be wrong!\n");
> +	}
> +

This isn't needed

The issue is actually worse than that.

That register controls the losc source for the whole clock tree, so it
will affect every clock in the system.

In order to have that correctly propagated, you should register a new
mux here in the clock framework, and have all the other clocks using
that mux as a parent.

That's going to be tricky, because the clocks usually probe way
earlier than the RTC driver. So I'm guessing you could do a clock
driver that maps the registers, register its clock, and then when the
RTC probes just takes over what has been setup already by the clock
driver. This also means removing the ability for the RTC to be
compiled as a module.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-06 20:20 ` [rtc-linux] " Maxime Ripard
@ 2016-07-07  4:50   ` Stephan Roslen
  2016-07-07  4:53     ` Chen-Yu Tsai
  2016-07-07  5:11     ` Stephan Roslen
  0 siblings, 2 replies; 8+ messages in thread
From: Stephan Roslen @ 2016-07-07  4:50 UTC (permalink / raw)
  To: Maxime Ripard; +Cc: a.zummo, alexandre.belloni, wens, rtc-linux

On 06.07.2016 22:20, Maxime Ripard wrote:
> On Wed, Jul 06, 2016 at 10:43:00AM +0200, Stephan Roslen wrote:
>> +	writel(loscctrl, chip->base + SUNXI_LOSC_CTRL);
>> +	udelay(100);
>=20
> Why is that udelay needed?

I found that studying the sunxi 3.4 kernel code and considered it a necessa=
ry delay for the hardware setup and update SUNXI_LOSC_CTRL_SRC_SEL bit. My =
assumption was wrong, it seems. At least a few reboots show, that it is lik=
ely to work without.

>=20
>> +
>> +	loscctrl =3D readl(chip->base + SUNXI_LOSC_CTRL);
>> +	if (!(loscctrl & SUNXI_LOSC_CTRL_SRC_SEL)) {
>> +		dev_err(&pdev->dev, "Error: Set LOSC to external failed.\n");
>> +		dev_err(&pdev->dev, "Warning: RTC time will be wrong!\n");
>> +	}
>> +
>=20
> This isn't needed
>=20
> The issue is actually worse than that.
>=20
> That register controls the losc source for the whole clock tree, so it
> will affect every clock in the system.
>=20
> In order to have that correctly propagated, you should register a new
> mux here in the clock framework, and have all the other clocks using
> that mux as a parent.

I agree. Checking the diagram in subsection 1.5.2 of the A20 manual it seem=
s, that LOSC can be a source for clocks like CPU and some SoC busses. So my=
 patch could indeed mess with the whole clock tree.

>=20
> That's going to be tricky, because the clocks usually probe way
> earlier than the RTC driver. So I'm guessing you could do a clock
> driver that maps the registers, register its clock, and then when the
> RTC probes just takes over what has been setup already by the clock
> driver. This also means removing the ability for the RTC to be
> compiled as a module.

I agree again. Though I think, the RTC should still work as a module. The C=
LK driver could provide the regmap MFD style and the RTC driver may access =
it. Or rather the CLK driver should use an MFD, that is provided early, too=
. Eventually even a syscon? Actually the whole bunch described in subsectio=
n 1.9 (including timers, arlarms, rtc and even the watchdog) would have to =
rely on that MFD. Do I miss a point?

Stephan

--=20
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---=20
You received this message because you are subscribed to the Google Groups "=
rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-07  4:50   ` Stephan Roslen
@ 2016-07-07  4:53     ` Chen-Yu Tsai
  2016-07-07  6:12       ` Stephan Roslen
  2016-07-07  6:42       ` Maxime Ripard
  2016-07-07  5:11     ` Stephan Roslen
  1 sibling, 2 replies; 8+ messages in thread
From: Chen-Yu Tsai @ 2016-07-07  4:53 UTC (permalink / raw)
  To: Stephan Roslen
  Cc: Maxime Ripard, Alessandro Zummo, Alexandre Belloni, Chen-Yu Tsai,
	rtc-linux

On Thu, Jul 7, 2016 at 12:50 PM, Stephan Roslen <stephan@roslen.de> wrote:
> On 06.07.2016 22:20, Maxime Ripard wrote:
>> On Wed, Jul 06, 2016 at 10:43:00AM +0200, Stephan Roslen wrote:
>>> +    writel(loscctrl, chip->base + SUNXI_LOSC_CTRL);
>>> +    udelay(100);
>>
>> Why is that udelay needed?
>
> I found that studying the sunxi 3.4 kernel code and considered it a neces=
sary delay for the hardware setup and update SUNXI_LOSC_CTRL_SRC_SEL bit. M=
y assumption was wrong, it seems. At least a few reboots show, that it is l=
ikely to work without.
>
>>
>>> +
>>> +    loscctrl =3D readl(chip->base + SUNXI_LOSC_CTRL);
>>> +    if (!(loscctrl & SUNXI_LOSC_CTRL_SRC_SEL)) {
>>> +            dev_err(&pdev->dev, "Error: Set LOSC to external failed.\n=
");
>>> +            dev_err(&pdev->dev, "Warning: RTC time will be wrong!\n");
>>> +    }
>>> +
>>
>> This isn't needed
>>
>> The issue is actually worse than that.
>>
>> That register controls the losc source for the whole clock tree, so it
>> will affect every clock in the system.
>>
>> In order to have that correctly propagated, you should register a new
>> mux here in the clock framework, and have all the other clocks using
>> that mux as a parent.
>
> I agree. Checking the diagram in subsection 1.5.2 of the A20 manual it se=
ems, that LOSC can be a source for clocks like CPU and some SoC busses. So =
my patch could indeed mess with the whole clock tree.

(Please wrap your email)

Within the current sunxi clk structure, the LOSC is registered as a fixed
32.768 KHz clk. So this patch actually makes things right.

ChenYu

>
>>
>> That's going to be tricky, because the clocks usually probe way
>> earlier than the RTC driver. So I'm guessing you could do a clock
>> driver that maps the registers, register its clock, and then when the
>> RTC probes just takes over what has been setup already by the clock
>> driver. This also means removing the ability for the RTC to be
>> compiled as a module.
>
> I agree again. Though I think, the RTC should still work as a module. The=
 CLK driver could provide the regmap MFD style and the RTC driver may acces=
s it. Or rather the CLK driver should use an MFD, that is provided early, t=
oo. Eventually even a syscon? Actually the whole bunch described in subsect=
ion 1.9 (including timers, arlarms, rtc and even the watchdog) would have t=
o rely on that MFD. Do I miss a point?
>
> Stephan

--=20
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---=20
You received this message because you are subscribed to the Google Groups "=
rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-07  4:50   ` Stephan Roslen
  2016-07-07  4:53     ` Chen-Yu Tsai
@ 2016-07-07  5:11     ` Stephan Roslen
  1 sibling, 0 replies; 8+ messages in thread
From: Stephan Roslen @ 2016-07-07  5:11 UTC (permalink / raw)
  To: Maxime Ripard; +Cc: a.zummo, alexandre.belloni, wens, rtc-linux



On 07.07.2016 06:50, Stephan Roslen wrote:
> On 06.07.2016 22:20, Maxime Ripard wrote:
>> The issue is actually worse than that.
>>
>> That register controls the losc source for the whole clock tree, so it
>> will affect every clock in the system.
>>
>> In order to have that correctly propagated, you should register a new
>> mux here in the clock framework, and have all the other clocks using
>> that mux as a parent.
>=20
> I agree. Checking the diagram in subsection 1.5.2 of the A20 manual it se=
ems, that LOSC can be a source for clocks like CPU and some SoC busses. So =
my patch could indeed mess with the whole clock tree.

Sorry for the addition. The mess of course is not that huge, for the mux se=
lects between a 32KHz Oscillator with +- 20% tolerance, thus ranging from 2=
5.6 to 38.4 KHz and the 32.768KHz external oscillator. Hence muxing to 32.7=
68KHz should be no problem for any clk, that was fine with the internal osc=
illator as clk source. Though still you're absolutely right, that this shou=
ld be handled in code correctly.

Stephan

--=20
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---=20
You received this message because you are subscribed to the Google Groups "=
rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-07  4:53     ` Chen-Yu Tsai
@ 2016-07-07  6:12       ` Stephan Roslen
  2016-07-07  7:08         ` Maxime Ripard
  2016-07-07  6:42       ` Maxime Ripard
  1 sibling, 1 reply; 8+ messages in thread
From: Stephan Roslen @ 2016-07-07  6:12 UTC (permalink / raw)
  To: Chen-Yu Tsai
  Cc: Maxime Ripard, Alessandro Zummo, Alexandre Belloni, rtc-linux



On 07.07.2016 06:53, Chen-Yu Tsai wrote:
> On Thu, Jul 7, 2016 at 12:50 PM, Stephan Roslen <stephan@roslen.de> wrote:
>> I agree. Checking the diagram in subsection 1.5.2 of the A20 manual it seems, that LOSC can be a source for clocks like CPU and some SoC busses. So my patch could indeed mess with the whole clock tree.
> 
> (Please wrap your email)

Sorry.

> 
> Within the current sunxi clk structure, the LOSC is registered as a fixed
> 32.768 KHz clk. So this patch actually makes things right.

In this case it should still be addressed somewhere in drivers/clk/sunxi, not 
in drivers/rtc, I guess? Would you prefer setting the external 32.768 KHz crystal
as hard coded default instead of providing the muxer? It could be considered okay,
for the data sheet seems to demand presence of the external oscillator and there
is absolutely no use in a 32KHz +- 20% oscillator, if a 32.768KHz crystal is
available.

Stephan

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-07  4:53     ` Chen-Yu Tsai
  2016-07-07  6:12       ` Stephan Roslen
@ 2016-07-07  6:42       ` Maxime Ripard
  1 sibling, 0 replies; 8+ messages in thread
From: Maxime Ripard @ 2016-07-07  6:42 UTC (permalink / raw)
  To: Chen-Yu Tsai
  Cc: Stephan Roslen, Alessandro Zummo, Alexandre Belloni, rtc-linux

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

On Thu, Jul 07, 2016 at 12:53:29PM +0800, Chen-Yu Tsai wrote:
> >> In order to have that correctly propagated, you should register a new
> >> mux here in the clock framework, and have all the other clocks using
> >> that mux as a parent.
> >
> > I agree. Checking the diagram in subsection 1.5.2 of the A20
> > manual it seems, that LOSC can be a source for clocks like CPU and
> > some SoC busses. So my patch could indeed mess with the whole
> > clock tree.
> 
> Within the current sunxi clk structure, the LOSC is registered as a fixed
> 32.768 KHz clk. So this patch actually makes things right.

On the condition that the driver gets loaded, which is not guaranteed.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* [rtc-linux] Re: [PATCH] rtc: sunxi: use external oscillator
  2016-07-07  6:12       ` Stephan Roslen
@ 2016-07-07  7:08         ` Maxime Ripard
  0 siblings, 0 replies; 8+ messages in thread
From: Maxime Ripard @ 2016-07-07  7:08 UTC (permalink / raw)
  To: Stephan Roslen
  Cc: Chen-Yu Tsai, Alessandro Zummo, Alexandre Belloni, rtc-linux

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

On Thu, Jul 07, 2016 at 08:12:09AM +0200, Stephan Roslen wrote:
> > Within the current sunxi clk structure, the LOSC is registered as a fixed
> > 32.768 KHz clk. So this patch actually makes things right.
> 
> In this case it should still be addressed somewhere in drivers/clk/sunxi, not 
> in drivers/rtc, I guess? Would you prefer setting the external 32.768 KHz crystal
> as hard coded default instead of providing the muxer? It could be considered okay,
> for the data sheet seems to demand presence of the external oscillator and there
> is absolutely no use in a 32KHz +- 20% oscillator, if a 32.768KHz crystal is
> available.

Yes, poking into the registers in drivers/clk would also work.

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

end of thread, other threads:[~2016-07-07  7:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-06  8:43 [rtc-linux] [PATCH] rtc: sunxi: use external oscillator Stephan Roslen
2016-07-06 20:20 ` [rtc-linux] " Maxime Ripard
2016-07-07  4:50   ` Stephan Roslen
2016-07-07  4:53     ` Chen-Yu Tsai
2016-07-07  6:12       ` Stephan Roslen
2016-07-07  7:08         ` Maxime Ripard
2016-07-07  6:42       ` Maxime Ripard
2016-07-07  5:11     ` Stephan Roslen

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.