* [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
@ 2012-11-30 17:48 Marek Vasut
[not found] ` <1354297715-12201-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2012-11-30 17:48 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA
Cc: Marek Vasut, Fabio Estevam, Shawn Guo, Wolfram Sang
This patch drops the i2c timing tables from this driver and instead
derives the timing based from the requested clock sleep. The timing
tables were completely wrong anyway when observed on a scope.
This new algorithm is also only derived by using a scope, but it seems
to produce much more accurate result.
Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
Cc: Fabio Estevam <fabio.estevam-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
drivers/i2c/busses/i2c-mxs.c | 94 ++++++++++++++++++++++++------------------
1 file changed, 55 insertions(+), 39 deletions(-)
NOTE: Can someone please test if this patch works for them as well?
I tested this on DENX M28EVK and Freescale MX28EVK.
diff --git a/drivers/i2c/busses/i2c-mxs.c b/drivers/i2c/busses/i2c-mxs.c
index 9048f34..ad28a7b 100644
--- a/drivers/i2c/busses/i2c-mxs.c
+++ b/drivers/i2c/busses/i2c-mxs.c
@@ -93,35 +93,6 @@
#define MXS_CMD_I2C_READ (MXS_I2C_CTRL0_SEND_NAK_ON_LAST | \
MXS_I2C_CTRL0_MASTER_MODE)
-struct mxs_i2c_speed_config {
- uint32_t timing0;
- uint32_t timing1;
- uint32_t timing2;
-};
-
-/*
- * Timing values for the default 24MHz clock supplied into the i2c block.
- *
- * The bus can operate at 95kHz or at 400kHz with the following timing
- * register configurations. The 100kHz mode isn't present because it's
- * values are not stated in the i.MX233/i.MX28 datasheet. The 95kHz mode
- * shall be close enough replacement. Therefore when the bus is configured
- * for 100kHz operation, 95kHz timing settings are actually loaded.
- *
- * For details, see i.MX233 [25.4.2 - 25.4.4] and i.MX28 [27.5.2 - 27.5.4].
- */
-static const struct mxs_i2c_speed_config mxs_i2c_95kHz_config = {
- .timing0 = 0x00780030,
- .timing1 = 0x00800030,
- .timing2 = 0x00300030,
-};
-
-static const struct mxs_i2c_speed_config mxs_i2c_400kHz_config = {
- .timing0 = 0x000f0007,
- .timing1 = 0x001f000f,
- .timing2 = 0x00300030,
-};
-
/**
* struct mxs_i2c_dev - per device, private MXS-I2C data
*
@@ -137,7 +108,9 @@ struct mxs_i2c_dev {
struct completion cmd_complete;
u32 cmd_err;
struct i2c_adapter adapter;
- const struct mxs_i2c_speed_config *speed;
+
+ uint32_t timing0;
+ uint32_t timing1;
/* DMA support components */
int dma_channel;
@@ -153,9 +126,16 @@ static void mxs_i2c_reset(struct mxs_i2c_dev *i2c)
{
stmp_reset_block(i2c->regs);
- writel(i2c->speed->timing0, i2c->regs + MXS_I2C_TIMING0);
- writel(i2c->speed->timing1, i2c->regs + MXS_I2C_TIMING1);
- writel(i2c->speed->timing2, i2c->regs + MXS_I2C_TIMING2);
+ /*
+ * Configure timing for the I2C block. The I2C TIMING2 register has to
+ * be programmed with this particular magic number. The rest is derived
+ * from the XTAL speed and requested I2C speed.
+ *
+ * For details, see i.MX233 [25.4.2 - 25.4.4] and i.MX28 [27.5.2 - 27.5.4].
+ */
+ writel(i2c->timing0, i2c->regs + MXS_I2C_TIMING0);
+ writel(i2c->timing1, i2c->regs + MXS_I2C_TIMING1);
+ writel(0x00300030, i2c->regs + MXS_I2C_TIMING2);
writel(MXS_I2C_IRQ_MASK << 8, i2c->regs + MXS_I2C_CTRL1_SET);
}
@@ -540,6 +520,43 @@ static bool mxs_i2c_dma_filter(struct dma_chan *chan, void *param)
return true;
}
+static void mxs_i2c_derive_timing(struct mxs_i2c_dev *i2c, int speed)
+{
+ /* The I2C block clock run at 24MHz */
+ const uint32_t clk = 24000000;
+ uint32_t base;
+ uint16_t high_count, low_count, rcv_count, xmit_count;
+ struct device *dev = i2c->dev;
+
+ if (speed > 540000) {
+ dev_err(dev, "Speed too high (%d Hz), using 540 kHz\n", speed);
+ speed = 540000;
+ } else if (speed < 12000) {
+ dev_err(dev, "Speed too low (%d Hz), using 12 kHz\n", speed);
+ speed = 12000;
+ }
+
+ /*
+ * The timing derivation algorithm. There is no documentation for this
+ * algorithm available, it was derived by using the scope and fiddling
+ * with constants until the result observed on the scope was good enough
+ * for 20kHz, 50kHz, 100kHz, 200kHz, 300kHz and 400kHz. It should be
+ * possible to assume the algorithm works for other frequencies as well.
+ *
+ * Note it was necessary to cap the frequency on both ends as it's not
+ * possible to configure completely arbitrary frequency for the I2C bus
+ * clock.
+ */
+ base = ((clk / speed) - 38) / 2;
+ high_count = base + 3;
+ low_count = base - 3;
+ rcv_count = (high_count * 3) / 4;
+ xmit_count = low_count / 4;
+
+ i2c->timing0 = (high_count << 16) | rcv_count;
+ i2c->timing1 = (low_count << 16) | xmit_count;
+}
+
static int mxs_i2c_get_ofdata(struct mxs_i2c_dev *i2c)
{
uint32_t speed;
@@ -559,12 +576,12 @@ static int mxs_i2c_get_ofdata(struct mxs_i2c_dev *i2c)
}
ret = of_property_read_u32(node, "clock-frequency", &speed);
- if (ret)
+ if (ret) {
dev_warn(dev, "No I2C speed selected, using 100kHz\n");
- else if (speed == 400000)
- i2c->speed = &mxs_i2c_400kHz_config;
- else if (speed != 100000)
- dev_warn(dev, "Unsupported I2C speed selected, using 100kHz\n");
+ speed = 100000;
+ }
+
+ mxs_i2c_derive_timing(i2c, speed);
return 0;
}
@@ -608,7 +625,6 @@ static int __devinit mxs_i2c_probe(struct platform_device *pdev)
return err;
i2c->dev = dev;
- i2c->speed = &mxs_i2c_95kHz_config;
init_completion(&i2c->cmd_complete);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <1354297715-12201-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>
@ 2013-01-08 18:14 ` Marek Vasut
2013-01-24 7:25 ` Wolfram Sang
2013-02-10 13:57 ` Wolfram Sang
2 siblings, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2013-01-08 18:14 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA; +Cc: Fabio Estevam, Shawn Guo, Wolfram Sang
Dear Marek Vasut,
> This patch drops the i2c timing tables from this driver and instead
> derives the timing based from the requested clock sleep. The timing
> tables were completely wrong anyway when observed on a scope.
>
> This new algorithm is also only derived by using a scope, but it seems
> to produce much more accurate result.
>
> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
> Cc: Fabio Estevam <fabio.estevam-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Bump?
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <1354297715-12201-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>
2013-01-08 18:14 ` Marek Vasut
@ 2013-01-24 7:25 ` Wolfram Sang
[not found] ` <20130124072555.GD8364-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2013-02-10 13:57 ` Wolfram Sang
2 siblings, 1 reply; 8+ messages in thread
From: Wolfram Sang @ 2013-01-24 7:25 UTC (permalink / raw)
To: Marek Vasut; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam, Shawn Guo
Hi Marek,
On Fri, Nov 30, 2012 at 06:48:35PM +0100, Marek Vasut wrote:
> This patch drops the i2c timing tables from this driver and instead
> derives the timing based from the requested clock sleep. The timing
> tables were completely wrong anyway when observed on a scope.
>
> This new algorithm is also only derived by using a scope, but it seems
> to produce much more accurate result.
>
> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
> Cc: Fabio Estevam <fabio.estevam-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> ---
> drivers/i2c/busses/i2c-mxs.c | 94 ++++++++++++++++++++++++------------------
> 1 file changed, 55 insertions(+), 39 deletions(-)
>
> NOTE: Can someone please test if this patch works for them as well?
> I tested this on DENX M28EVK and Freescale MX28EVK.
Second call for testers.
>
> diff --git a/drivers/i2c/busses/i2c-mxs.c b/drivers/i2c/busses/i2c-mxs.c
> index 9048f34..ad28a7b 100644
> --- a/drivers/i2c/busses/i2c-mxs.c
> +++ b/drivers/i2c/busses/i2c-mxs.c
> @@ -93,35 +93,6 @@
> #define MXS_CMD_I2C_READ (MXS_I2C_CTRL0_SEND_NAK_ON_LAST | \
> MXS_I2C_CTRL0_MASTER_MODE)
>
> -struct mxs_i2c_speed_config {
> - uint32_t timing0;
> - uint32_t timing1;
> - uint32_t timing2;
> -};
> -
> -/*
> - * Timing values for the default 24MHz clock supplied into the i2c block.
> - *
> - * The bus can operate at 95kHz or at 400kHz with the following timing
> - * register configurations. The 100kHz mode isn't present because it's
> - * values are not stated in the i.MX233/i.MX28 datasheet. The 95kHz mode
> - * shall be close enough replacement. Therefore when the bus is configured
> - * for 100kHz operation, 95kHz timing settings are actually loaded.
> - *
> - * For details, see i.MX233 [25.4.2 - 25.4.4] and i.MX28 [27.5.2 - 27.5.4].
> - */
> -static const struct mxs_i2c_speed_config mxs_i2c_95kHz_config = {
> - .timing0 = 0x00780030,
> - .timing1 = 0x00800030,
> - .timing2 = 0x00300030,
> -};
> -
> -static const struct mxs_i2c_speed_config mxs_i2c_400kHz_config = {
> - .timing0 = 0x000f0007,
> - .timing1 = 0x001f000f,
> - .timing2 = 0x00300030,
> -};
> -
> /**
> * struct mxs_i2c_dev - per device, private MXS-I2C data
> *
> @@ -137,7 +108,9 @@ struct mxs_i2c_dev {
> struct completion cmd_complete;
> u32 cmd_err;
> struct i2c_adapter adapter;
> - const struct mxs_i2c_speed_config *speed;
> +
> + uint32_t timing0;
> + uint32_t timing1;
>
> /* DMA support components */
> int dma_channel;
> @@ -153,9 +126,16 @@ static void mxs_i2c_reset(struct mxs_i2c_dev *i2c)
> {
> stmp_reset_block(i2c->regs);
>
> - writel(i2c->speed->timing0, i2c->regs + MXS_I2C_TIMING0);
> - writel(i2c->speed->timing1, i2c->regs + MXS_I2C_TIMING1);
> - writel(i2c->speed->timing2, i2c->regs + MXS_I2C_TIMING2);
> + /*
> + * Configure timing for the I2C block. The I2C TIMING2 register has to
> + * be programmed with this particular magic number. The rest is derived
> + * from the XTAL speed and requested I2C speed.
> + *
> + * For details, see i.MX233 [25.4.2 - 25.4.4] and i.MX28 [27.5.2 - 27.5.4].
> + */
> + writel(i2c->timing0, i2c->regs + MXS_I2C_TIMING0);
> + writel(i2c->timing1, i2c->regs + MXS_I2C_TIMING1);
> + writel(0x00300030, i2c->regs + MXS_I2C_TIMING2);
>
> writel(MXS_I2C_IRQ_MASK << 8, i2c->regs + MXS_I2C_CTRL1_SET);
> }
> @@ -540,6 +520,43 @@ static bool mxs_i2c_dma_filter(struct dma_chan *chan, void *param)
> return true;
> }
>
> +static void mxs_i2c_derive_timing(struct mxs_i2c_dev *i2c, int speed)
> +{
> + /* The I2C block clock run at 24MHz */
> + const uint32_t clk = 24000000;
> + uint32_t base;
> + uint16_t high_count, low_count, rcv_count, xmit_count;
> + struct device *dev = i2c->dev;
> +
> + if (speed > 540000) {
> + dev_err(dev, "Speed too high (%d Hz), using 540 kHz\n", speed);
> + speed = 540000;
> + } else if (speed < 12000) {
> + dev_err(dev, "Speed too low (%d Hz), using 12 kHz\n", speed);
> + speed = 12000;
> + }
I'd think dev_warn would do, since we are able to continue. No need to
resend, though.
Rest looks good, thanks!
Wolfram
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <20130124072555.GD8364-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
@ 2013-01-24 12:21 ` Marek Vasut
2013-01-25 6:33 ` Shawn Guo
1 sibling, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2013-01-24 12:21 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam, Shawn Guo
Dear Wolfram Sang,
> Hi Marek,
>
> On Fri, Nov 30, 2012 at 06:48:35PM +0100, Marek Vasut wrote:
> > This patch drops the i2c timing tables from this driver and instead
> > derives the timing based from the requested clock sleep. The timing
> > tables were completely wrong anyway when observed on a scope.
> >
> > This new algorithm is also only derived by using a scope, but it seems
> > to produce much more accurate result.
> >
> > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
> > Cc: Fabio Estevam <fabio.estevam-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> > Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> > Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> > ---
> >
> > drivers/i2c/busses/i2c-mxs.c | 94
> > ++++++++++++++++++++++++------------------ 1 file changed, 55
> > insertions(+), 39 deletions(-)
> >
> > NOTE: Can someone please test if this patch works for them as well?
> >
> > I tested this on DENX M28EVK and Freescale MX28EVK.
>
> Second call for testers.
[...]
> > +static void mxs_i2c_derive_timing(struct mxs_i2c_dev *i2c, int speed)
> > +{
> > + /* The I2C block clock run at 24MHz */
> > + const uint32_t clk = 24000000;
> > + uint32_t base;
> > + uint16_t high_count, low_count, rcv_count, xmit_count;
> > + struct device *dev = i2c->dev;
> > +
> > + if (speed > 540000) {
> > + dev_err(dev, "Speed too high (%d Hz), using 540 kHz\n", speed);
> > + speed = 540000;
> > + } else if (speed < 12000) {
> > + dev_err(dev, "Speed too low (%d Hz), using 12 kHz\n", speed);
> > + speed = 12000;
> > + }
>
> I'd think dev_warn would do, since we are able to continue. No need to
> resend, though.
>
> Rest looks good, thanks!
Ah, good catch. We can put this one on hold, it's not as important as the
PIO/DMA one. I'd like to see the PIO/DMA one hit mainline though.
Thanks!
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <20130124072555.GD8364-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2013-01-24 12:21 ` Marek Vasut
@ 2013-01-25 6:33 ` Shawn Guo
1 sibling, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2013-01-25 6:33 UTC (permalink / raw)
To: Wolfram Sang; +Cc: Marek Vasut, linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam
On Thu, Jan 24, 2013 at 08:25:56AM +0100, Wolfram Sang wrote:
> Hi Marek,
>
> On Fri, Nov 30, 2012 at 06:48:35PM +0100, Marek Vasut wrote:
> > This patch drops the i2c timing tables from this driver and instead
> > derives the timing based from the requested clock sleep. The timing
> > tables were completely wrong anyway when observed on a scope.
> >
> > This new algorithm is also only derived by using a scope, but it seems
> > to produce much more accurate result.
> >
> > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
> > Cc: Fabio Estevam <fabio.estevam-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> > Cc: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> > Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> > ---
> > drivers/i2c/busses/i2c-mxs.c | 94 ++++++++++++++++++++++++------------------
> > 1 file changed, 55 insertions(+), 39 deletions(-)
> >
> > NOTE: Can someone please test if this patch works for them as well?
> > I tested this on DENX M28EVK and Freescale MX28EVK.
>
> Second call for testers.
imx28 still talks good to sgtl5000 over i2c on my board, so
Tested-by: Shawn Guo <shawn.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <1354297715-12201-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>
2013-01-08 18:14 ` Marek Vasut
2013-01-24 7:25 ` Wolfram Sang
@ 2013-02-10 13:57 ` Wolfram Sang
[not found] ` <20130210135737.GB15546-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2 siblings, 1 reply; 8+ messages in thread
From: Wolfram Sang @ 2013-02-10 13:57 UTC (permalink / raw)
To: Marek Vasut; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam, Shawn Guo
On Fri, Nov 30, 2012 at 06:48:35PM +0100, Marek Vasut wrote:
> This patch drops the i2c timing tables from this driver and instead
> derives the timing based from the requested clock sleep. The timing
> tables were completely wrong anyway when observed on a scope.
>
> This new algorithm is also only derived by using a scope, but it seems
> to produce much more accurate result.
>
> Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
Since Shawn and I tested it meanwhile, I changed the printouts to
dev_warn and applied to for-next, thanks!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <20130210135737.GB15546-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
@ 2013-02-10 14:17 ` Marek Vasut
[not found] ` <201302101517.10571.marex-ynQEQJNshbs@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2013-02-10 14:17 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam, Shawn Guo
Dear Wolfram Sang,
> On Fri, Nov 30, 2012 at 06:48:35PM +0100, Marek Vasut wrote:
> > This patch drops the i2c timing tables from this driver and instead
> > derives the timing based from the requested clock sleep. The timing
> > tables were completely wrong anyway when observed on a scope.
> >
> > This new algorithm is also only derived by using a scope, but it seems
> > to produce much more accurate result.
> >
> > Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>
>
> Since Shawn and I tested it meanwhile, I changed the printouts to
> dev_warn and applied to for-next, thanks!
Is this 3.9 matter now ?
Thanks!
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm
[not found] ` <201302101517.10571.marex-ynQEQJNshbs@public.gmane.org>
@ 2013-02-10 14:44 ` Wolfram Sang
0 siblings, 0 replies; 8+ messages in thread
From: Wolfram Sang @ 2013-02-10 14:44 UTC (permalink / raw)
To: Marek Vasut
Cc: Wolfram Sang, linux-i2c-u79uwXL29TY76Z2rM5mHXA, Fabio Estevam,
Shawn Guo
> Is this 3.9 matter now ?
Yup.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-02-10 14:44 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-30 17:48 [RFC PATCH] mxs: i2c: Implement arbitrary clock speed derivation algorithm Marek Vasut
[not found] ` <1354297715-12201-1-git-send-email-marex-ynQEQJNshbs@public.gmane.org>
2013-01-08 18:14 ` Marek Vasut
2013-01-24 7:25 ` Wolfram Sang
[not found] ` <20130124072555.GD8364-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2013-01-24 12:21 ` Marek Vasut
2013-01-25 6:33 ` Shawn Guo
2013-02-10 13:57 ` Wolfram Sang
[not found] ` <20130210135737.GB15546-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2013-02-10 14:17 ` Marek Vasut
[not found] ` <201302101517.10571.marex-ynQEQJNshbs@public.gmane.org>
2013-02-10 14:44 ` Wolfram Sang
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).