Re: [PATCH] input: move gpio mouse to managed api

2017-05-21 Thread Bram Vlerick
Hi Dmitry,

I've updated the patch with your comments, unregistering first before
freeing the gpios.

In regards of your comment for the gpio-keys-polled update, I've just
started with kernel dev and thought moving old drivers to the new
managed api was a good start.
So I don't really know how to start that. However I'm willing to look
at it if you could give some pointers where to start/how to tacle this.

Regards
Bram

On Sat, 2017-05-20 at 15:13 +0200, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 8 ++--
>  1 file changed, 2 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/input/mouse/gpio_mouse.c
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..2fc8ddaf0175 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device
> *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input
> device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct
> platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input
> device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct
> platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -155,7 +152,6 @@ static int gpio_mouse_remove(struct
> platform_device *pdev)
>   int pin, i;
>  
>   input_unregister_polled_device(input);
> - input_free_polled_device(input);
>  
>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];


Re: [PATCH] input: move gpio mouse to managed api

2017-05-21 Thread Bram Vlerick
Hi Dmitry,

I've updated the patch with your comments, unregistering first before
freeing the gpios.

In regards of your comment for the gpio-keys-polled update, I've just
started with kernel dev and thought moving old drivers to the new
managed api was a good start.
So I don't really know how to start that. However I'm willing to look
at it if you could give some pointers where to start/how to tacle this.

Regards
Bram

On Sat, 2017-05-20 at 15:13 +0200, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 8 ++--
>  1 file changed, 2 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/input/mouse/gpio_mouse.c
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..2fc8ddaf0175 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device
> *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input
> device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct
> platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input
> device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct
> platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -155,7 +152,6 @@ static int gpio_mouse_remove(struct
> platform_device *pdev)
>   int pin, i;
>  
>   input_unregister_polled_device(input);
> - input_free_polled_device(input);
>  
>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];


[PATCH] input: move gpio mouse to managed api

2017-05-20 Thread Bram Vlerick
Signed-off-by: Bram Vlerick 
---
 drivers/input/mouse/gpio_mouse.c | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c
index ced07391304b..2fc8ddaf0175 100644
--- a/drivers/input/mouse/gpio_mouse.c
+++ b/drivers/input/mouse/gpio_mouse.c
@@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
}
}
 
-   input_poll = input_allocate_polled_device();
+   input_poll = devm_input_allocate_polled_device(>dev);
if (!input_poll) {
dev_err(>dev, "not enough memory for input device\n");
error = -ENOMEM;
@@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
error = input_register_polled_device(input_poll);
if (error) {
dev_err(>dev, "could not register input device\n");
-   goto out_free_polldev;
+   goto out_free_gpios;
}
 
dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
@@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
 
return 0;
 
- out_free_polldev:
-   input_free_polled_device(input_poll);
-
  out_free_gpios:
while (--i >= 0) {
pin = pdata->pins[i];
@@ -155,7 +152,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
int pin, i;
 
input_unregister_polled_device(input);
-   input_free_polled_device(input);
 
for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
pin = pdata->pins[i];
-- 
2.12.2



[PATCH] input: move gpio mouse to managed api

2017-05-20 Thread Bram Vlerick
Signed-off-by: Bram Vlerick 
---
 drivers/input/mouse/gpio_mouse.c | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c
index ced07391304b..2fc8ddaf0175 100644
--- a/drivers/input/mouse/gpio_mouse.c
+++ b/drivers/input/mouse/gpio_mouse.c
@@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
}
}
 
-   input_poll = input_allocate_polled_device();
+   input_poll = devm_input_allocate_polled_device(>dev);
if (!input_poll) {
dev_err(>dev, "not enough memory for input device\n");
error = -ENOMEM;
@@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
error = input_register_polled_device(input_poll);
if (error) {
dev_err(>dev, "could not register input device\n");
-   goto out_free_polldev;
+   goto out_free_gpios;
}
 
dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
@@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
 
return 0;
 
- out_free_polldev:
-   input_free_polled_device(input_poll);
-
  out_free_gpios:
while (--i >= 0) {
pin = pdata->pins[i];
@@ -155,7 +152,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
int pin, i;
 
input_unregister_polled_device(input);
-   input_free_polled_device(input);
 
for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
pin = pdata->pins[i];
-- 
2.12.2



Re: [PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Dmitry Torokhov
Hi Bram,

On Fri, May 19, 2017 at 05:35:02PM +0200, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 10 ++
>  1 file changed, 2 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/input/mouse/gpio_mouse.c 
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..7d56fd5173bc 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
>   struct gpio_mouse_platform_data *pdata = input->private;
>   int pin, i;
>  
> - input_unregister_polled_device(input);
> - input_free_polled_device(input);
> -

This is wrong, as you now letting input device be active while gpios
are free.

Frankly, I wonder if we could not retire this driver by making gpio-keys
be more flexible... I think we discussed options to allow mode where
gpio-keys-polled "sums" the gpios for the same axis and report the
value.

>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];
>   if (pin >= 0)
> -- 
> 2.12.2
> 

Thanks.

-- 
Dmitry


Re: [PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Dmitry Torokhov
Hi Bram,

On Fri, May 19, 2017 at 05:35:02PM +0200, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 10 ++
>  1 file changed, 2 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/input/mouse/gpio_mouse.c 
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..7d56fd5173bc 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
>   struct gpio_mouse_platform_data *pdata = input->private;
>   int pin, i;
>  
> - input_unregister_polled_device(input);
> - input_free_polled_device(input);
> -

This is wrong, as you now letting input device be active while gpios
are free.

Frankly, I wonder if we could not retire this driver by making gpio-keys
be more flexible... I think we discussed options to allow mode where
gpio-keys-polled "sums" the gpios for the same axis and report the
value.

>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];
>   if (pin >= 0)
> -- 
> 2.12.2
> 

Thanks.

-- 
Dmitry


Re: [PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Michael Opdenacker
On 19/05/2017 17:35, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 10 ++
>  1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/input/mouse/gpio_mouse.c 
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..7d56fd5173bc 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
>   struct gpio_mouse_platform_data *pdata = input->private;
>   int pin, i;
>  
> - input_unregister_polled_device(input);
> - input_free_polled_device(input);
> -
>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];
>   if (pin >= 0)

Reviewed-by: Michael Opdenacker 

-- 
Michael Opdenacker, CEO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com



Re: [PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Michael Opdenacker
On 19/05/2017 17:35, Bram Vlerick wrote:
> Signed-off-by: Bram Vlerick 
> ---
>  drivers/input/mouse/gpio_mouse.c | 10 ++
>  1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/input/mouse/gpio_mouse.c 
> b/drivers/input/mouse/gpio_mouse.c
> index ced07391304b..7d56fd5173bc 100644
> --- a/drivers/input/mouse/gpio_mouse.c
> +++ b/drivers/input/mouse/gpio_mouse.c
> @@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   }
>   }
>  
> - input_poll = input_allocate_polled_device();
> + input_poll = devm_input_allocate_polled_device(>dev);
>   if (!input_poll) {
>   dev_err(>dev, "not enough memory for input device\n");
>   error = -ENOMEM;
> @@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>   error = input_register_polled_device(input_poll);
>   if (error) {
>   dev_err(>dev, "could not register input device\n");
> - goto out_free_polldev;
> + goto out_free_gpios;
>   }
>  
>   dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
> @@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
>  
>   return 0;
>  
> - out_free_polldev:
> - input_free_polled_device(input_poll);
> -
>   out_free_gpios:
>   while (--i >= 0) {
>   pin = pdata->pins[i];
> @@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
>   struct gpio_mouse_platform_data *pdata = input->private;
>   int pin, i;
>  
> - input_unregister_polled_device(input);
> - input_free_polled_device(input);
> -
>   for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
>   pin = pdata->pins[i];
>   if (pin >= 0)

Reviewed-by: Michael Opdenacker 

-- 
Michael Opdenacker, CEO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com



[PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Bram Vlerick
Signed-off-by: Bram Vlerick 
---
 drivers/input/mouse/gpio_mouse.c | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c
index ced07391304b..7d56fd5173bc 100644
--- a/drivers/input/mouse/gpio_mouse.c
+++ b/drivers/input/mouse/gpio_mouse.c
@@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
}
}
 
-   input_poll = input_allocate_polled_device();
+   input_poll = devm_input_allocate_polled_device(>dev);
if (!input_poll) {
dev_err(>dev, "not enough memory for input device\n");
error = -ENOMEM;
@@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
error = input_register_polled_device(input_poll);
if (error) {
dev_err(>dev, "could not register input device\n");
-   goto out_free_polldev;
+   goto out_free_gpios;
}
 
dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
@@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
 
return 0;
 
- out_free_polldev:
-   input_free_polled_device(input_poll);
-
  out_free_gpios:
while (--i >= 0) {
pin = pdata->pins[i];
@@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
struct gpio_mouse_platform_data *pdata = input->private;
int pin, i;
 
-   input_unregister_polled_device(input);
-   input_free_polled_device(input);
-
for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
pin = pdata->pins[i];
if (pin >= 0)
-- 
2.12.2



[PATCH] input: move gpio mouse to managed api

2017-05-19 Thread Bram Vlerick
Signed-off-by: Bram Vlerick 
---
 drivers/input/mouse/gpio_mouse.c | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c
index ced07391304b..7d56fd5173bc 100644
--- a/drivers/input/mouse/gpio_mouse.c
+++ b/drivers/input/mouse/gpio_mouse.c
@@ -93,7 +93,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
}
}
 
-   input_poll = input_allocate_polled_device();
+   input_poll = devm_input_allocate_polled_device(>dev);
if (!input_poll) {
dev_err(>dev, "not enough memory for input device\n");
error = -ENOMEM;
@@ -124,7 +124,7 @@ static int gpio_mouse_probe(struct platform_device *pdev)
error = input_register_polled_device(input_poll);
if (error) {
dev_err(>dev, "could not register input device\n");
-   goto out_free_polldev;
+   goto out_free_gpios;
}
 
dev_dbg(>dev, "%d ms scan time, buttons: %s%s%s\n",
@@ -135,9 +135,6 @@ static int gpio_mouse_probe(struct platform_device *pdev)
 
return 0;
 
- out_free_polldev:
-   input_free_polled_device(input_poll);
-
  out_free_gpios:
while (--i >= 0) {
pin = pdata->pins[i];
@@ -154,9 +151,6 @@ static int gpio_mouse_remove(struct platform_device *pdev)
struct gpio_mouse_platform_data *pdata = input->private;
int pin, i;
 
-   input_unregister_polled_device(input);
-   input_free_polled_device(input);
-
for (i = 0; i < GPIO_MOUSE_PIN_MAX; i++) {
pin = pdata->pins[i];
if (pin >= 0)
-- 
2.12.2