* [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver
@ 2012-04-08 13:00 Paul Parsons
2012-04-10 19:23 ` Philipp Zabel
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Paul Parsons @ 2012-04-08 13:00 UTC (permalink / raw)
To: dmitry.torokhov; +Cc: linux-input, philipp.zabel
This driver adds support for the Synaptics NavPoint touchpad connected
to a PXA27x SSP port in SPI slave mode. The driver implements a simple
navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
buttons and the centre of the touchpad is mapped to the ENTER button.
Signed-off-by: Paul Parsons <lost.distance@yahoo.com>
Cc: Philipp Zabel <philipp.zabel@gmail.com>
---
V7:
Separated arch/arm/mach-pxa/include/mach/mfp-pxa27x.h changes into a
separate patch, to avoid crossing maintainer boundaries.
This patch now submitted to linux-input instead of linux-arm-kernel.
Improved dev_warn() messages.
navpoint_hardint() now correctly returns IRQ_HANDLED in cases where
reading SSDR does not return IRQ_WAKE_THREAD.
Folded in "Input: navpoint: add clk_prepare/clk_unprepare calls" patch.
Added calls to gpio_is_valid(), gpio_request(), gpio_direction_output().
Rebased from linux-3.2 to linux-3.4-rc2.
drivers/input/mouse/Kconfig | 12 ++
drivers/input/mouse/Makefile | 1 +
drivers/input/mouse/navpoint.c | 415 ++++++++++++++++++++++++++++++++++++++++
include/linux/input/navpoint.h | 12 ++
4 files changed, 440 insertions(+), 0 deletions(-)
create mode 100644 drivers/input/mouse/navpoint.c
create mode 100644 include/linux/input/navpoint.h
diff --git a/drivers/input/mouse/Kconfig b/drivers/input/mouse/Kconfig
index 9b8db82..497286e 100644
--- a/drivers/input/mouse/Kconfig
+++ b/drivers/input/mouse/Kconfig
@@ -339,4 +339,16 @@ config MOUSE_SYNAPTICS_USB
To compile this driver as a module, choose M here: the
module will be called synaptics_usb.
+config MOUSE_NAVPOINT_PXA27x
+ tristate "Synaptics NavPoint (PXA27x SSP/SPI)"
+ depends on PXA27x && PXA_SSP
+ help
+ This driver adds support for the Synaptics NavPoint touchpad connected
+ to a PXA27x SSP port in SPI slave mode. The driver implements a simple
+ navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
+ buttons and the centre of the touchpad is mapped to the ENTER button.
+
+ To compile this driver as a module, choose M here: the
+ module will be called navpoint.
+
endif
diff --git a/drivers/input/mouse/Makefile b/drivers/input/mouse/Makefile
index 4718eff..46ba755 100644
--- a/drivers/input/mouse/Makefile
+++ b/drivers/input/mouse/Makefile
@@ -12,6 +12,7 @@ obj-$(CONFIG_MOUSE_GPIO) += gpio_mouse.o
obj-$(CONFIG_MOUSE_INPORT) += inport.o
obj-$(CONFIG_MOUSE_LOGIBM) += logibm.o
obj-$(CONFIG_MOUSE_MAPLE) += maplemouse.o
+obj-$(CONFIG_MOUSE_NAVPOINT_PXA27x) += navpoint.o
obj-$(CONFIG_MOUSE_PC110PAD) += pc110pad.o
obj-$(CONFIG_MOUSE_PS2) += psmouse.o
obj-$(CONFIG_MOUSE_PXA930_TRKBALL) += pxa930_trkball.o
diff --git a/drivers/input/mouse/navpoint.c b/drivers/input/mouse/navpoint.c
new file mode 100644
index 0000000..3f09c95
--- /dev/null
+++ b/drivers/input/mouse/navpoint.c
@@ -0,0 +1,415 @@
+/*
+ * Copyright (C) 2012 Paul Parsons <lost.distance@yahoo.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/clk.h>
+#include <linux/delay.h>
+#include <linux/gpio.h>
+#include <linux/input.h>
+#include <linux/input/navpoint.h>
+#include <linux/interrupt.h>
+#include <linux/pxa2xx_ssp.h>
+#include <linux/slab.h>
+
+/*
+ * Synaptics NavPoint (PXA27x SSP/SPI) driver.
+ */
+
+/*
+ * Synaptics Modular Embedded Protocol: Module Packet Format.
+ * Module header byte 2:0 = Length (# bytes that follow)
+ * Module header byte 4:3 = Control
+ * Module header byte 7:5 = Module Address
+ */
+#define HEADER_LENGTH(byte) ((byte) & 0x07)
+#define HEADER_CONTROL(byte) (((byte) >> 3) & 0x03)
+#define HEADER_ADDRESS(byte) ((byte) >> 5)
+
+/*
+ * Two bitmaps represent the current and reported key press dispositions:
+ * a producer bitmap maintained by navpoint_hardint(),
+ * a consumer bitmap maintained by navpoint_softint().
+ */
+#define BIT_LEFT (1<<0)
+#define BIT_RIGHT (1<<1)
+#define BIT_DOWN (1<<2)
+#define BIT_UP (1<<3)
+#define BIT_ENTER (1<<4)
+
+struct driver_data {
+ struct ssp_device *ssp;
+ int gpio;
+ struct input_dev *input;
+ int index;
+ uint8_t data[1+HEADER_LENGTH(0xff)];
+ bool pressed; /* 1 = pressed, 0 = released */
+ int bit; /* Bit of last key pressed */
+ unsigned prod; /* Producer bitmap */
+ unsigned cons; /* Consumer bitmap */
+};
+
+/*
+ * Initialization values for SSCR0_x, SSCR1_x, SSSR_x.
+ */
+static const u32 sscr0 = 0
+ | SSCR0_TUM /* TIM = 1; No TUR interrupts */
+ | SSCR0_RIM /* RIM = 1; No ROR interrupts */
+ | SSCR0_SSE /* SSE = 1; SSP enabled */
+ | SSCR0_Motorola /* FRF = 0; Motorola SPI */
+ | SSCR0_DataSize(16) /* DSS = 15; Data size = 16-bit */
+ ;
+static const u32 sscr1 = 0
+ | SSCR1_SCFR /* SCFR = 1; SSPSCLK only during transfers */
+ | SSCR1_SCLKDIR /* SCLKDIR = 1; Slave mode */
+ | SSCR1_SFRMDIR /* SFRMDIR = 1; Slave mode */
+ | SSCR1_RWOT /* RWOT = 1; Receive without transmit mode */
+ | SSCR1_RxTresh(1) /* RFT = 0; Receive FIFO threshold = 1 */
+ | SSCR1_SPH /* SPH = 1; SSPSCLK inactive 0.5 + 1 cycles */
+ | SSCR1_RIE /* RIE = 1; Receive FIFO interrupt enabled */
+ ;
+static const u32 sssr = 0
+ | SSSR_BCE /* BCE = 1; Clear BCE */
+ | SSSR_TUR /* TUR = 1; Clear TUR */
+ | SSSR_EOC /* EOC = 1; Clear EOC */
+ | SSSR_TINT /* TINT = 1; Clear TINT */
+ | SSSR_PINT /* PINT = 1; Clear PINT */
+ | SSSR_ROR /* ROR = 1; Clear ROR */
+ ;
+
+/*
+ * MEP Query $22: Touchpad Coordinate Range Query is not supported by
+ * the NavPoint module, so sampled values provide the default limits.
+ */
+static int west = 2416; /* 1/3 width */
+module_param(west, int, 0644);
+MODULE_PARM_DESC(west, "X coordinate limit for KEY_LEFT. Default = 2416");
+static int east = 3904; /* 2/3 width */
+module_param(east, int, 0644);
+MODULE_PARM_DESC(east, "X coordinate limit for KEY_RIGHT. Default = 3904");
+static int south = 2480; /* 1/3 height */
+module_param(south, int, 0644);
+MODULE_PARM_DESC(south, "Y coordinate limit for KEY_DOWN. Default = 2480");
+static int north = 3424; /* 2/3 height */
+module_param(north, int, 0644);
+MODULE_PARM_DESC(north, "Y coordinate limit for KEY_UP. Default = 3424");
+
+static bool navpoint_packet(struct device *dev)
+{
+ struct driver_data *drv_data = dev_get_drvdata(dev);
+ bool ret;
+ bool pressed;
+ int bit;
+
+ ret = false;
+
+ switch (drv_data->data[0]) {
+ case 0xff: /* Garbage (packet?) between reset and Hello packet */
+ case 0x00: /* Module 0, NULL packet */
+ break;
+ case 0x0e: /* Module 0, Absolute packet */
+ pressed = (drv_data->data[1] & 0x01);
+ if (drv_data->pressed == pressed) /* No change */
+ break;
+ drv_data->pressed = pressed;
+ if (pressed) {
+ unsigned x, y;
+
+ x = ((drv_data->data[2] & 0x1f) << 8)
+ | drv_data->data[3];
+ y = ((drv_data->data[4] & 0x1f) << 8)
+ | drv_data->data[5];
+ if (x < west)
+ bit = BIT_LEFT;
+ else if (x >= east)
+ bit = BIT_RIGHT;
+ else if (y < south)
+ bit = BIT_DOWN;
+ else if (y >= north)
+ bit = BIT_UP;
+ else /* Middle */
+ bit = BIT_ENTER;
+ drv_data->bit = bit;
+ } else {
+ /* Released: use last key pressed */
+ bit = drv_data->bit;
+ }
+ drv_data->prod ^= bit;
+ ret = true;
+ break;
+ case 0x19: /* Module 0, Hello packet */
+ if ((drv_data->data[1] & 0xf0) == 0x10)
+ break;
+ /* FALLTHROUGH */
+ default:
+ dev_warn(dev, "spurious packet: data=0x%02x,0x%02x,...\n",
+ drv_data->data[0],
+ drv_data->data[1]);
+ break;
+ }
+
+ return ret;
+}
+
+static irqreturn_t navpoint_hardint(int irq, void *dev_id)
+{
+ struct device *dev = dev_id;
+ struct driver_data *drv_data = dev_get_drvdata(dev);
+ struct ssp_device *ssp = drv_data->ssp;
+ u32 status;
+ irqreturn_t ret;
+
+ status = pxa_ssp_read_reg(ssp, SSSR);
+ ret = IRQ_NONE;
+
+ if (status & sssr) {
+ dev_warn(dev, "unexpected interrupt: status=0x%08x\n", status);
+ pxa_ssp_write_reg(ssp, SSSR, (status & sssr));
+ ret = IRQ_HANDLED;
+ }
+
+ while (status & SSSR_RNE) {
+ u32 data;
+
+ data = pxa_ssp_read_reg(ssp, SSDR);
+ drv_data->data[drv_data->index + 0] = (data >> 8);
+ drv_data->data[drv_data->index + 1] = data;
+ drv_data->index += 2;
+ if (HEADER_LENGTH(drv_data->data[0]) < drv_data->index) {
+ if (navpoint_packet(dev))
+ ret = IRQ_WAKE_THREAD;
+ drv_data->index = 0;
+ }
+ status = pxa_ssp_read_reg(ssp, SSSR);
+ if (ret == IRQ_NONE)
+ ret = IRQ_HANDLED;
+ }
+
+ return ret;
+}
+
+static irqreturn_t navpoint_softint(int irq, void *dev_id)
+{
+ struct device *dev = dev_id;
+ struct driver_data *drv_data = dev_get_drvdata(dev);
+ unsigned prod;
+ unsigned diff;
+
+ prod = drv_data->prod;
+ diff = drv_data->cons ^ prod;
+ drv_data->cons = prod;
+
+ if (diff & BIT_LEFT)
+ input_report_key(drv_data->input, KEY_LEFT, prod & BIT_LEFT);
+ if (diff & BIT_RIGHT)
+ input_report_key(drv_data->input, KEY_RIGHT, prod & BIT_RIGHT);
+ if (diff & BIT_DOWN)
+ input_report_key(drv_data->input, KEY_DOWN, prod & BIT_DOWN);
+ if (diff & BIT_UP)
+ input_report_key(drv_data->input, KEY_UP, prod & BIT_UP);
+ if (diff & BIT_ENTER)
+ input_report_key(drv_data->input, KEY_ENTER, prod & BIT_ENTER);
+ input_sync(drv_data->input);
+
+ return IRQ_HANDLED;
+}
+
+static int navpoint_suspend(struct device *dev)
+{
+ struct driver_data *drv_data = dev_get_drvdata(dev);
+ struct ssp_device *ssp = drv_data->ssp;
+
+ if (gpio_is_valid(drv_data->gpio))
+ gpio_set_value(drv_data->gpio, 0);
+
+ pxa_ssp_write_reg(ssp, SSCR0, 0);
+
+ clk_disable_unprepare(ssp->clk);
+
+ return 0;
+}
+
+static int navpoint_resume(struct device *dev)
+{
+ struct driver_data *drv_data = dev_get_drvdata(dev);
+ struct ssp_device *ssp = drv_data->ssp;
+ int timeout;
+
+ clk_prepare_enable(ssp->clk);
+
+ pxa_ssp_write_reg(ssp, SSCR1, sscr1);
+ pxa_ssp_write_reg(ssp, SSSR, sssr);
+ pxa_ssp_write_reg(ssp, SSTO, 0);
+ pxa_ssp_write_reg(ssp, SSCR0, sscr0); /* SSCR0_SSE written last */
+
+ /* Wait until SSP port is ready for slave clock operations */
+ for (timeout = 100; timeout != 0; --timeout) {
+ if (!(pxa_ssp_read_reg(ssp, SSSR) & SSSR_CSS))
+ break;
+ msleep(1);
+ }
+ if (timeout == 0)
+ dev_err(dev, "timeout waiting for SSSR[CSS] to clear\n");
+
+ if (gpio_is_valid(drv_data->gpio))
+ gpio_set_value(drv_data->gpio, 1);
+
+ return 0;
+}
+
+#ifdef CONFIG_SUSPEND
+static const struct dev_pm_ops navpoint_pm_ops = {
+ .suspend = navpoint_suspend,
+ .resume = navpoint_resume,
+};
+#endif
+
+static int navpoint_open(struct input_dev *input)
+{
+ return navpoint_resume(input->dev.parent);
+}
+
+static void navpoint_close(struct input_dev *input)
+{
+ navpoint_suspend(input->dev.parent);
+}
+
+static int __devinit navpoint_probe(struct platform_device *pdev)
+{
+ struct navpoint_platform_data *pdata = pdev->dev.platform_data;
+ int ret;
+ struct ssp_device *ssp;
+ struct input_dev *input;
+ struct driver_data *drv_data;
+
+ if (gpio_is_valid(pdata->gpio)) {
+ ret = gpio_request(pdata->gpio, "SYNAPTICS_ON");
+ if (ret)
+ goto ret0;
+ ret = gpio_direction_output(pdata->gpio, 0);
+ if (ret)
+ goto ret1;
+ }
+
+ ssp = pxa_ssp_request(pdata->port, pdev->name);
+ if (!ssp) {
+ ret = -ENODEV;
+ goto ret1;
+ }
+
+ /* HaRET does not disable devices before jumping into Linux */
+ if (pxa_ssp_read_reg(ssp, SSCR0) & SSCR0_SSE) {
+ pxa_ssp_write_reg(ssp, SSCR0, 0);
+ dev_warn(&pdev->dev, "ssp%d already enabled\n", pdata->port);
+ }
+
+ input = input_allocate_device();
+ if (!input) {
+ ret = -ENOMEM;
+ goto ret2;
+ }
+ input->name = pdev->name;
+ __set_bit(EV_KEY, input->evbit);
+ __set_bit(KEY_ENTER, input->keybit);
+ __set_bit(KEY_UP, input->keybit);
+ __set_bit(KEY_LEFT, input->keybit);
+ __set_bit(KEY_RIGHT, input->keybit);
+ __set_bit(KEY_DOWN, input->keybit);
+ input->open = navpoint_open;
+ input->close = navpoint_close;
+ input->dev.parent = &pdev->dev;
+
+ drv_data = kzalloc(sizeof(*drv_data), GFP_KERNEL);
+ if (!drv_data) {
+ ret = -ENOMEM;
+ goto ret3;
+ }
+ drv_data->ssp = ssp;
+ drv_data->gpio = pdata->gpio;
+ drv_data->input = input;
+ platform_set_drvdata(pdev, drv_data);
+
+ ret = request_threaded_irq(ssp->irq, navpoint_hardint, navpoint_softint,
+ 0, pdev->name, &pdev->dev);
+ if (ret)
+ goto ret4;
+
+ ret = input_register_device(input);
+ if (ret)
+ goto ret5;
+
+ dev_info(&pdev->dev, "ssp%d, irq %d\n", pdata->port, ssp->irq);
+
+ return 0;
+
+ret5:
+ free_irq(ssp->irq, &pdev->dev);
+ret4:
+ kfree(drv_data);
+ret3:
+ input_free_device(input);
+ret2:
+ pxa_ssp_free(ssp);
+ret1:
+ if (gpio_is_valid(pdata->gpio))
+ gpio_free(pdata->gpio);
+ret0:
+ return ret;
+}
+
+static int __devexit navpoint_remove(struct platform_device *pdev)
+{
+ struct driver_data *drv_data = platform_get_drvdata(pdev);
+ struct input_dev *input = drv_data->input;
+ struct ssp_device *ssp = drv_data->ssp;
+ struct navpoint_platform_data *pdata = pdev->dev.platform_data;
+
+ input_unregister_device(input);
+
+ free_irq(ssp->irq, &pdev->dev);
+
+ kfree(drv_data);
+
+ pxa_ssp_free(ssp);
+
+ if (gpio_is_valid(pdata->gpio))
+ gpio_free(pdata->gpio);
+
+ return 0;
+}
+
+static struct platform_driver navpoint_driver = {
+ .probe = navpoint_probe,
+ .remove = __devexit_p(navpoint_remove),
+ .driver = {
+ .name = "navpoint",
+ .owner = THIS_MODULE,
+#ifdef CONFIG_SUSPEND
+ .pm = &navpoint_pm_ops,
+#endif
+ },
+};
+
+static int __init navpoint_init(void)
+{
+ return platform_driver_register(&navpoint_driver);
+}
+
+static void __exit navpoint_exit(void)
+{
+ platform_driver_unregister(&navpoint_driver);
+}
+
+module_init(navpoint_init);
+module_exit(navpoint_exit);
+
+MODULE_AUTHOR("Paul Parsons <lost.distance@yahoo.com>");
+MODULE_DESCRIPTION("Synaptics NavPoint (PXA27x SSP/SPI) driver");
+MODULE_LICENSE("GPL");
diff --git a/include/linux/input/navpoint.h b/include/linux/input/navpoint.h
new file mode 100644
index 0000000..45050eb
--- /dev/null
+++ b/include/linux/input/navpoint.h
@@ -0,0 +1,12 @@
+/*
+ * Copyright (C) 2012 Paul Parsons <lost.distance@yahoo.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+struct navpoint_platform_data {
+ int port; /* PXA SSP port for pxa_ssp_request() */
+ int gpio; /* GPIO for power on/off */
+};
--
1.7.3.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver
2012-04-08 13:00 [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver Paul Parsons
@ 2012-04-10 19:23 ` Philipp Zabel
2012-04-11 6:50 ` Dmitry Torokhov
2012-04-12 14:48 ` Igor Grinberg
2 siblings, 0 replies; 4+ messages in thread
From: Philipp Zabel @ 2012-04-10 19:23 UTC (permalink / raw)
To: Paul Parsons; +Cc: dmitry.torokhov, linux-input
Am Sonntag, den 08.04.2012, 14:00 +0100 schrieb Paul Parsons:
> This driver adds support for the Synaptics NavPoint touchpad connected
> to a PXA27x SSP port in SPI slave mode. The driver implements a simple
> navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
> buttons and the centre of the touchpad is mapped to the ENTER button.
>
> Signed-off-by: Paul Parsons <lost.distance@yahoo.com>
> Cc: Philipp Zabel <philipp.zabel@gmail.com>
> ---
>
> V7:
> Separated arch/arm/mach-pxa/include/mach/mfp-pxa27x.h changes into a
> separate patch, to avoid crossing maintainer boundaries.
> This patch now submitted to linux-input instead of linux-arm-kernel.
> Improved dev_warn() messages.
> navpoint_hardint() now correctly returns IRQ_HANDLED in cases where
> reading SSDR does not return IRQ_WAKE_THREAD.
> Folded in "Input: navpoint: add clk_prepare/clk_unprepare calls" patch.
> Added calls to gpio_is_valid(), gpio_request(), gpio_direction_output().
> Rebased from linux-3.2 to linux-3.4-rc2.
Tested-by: Philipp Zabel <philipp.zabel@gmail.com>
regards
Philipp
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver
2012-04-08 13:00 [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver Paul Parsons
2012-04-10 19:23 ` Philipp Zabel
@ 2012-04-11 6:50 ` Dmitry Torokhov
2012-04-12 14:48 ` Igor Grinberg
2 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2012-04-11 6:50 UTC (permalink / raw)
To: Paul Parsons; +Cc: linux-input, philipp.zabel
Hi Paul,
On Sun, Apr 08, 2012 at 02:00:51PM +0100, Paul Parsons wrote:
> This driver adds support for the Synaptics NavPoint touchpad connected
> to a PXA27x SSP port in SPI slave mode. The driver implements a simple
> navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
> buttons and the centre of the touchpad is mapped to the ENTER button.
>
> Signed-off-by: Paul Parsons <lost.distance@yahoo.com>
> Cc: Philipp Zabel <philipp.zabel@gmail.com>
> ---
>
> V7:
> Separated arch/arm/mach-pxa/include/mach/mfp-pxa27x.h changes into a
> separate patch, to avoid crossing maintainer boundaries.
> This patch now submitted to linux-input instead of linux-arm-kernel.
> Improved dev_warn() messages.
> navpoint_hardint() now correctly returns IRQ_HANDLED in cases where
> reading SSDR does not return IRQ_WAKE_THREAD.
> Folded in "Input: navpoint: add clk_prepare/clk_unprepare calls" patch.
> Added calls to gpio_is_valid(), gpio_request(), gpio_direction_output().
> Rebased from linux-3.2 to linux-3.4-rc2.
OK, so the main objection is whole conversion from absolute touch
coordinates into key presses. Such conversion belongs to userspace as I
believe not only your device might employ such scheme.
Also a few comments below...
>
> drivers/input/mouse/Kconfig | 12 ++
> drivers/input/mouse/Makefile | 1 +
> drivers/input/mouse/navpoint.c | 415 ++++++++++++++++++++++++++++++++++++++++
> include/linux/input/navpoint.h | 12 ++
> 4 files changed, 440 insertions(+), 0 deletions(-)
> create mode 100644 drivers/input/mouse/navpoint.c
> create mode 100644 include/linux/input/navpoint.h
>
> diff --git a/drivers/input/mouse/Kconfig b/drivers/input/mouse/Kconfig
> index 9b8db82..497286e 100644
> --- a/drivers/input/mouse/Kconfig
> +++ b/drivers/input/mouse/Kconfig
> @@ -339,4 +339,16 @@ config MOUSE_SYNAPTICS_USB
> To compile this driver as a module, choose M here: the
> module will be called synaptics_usb.
>
> +config MOUSE_NAVPOINT_PXA27x
> + tristate "Synaptics NavPoint (PXA27x SSP/SPI)"
> + depends on PXA27x && PXA_SSP
> + help
> + This driver adds support for the Synaptics NavPoint touchpad connected
> + to a PXA27x SSP port in SPI slave mode. The driver implements a simple
> + navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
> + buttons and the centre of the touchpad is mapped to the ENTER button.
> +
> + To compile this driver as a module, choose M here: the
> + module will be called navpoint.
> +
> endif
> diff --git a/drivers/input/mouse/Makefile b/drivers/input/mouse/Makefile
> index 4718eff..46ba755 100644
> --- a/drivers/input/mouse/Makefile
> +++ b/drivers/input/mouse/Makefile
> @@ -12,6 +12,7 @@ obj-$(CONFIG_MOUSE_GPIO) += gpio_mouse.o
> obj-$(CONFIG_MOUSE_INPORT) += inport.o
> obj-$(CONFIG_MOUSE_LOGIBM) += logibm.o
> obj-$(CONFIG_MOUSE_MAPLE) += maplemouse.o
> +obj-$(CONFIG_MOUSE_NAVPOINT_PXA27x) += navpoint.o
> obj-$(CONFIG_MOUSE_PC110PAD) += pc110pad.o
> obj-$(CONFIG_MOUSE_PS2) += psmouse.o
> obj-$(CONFIG_MOUSE_PXA930_TRKBALL) += pxa930_trkball.o
> diff --git a/drivers/input/mouse/navpoint.c b/drivers/input/mouse/navpoint.c
> new file mode 100644
> index 0000000..3f09c95
> --- /dev/null
> +++ b/drivers/input/mouse/navpoint.c
> @@ -0,0 +1,415 @@
> +/*
> + * Copyright (C) 2012 Paul Parsons <lost.distance@yahoo.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/init.h>
> +#include <linux/module.h>
> +#include <linux/platform_device.h>
> +#include <linux/clk.h>
> +#include <linux/delay.h>
> +#include <linux/gpio.h>
> +#include <linux/input.h>
> +#include <linux/input/navpoint.h>
> +#include <linux/interrupt.h>
> +#include <linux/pxa2xx_ssp.h>
> +#include <linux/slab.h>
> +
> +/*
> + * Synaptics NavPoint (PXA27x SSP/SPI) driver.
> + */
> +
> +/*
> + * Synaptics Modular Embedded Protocol: Module Packet Format.
> + * Module header byte 2:0 = Length (# bytes that follow)
> + * Module header byte 4:3 = Control
> + * Module header byte 7:5 = Module Address
> + */
> +#define HEADER_LENGTH(byte) ((byte) & 0x07)
> +#define HEADER_CONTROL(byte) (((byte) >> 3) & 0x03)
> +#define HEADER_ADDRESS(byte) ((byte) >> 5)
> +
> +/*
> + * Two bitmaps represent the current and reported key press dispositions:
> + * a producer bitmap maintained by navpoint_hardint(),
> + * a consumer bitmap maintained by navpoint_softint().
> + */
> +#define BIT_LEFT (1<<0)
> +#define BIT_RIGHT (1<<1)
> +#define BIT_DOWN (1<<2)
> +#define BIT_UP (1<<3)
> +#define BIT_ENTER (1<<4)
> +
> +struct driver_data {
> + struct ssp_device *ssp;
> + int gpio;
> + struct input_dev *input;
> + int index;
> + uint8_t data[1+HEADER_LENGTH(0xff)];
> + bool pressed; /* 1 = pressed, 0 = released */
> + int bit; /* Bit of last key pressed */
> + unsigned prod; /* Producer bitmap */
> + unsigned cons; /* Consumer bitmap */
> +};
> +
> +/*
> + * Initialization values for SSCR0_x, SSCR1_x, SSSR_x.
> + */
> +static const u32 sscr0 = 0
> + | SSCR0_TUM /* TIM = 1; No TUR interrupts */
> + | SSCR0_RIM /* RIM = 1; No ROR interrupts */
> + | SSCR0_SSE /* SSE = 1; SSP enabled */
> + | SSCR0_Motorola /* FRF = 0; Motorola SPI */
> + | SSCR0_DataSize(16) /* DSS = 15; Data size = 16-bit */
> + ;
> +static const u32 sscr1 = 0
> + | SSCR1_SCFR /* SCFR = 1; SSPSCLK only during transfers */
> + | SSCR1_SCLKDIR /* SCLKDIR = 1; Slave mode */
> + | SSCR1_SFRMDIR /* SFRMDIR = 1; Slave mode */
> + | SSCR1_RWOT /* RWOT = 1; Receive without transmit mode */
> + | SSCR1_RxTresh(1) /* RFT = 0; Receive FIFO threshold = 1 */
> + | SSCR1_SPH /* SPH = 1; SSPSCLK inactive 0.5 + 1 cycles */
> + | SSCR1_RIE /* RIE = 1; Receive FIFO interrupt enabled */
> + ;
> +static const u32 sssr = 0
> + | SSSR_BCE /* BCE = 1; Clear BCE */
> + | SSSR_TUR /* TUR = 1; Clear TUR */
> + | SSSR_EOC /* EOC = 1; Clear EOC */
> + | SSSR_TINT /* TINT = 1; Clear TINT */
> + | SSSR_PINT /* PINT = 1; Clear PINT */
> + | SSSR_ROR /* ROR = 1; Clear ROR */
> + ;
> +
> +/*
> + * MEP Query $22: Touchpad Coordinate Range Query is not supported by
> + * the NavPoint module, so sampled values provide the default limits.
> + */
> +static int west = 2416; /* 1/3 width */
> +module_param(west, int, 0644);
> +MODULE_PARM_DESC(west, "X coordinate limit for KEY_LEFT. Default = 2416");
> +static int east = 3904; /* 2/3 width */
> +module_param(east, int, 0644);
> +MODULE_PARM_DESC(east, "X coordinate limit for KEY_RIGHT. Default = 3904");
> +static int south = 2480; /* 1/3 height */
> +module_param(south, int, 0644);
> +MODULE_PARM_DESC(south, "Y coordinate limit for KEY_DOWN. Default = 2480");
> +static int north = 3424; /* 2/3 height */
> +module_param(north, int, 0644);
> +MODULE_PARM_DESC(north, "Y coordinate limit for KEY_UP. Default = 3424");
> +
> +static bool navpoint_packet(struct device *dev)
> +{
> + struct driver_data *drv_data = dev_get_drvdata(dev);
> + bool ret;
> + bool pressed;
> + int bit;
> +
> + ret = false;
> +
> + switch (drv_data->data[0]) {
> + case 0xff: /* Garbage (packet?) between reset and Hello packet */
> + case 0x00: /* Module 0, NULL packet */
> + break;
> + case 0x0e: /* Module 0, Absolute packet */
> + pressed = (drv_data->data[1] & 0x01);
> + if (drv_data->pressed == pressed) /* No change */
> + break;
> + drv_data->pressed = pressed;
> + if (pressed) {
> + unsigned x, y;
> +
> + x = ((drv_data->data[2] & 0x1f) << 8)
> + | drv_data->data[3];
> + y = ((drv_data->data[4] & 0x1f) << 8)
> + | drv_data->data[5];
> + if (x < west)
> + bit = BIT_LEFT;
> + else if (x >= east)
> + bit = BIT_RIGHT;
> + else if (y < south)
> + bit = BIT_DOWN;
> + else if (y >= north)
> + bit = BIT_UP;
> + else /* Middle */
> + bit = BIT_ENTER;
> + drv_data->bit = bit;
> + } else {
> + /* Released: use last key pressed */
> + bit = drv_data->bit;
> + }
> + drv_data->prod ^= bit;
> + ret = true;
> + break;
> + case 0x19: /* Module 0, Hello packet */
> + if ((drv_data->data[1] & 0xf0) == 0x10)
> + break;
> + /* FALLTHROUGH */
> + default:
> + dev_warn(dev, "spurious packet: data=0x%02x,0x%02x,...\n",
> + drv_data->data[0],
> + drv_data->data[1]);
> + break;
> + }
> +
> + return ret;
> +}
> +
> +static irqreturn_t navpoint_hardint(int irq, void *dev_id)
> +{
> + struct device *dev = dev_id;
> + struct driver_data *drv_data = dev_get_drvdata(dev);
> + struct ssp_device *ssp = drv_data->ssp;
> + u32 status;
> + irqreturn_t ret;
> +
> + status = pxa_ssp_read_reg(ssp, SSSR);
> + ret = IRQ_NONE;
> +
> + if (status & sssr) {
> + dev_warn(dev, "unexpected interrupt: status=0x%08x\n", status);
> + pxa_ssp_write_reg(ssp, SSSR, (status & sssr));
> + ret = IRQ_HANDLED;
> + }
> +
> + while (status & SSSR_RNE) {
> + u32 data;
> +
> + data = pxa_ssp_read_reg(ssp, SSDR);
> + drv_data->data[drv_data->index + 0] = (data >> 8);
> + drv_data->data[drv_data->index + 1] = data;
> + drv_data->index += 2;
> + if (HEADER_LENGTH(drv_data->data[0]) < drv_data->index) {
> + if (navpoint_packet(dev))
> + ret = IRQ_WAKE_THREAD;
> + drv_data->index = 0;
> + }
> + status = pxa_ssp_read_reg(ssp, SSSR);
> + if (ret == IRQ_NONE)
> + ret = IRQ_HANDLED;
> + }
> +
> + return ret;
> +}
> +
> +static irqreturn_t navpoint_softint(int irq, void *dev_id)
> +{
> + struct device *dev = dev_id;
> + struct driver_data *drv_data = dev_get_drvdata(dev);
> + unsigned prod;
> + unsigned diff;
> +
> + prod = drv_data->prod;
> + diff = drv_data->cons ^ prod;
> + drv_data->cons = prod;
> +
> + if (diff & BIT_LEFT)
> + input_report_key(drv_data->input, KEY_LEFT, prod & BIT_LEFT);
> + if (diff & BIT_RIGHT)
> + input_report_key(drv_data->input, KEY_RIGHT, prod & BIT_RIGHT);
> + if (diff & BIT_DOWN)
> + input_report_key(drv_data->input, KEY_DOWN, prod & BIT_DOWN);
> + if (diff & BIT_UP)
> + input_report_key(drv_data->input, KEY_UP, prod & BIT_UP);
> + if (diff & BIT_ENTER)
> + input_report_key(drv_data->input, KEY_ENTER, prod & BIT_ENTER);
> + input_sync(drv_data->input);
> +
> + return IRQ_HANDLED;
This split into hard/soft IRQ is not necessary because input_report_*
are OK to be used in hard interrupt context.
> +}
> +
> +static int navpoint_suspend(struct device *dev)
> +{
> + struct driver_data *drv_data = dev_get_drvdata(dev);
> + struct ssp_device *ssp = drv_data->ssp;
> +
> + if (gpio_is_valid(drv_data->gpio))
> + gpio_set_value(drv_data->gpio, 0);
> +
> + pxa_ssp_write_reg(ssp, SSCR0, 0);
> +
> + clk_disable_unprepare(ssp->clk);
You need to make sure that you are not racing with navpoint_close();
Split code disabling device into a separate function and use
mutex in input device to protect call to it. Have navpoint_close() call
the new function directly.
Same for navpoint_resume/navpoint_open.
> +
> + return 0;
> +}
> +
> +static int navpoint_resume(struct device *dev)
> +{
> + struct driver_data *drv_data = dev_get_drvdata(dev);
> + struct ssp_device *ssp = drv_data->ssp;
> + int timeout;
> +
> + clk_prepare_enable(ssp->clk);
> +
> + pxa_ssp_write_reg(ssp, SSCR1, sscr1);
> + pxa_ssp_write_reg(ssp, SSSR, sssr);
> + pxa_ssp_write_reg(ssp, SSTO, 0);
> + pxa_ssp_write_reg(ssp, SSCR0, sscr0); /* SSCR0_SSE written last */
> +
> + /* Wait until SSP port is ready for slave clock operations */
> + for (timeout = 100; timeout != 0; --timeout) {
> + if (!(pxa_ssp_read_reg(ssp, SSSR) & SSSR_CSS))
> + break;
> + msleep(1);
> + }
> + if (timeout == 0)
> + dev_err(dev, "timeout waiting for SSSR[CSS] to clear\n");
> +
> + if (gpio_is_valid(drv_data->gpio))
> + gpio_set_value(drv_data->gpio, 1);
> +
> + return 0;
> +}
> +
> +#ifdef CONFIG_SUSPEND
> +static const struct dev_pm_ops navpoint_pm_ops = {
> + .suspend = navpoint_suspend,
> + .resume = navpoint_resume,
> +};
> +#endif
simply use unguarded
static SIMPLE_DEV_PM_OPS(navpoint_pm_ops, navpoint_suspend, navpoint_resume);
> +
> +static int navpoint_open(struct input_dev *input)
> +{
> + return navpoint_resume(input->dev.parent);
> +}
> +
> +static void navpoint_close(struct input_dev *input)
> +{
> + navpoint_suspend(input->dev.parent);
> +}
> +
> +static int __devinit navpoint_probe(struct platform_device *pdev)
> +{
> + struct navpoint_platform_data *pdata = pdev->dev.platform_data;
> + int ret;
> + struct ssp_device *ssp;
> + struct input_dev *input;
> + struct driver_data *drv_data;
> +
> + if (gpio_is_valid(pdata->gpio)) {
> + ret = gpio_request(pdata->gpio, "SYNAPTICS_ON");
> + if (ret)
> + goto ret0;
> + ret = gpio_direction_output(pdata->gpio, 0);
> + if (ret)
> + goto ret1;
> + }
> +
> + ssp = pxa_ssp_request(pdata->port, pdev->name);
> + if (!ssp) {
> + ret = -ENODEV;
> + goto ret1;
> + }
> +
> + /* HaRET does not disable devices before jumping into Linux */
> + if (pxa_ssp_read_reg(ssp, SSCR0) & SSCR0_SSE) {
> + pxa_ssp_write_reg(ssp, SSCR0, 0);
> + dev_warn(&pdev->dev, "ssp%d already enabled\n", pdata->port);
> + }
> +
> + input = input_allocate_device();
> + if (!input) {
> + ret = -ENOMEM;
> + goto ret2;
> + }
> + input->name = pdev->name;
> + __set_bit(EV_KEY, input->evbit);
> + __set_bit(KEY_ENTER, input->keybit);
> + __set_bit(KEY_UP, input->keybit);
> + __set_bit(KEY_LEFT, input->keybit);
> + __set_bit(KEY_RIGHT, input->keybit);
> + __set_bit(KEY_DOWN, input->keybit);
> + input->open = navpoint_open;
> + input->close = navpoint_close;
> + input->dev.parent = &pdev->dev;
> +
> + drv_data = kzalloc(sizeof(*drv_data), GFP_KERNEL);
> + if (!drv_data) {
> + ret = -ENOMEM;
> + goto ret3;
> + }
> + drv_data->ssp = ssp;
> + drv_data->gpio = pdata->gpio;
> + drv_data->input = input;
> + platform_set_drvdata(pdev, drv_data);
> +
> + ret = request_threaded_irq(ssp->irq, navpoint_hardint, navpoint_softint,
> + 0, pdev->name, &pdev->dev);
> + if (ret)
> + goto ret4;
> +
> + ret = input_register_device(input);
> + if (ret)
> + goto ret5;
> +
> + dev_info(&pdev->dev, "ssp%d, irq %d\n", pdata->port, ssp->irq);
dev_dbg().
> +
> + return 0;
> +
> +ret5:
> + free_irq(ssp->irq, &pdev->dev);
> +ret4:
> + kfree(drv_data);
> +ret3:
> + input_free_device(input);
> +ret2:
> + pxa_ssp_free(ssp);
> +ret1:
> + if (gpio_is_valid(pdata->gpio))
> + gpio_free(pdata->gpio);
> +ret0:
> + return ret;
> +}
> +
> +static int __devexit navpoint_remove(struct platform_device *pdev)
> +{
> + struct driver_data *drv_data = platform_get_drvdata(pdev);
> + struct input_dev *input = drv_data->input;
> + struct ssp_device *ssp = drv_data->ssp;
> + struct navpoint_platform_data *pdata = pdev->dev.platform_data;
> +
> + input_unregister_device(input);
> +
> + free_irq(ssp->irq, &pdev->dev);
> +
> + kfree(drv_data);
> +
> + pxa_ssp_free(ssp);
> +
> + if (gpio_is_valid(pdata->gpio))
> + gpio_free(pdata->gpio);
> +
> + return 0;
> +}
> +
> +static struct platform_driver navpoint_driver = {
> + .probe = navpoint_probe,
> + .remove = __devexit_p(navpoint_remove),
> + .driver = {
> + .name = "navpoint",
> + .owner = THIS_MODULE,
> +#ifdef CONFIG_SUSPEND
> + .pm = &navpoint_pm_ops,
> +#endif
No need for #ifdef guards here.
> + },
> +};
> +
> +static int __init navpoint_init(void)
> +{
> + return platform_driver_register(&navpoint_driver);
> +}
> +
> +static void __exit navpoint_exit(void)
> +{
> + platform_driver_unregister(&navpoint_driver);
> +}
> +
> +module_init(navpoint_init);
> +module_exit(navpoint_exit);
module_platform_driver(navpoint_driver);
> +
> +MODULE_AUTHOR("Paul Parsons <lost.distance@yahoo.com>");
> +MODULE_DESCRIPTION("Synaptics NavPoint (PXA27x SSP/SPI) driver");
> +MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:navpoint");
> diff --git a/include/linux/input/navpoint.h b/include/linux/input/navpoint.h
> new file mode 100644
> index 0000000..45050eb
> --- /dev/null
> +++ b/include/linux/input/navpoint.h
> @@ -0,0 +1,12 @@
> +/*
> + * Copyright (C) 2012 Paul Parsons <lost.distance@yahoo.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +struct navpoint_platform_data {
> + int port; /* PXA SSP port for pxa_ssp_request() */
> + int gpio; /* GPIO for power on/off */
> +};
> --
> 1.7.3.4
>
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver
2012-04-08 13:00 [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver Paul Parsons
2012-04-10 19:23 ` Philipp Zabel
2012-04-11 6:50 ` Dmitry Torokhov
@ 2012-04-12 14:48 ` Igor Grinberg
2 siblings, 0 replies; 4+ messages in thread
From: Igor Grinberg @ 2012-04-12 14:48 UTC (permalink / raw)
To: Paul Parsons; +Cc: dmitry.torokhov, linux-input, philipp.zabel
Hi Paul,
On 04/08/12 16:00, Paul Parsons wrote:
> This driver adds support for the Synaptics NavPoint touchpad connected
> to a PXA27x SSP port in SPI slave mode. The driver implements a simple
> navigation pad. The four raised dots are mapped to UP/DOWN/LEFT/RIGHT
> buttons and the centre of the touchpad is mapped to the ENTER button.
>
> Signed-off-by: Paul Parsons <lost.distance@yahoo.com>
> Cc: Philipp Zabel <philipp.zabel@gmail.com>
> ---
>
> V7:
> Separated arch/arm/mach-pxa/include/mach/mfp-pxa27x.h changes into a
> separate patch, to avoid crossing maintainer boundaries.
> This patch now submitted to linux-input instead of linux-arm-kernel.
> Improved dev_warn() messages.
> navpoint_hardint() now correctly returns IRQ_HANDLED in cases where
> reading SSDR does not return IRQ_WAKE_THREAD.
> Folded in "Input: navpoint: add clk_prepare/clk_unprepare calls" patch.
> Added calls to gpio_is_valid(), gpio_request(), gpio_direction_output().
> Rebased from linux-3.2 to linux-3.4-rc2.
>
> drivers/input/mouse/Kconfig | 12 ++
> drivers/input/mouse/Makefile | 1 +
> drivers/input/mouse/navpoint.c | 415 ++++++++++++++++++++++++++++++++++++++++
> include/linux/input/navpoint.h | 12 ++
> 4 files changed, 440 insertions(+), 0 deletions(-)
> create mode 100644 drivers/input/mouse/navpoint.c
> create mode 100644 include/linux/input/navpoint.h
[...]
> diff --git a/drivers/input/mouse/navpoint.c b/drivers/input/mouse/navpoint.c
> new file mode 100644
> index 0000000..3f09c95
> --- /dev/null
> +++ b/drivers/input/mouse/navpoint.c
> @@ -0,0 +1,415 @@
[...]
> +static int __devinit navpoint_probe(struct platform_device *pdev)
> +{
> + struct navpoint_platform_data *pdata = pdev->dev.platform_data;
> + int ret;
> + struct ssp_device *ssp;
> + struct input_dev *input;
> + struct driver_data *drv_data;
> +
> + if (gpio_is_valid(pdata->gpio)) {
If there is no platform_data provided, you will crash the kernel here.
Is it really desired? I mean, you need the SSP port, right?
But still, should we just check if platform_data is provided and if not,
call dev_err() and return -ENODEV?
> + ret = gpio_request(pdata->gpio, "SYNAPTICS_ON");
> + if (ret)
> + goto ret0;
> + ret = gpio_direction_output(pdata->gpio, 0);
> + if (ret)
> + goto ret1;
Can we please, have gpio_request_one() instead of the above 2 calls?
This will also remove the need for ret1 and just return ret;
> + }
> +
> + ssp = pxa_ssp_request(pdata->port, pdev->name);
> + if (!ssp) {
> + ret = -ENODEV;
> + goto ret1;
If no need for ret1, then here it can be just return -ENODEV;
> + }
> +
> + /* HaRET does not disable devices before jumping into Linux */
> + if (pxa_ssp_read_reg(ssp, SSCR0) & SSCR0_SSE) {
> + pxa_ssp_write_reg(ssp, SSCR0, 0);
> + dev_warn(&pdev->dev, "ssp%d already enabled\n", pdata->port);
> + }
> +
> + input = input_allocate_device();
> + if (!input) {
> + ret = -ENOMEM;
> + goto ret2;
> + }
> + input->name = pdev->name;
> + __set_bit(EV_KEY, input->evbit);
> + __set_bit(KEY_ENTER, input->keybit);
> + __set_bit(KEY_UP, input->keybit);
> + __set_bit(KEY_LEFT, input->keybit);
> + __set_bit(KEY_RIGHT, input->keybit);
> + __set_bit(KEY_DOWN, input->keybit);
> + input->open = navpoint_open;
> + input->close = navpoint_close;
> + input->dev.parent = &pdev->dev;
> +
> + drv_data = kzalloc(sizeof(*drv_data), GFP_KERNEL);
> + if (!drv_data) {
> + ret = -ENOMEM;
> + goto ret3;
> + }
> + drv_data->ssp = ssp;
> + drv_data->gpio = pdata->gpio;
> + drv_data->input = input;
> + platform_set_drvdata(pdev, drv_data);
> +
> + ret = request_threaded_irq(ssp->irq, navpoint_hardint, navpoint_softint,
> + 0, pdev->name, &pdev->dev);
> + if (ret)
> + goto ret4;
> +
> + ret = input_register_device(input);
> + if (ret)
> + goto ret5;
> +
> + dev_info(&pdev->dev, "ssp%d, irq %d\n", pdata->port, ssp->irq);
> +
> + return 0;
> +
> +ret5:
> + free_irq(ssp->irq, &pdev->dev);
> +ret4:
> + kfree(drv_data);
> +ret3:
> + input_free_device(input);
> +ret2:
> + pxa_ssp_free(ssp);
> +ret1:
> + if (gpio_is_valid(pdata->gpio))
> + gpio_free(pdata->gpio);
> +ret0:
> + return ret;
> +}
[...]
--
Regards,
Igor.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-04-12 14:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-08 13:00 [PATCH v7] input: Add Synaptics NavPoint (PXA27x SSP/SPI) driver Paul Parsons
2012-04-10 19:23 ` Philipp Zabel
2012-04-11 6:50 ` Dmitry Torokhov
2012-04-12 14:48 ` Igor Grinberg
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).