* [PATCH 5/7] staging: media/lirc: switch to use gpiolib
@ 2013-09-10 12:31 Linus Walleij
2013-09-12 22:18 ` Greg Kroah-Hartman
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Linus Walleij @ 2013-09-10 12:31 UTC (permalink / raw)
To: linux-gpio, Imre Kaloz, Krzysztof Halasa, Greg Kroah-Hartman
Cc: Alexandre Courbot, linux-arm-kernel, Linus Walleij
The lirc serial module has special hooks to work with NSLU2,
switch these over to use gpiolib, as that is available on the
ixp4 platform.
Not even compile tested as there is no way to select this
driver from menuconfig on the ixp4 platform.
Cc: Imre Kaloz <kaloz@openwrt.org>
Cc: Krzysztof Halasa <khc@pm.waw.pl>
Cc: Alexandre Courbot <acourbot@nvidia.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Hi Greg: I'm seeking an ACK on this patch to take it through
the GPIO tree as part of a clean-up attempt to remove custom
GPIO APIs.
---
drivers/staging/media/lirc/lirc_serial.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/media/lirc/lirc_serial.c b/drivers/staging/media/lirc/lirc_serial.c
index af08e67..f6bc4c9 100644
--- a/drivers/staging/media/lirc/lirc_serial.c
+++ b/drivers/staging/media/lirc/lirc_serial.c
@@ -67,7 +67,7 @@
#include <linux/delay.h>
#include <linux/poll.h>
#include <linux/platform_device.h>
-
+#include <linux/gpio.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/fcntl.h>
@@ -321,7 +321,7 @@ static void on(void)
* status LED and ground
*/
if (type == LIRC_NSLU2) {
- gpio_line_set(NSLU2_LED_GRN, IXP4XX_GPIO_LOW);
+ gpio_set_value(NSLU2_LED_GRN, 0);
return;
}
#endif
@@ -335,7 +335,7 @@ static void off(void)
{
#ifdef CONFIG_LIRC_SERIAL_NSLU2
if (type == LIRC_NSLU2) {
- gpio_line_set(NSLU2_LED_GRN, IXP4XX_GPIO_HIGH);
+ gpio_set_value(NSLU2_LED_GRN, 1);
return;
}
#endif
@@ -839,6 +839,16 @@ static int lirc_serial_probe(struct platform_device *dev)
{
int i, nlow, nhigh, result;
+#ifdef CONFIG_LIRC_SERIAL_NSLU2
+ /* This GPIO is used for a LED on the NSLU2 */
+ result = devm_gpio_request(dev, NSLU2_LED_GRN, "lirc-serial");
+ if (result)
+ return result;
+ result = gpio_direction_output(NSLU2_LED_GRN, 0);
+ if (result)
+ return result;
+#endif
+
result = request_irq(irq, irq_handler,
(share_irq ? IRQF_SHARED : 0),
LIRC_DRIVER_NAME, (void *)&hardware);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 5/7] staging: media/lirc: switch to use gpiolib
2013-09-10 12:31 [PATCH 5/7] staging: media/lirc: switch to use gpiolib Linus Walleij
@ 2013-09-12 22:18 ` Greg Kroah-Hartman
2013-09-13 7:14 ` Linus Walleij
2013-09-13 12:15 ` Krzysztof Halasa
2 siblings, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2013-09-12 22:18 UTC (permalink / raw)
To: Linus Walleij
Cc: linux-gpio, Imre Kaloz, Krzysztof Halasa, Alexandre Courbot,
linux-arm-kernel
On Tue, Sep 10, 2013 at 02:31:23PM +0200, Linus Walleij wrote:
> The lirc serial module has special hooks to work with NSLU2,
> switch these over to use gpiolib, as that is available on the
> ixp4 platform.
>
> Not even compile tested as there is no way to select this
> driver from menuconfig on the ixp4 platform.
>
> Cc: Imre Kaloz <kaloz@openwrt.org>
> Cc: Krzysztof Halasa <khc@pm.waw.pl>
> Cc: Alexandre Courbot <acourbot@nvidia.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Hi Greg: I'm seeking an ACK on this patch to take it through
> the GPIO tree as part of a clean-up attempt to remove custom
> GPIO APIs.
I'm not the one responsible for drivers/staging/media/ sorry, that's
Mauro.
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/7] staging: media/lirc: switch to use gpiolib
2013-09-10 12:31 [PATCH 5/7] staging: media/lirc: switch to use gpiolib Linus Walleij
2013-09-12 22:18 ` Greg Kroah-Hartman
@ 2013-09-13 7:14 ` Linus Walleij
2013-09-20 19:24 ` Linus Walleij
2013-09-13 12:15 ` Krzysztof Halasa
2 siblings, 1 reply; 6+ messages in thread
From: Linus Walleij @ 2013-09-13 7:14 UTC (permalink / raw)
To: linux-gpio@vger.kernel.org, Imre Kaloz, Krzysztof Halasa,
Greg Kroah-Hartman, linux-media@vger.kernel.org,
Mauro Carvalho Chehab
Cc: Alexandre Courbot, linux-arm-kernel@lists.infradead.org,
Linus Walleij
Hi Mauro,
On Tue, Sep 10, 2013 at 2:31 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> The lirc serial module has special hooks to work with NSLU2,
> switch these over to use gpiolib, as that is available on the
> ixp4 platform.
>
> Not even compile tested as there is no way to select this
> driver from menuconfig on the ixp4 platform.
>
> Cc: Imre Kaloz <kaloz@openwrt.org>
> Cc: Krzysztof Halasa <khc@pm.waw.pl>
> Cc: Alexandre Courbot <acourbot@nvidia.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Hi Greg: I'm seeking an ACK on this patch to take it through
> the GPIO tree as part of a clean-up attempt to remove custom
> GPIO APIs.
Could you ACK this patch if it looks OK to you?
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/7] staging: media/lirc: switch to use gpiolib
2013-09-10 12:31 [PATCH 5/7] staging: media/lirc: switch to use gpiolib Linus Walleij
2013-09-12 22:18 ` Greg Kroah-Hartman
2013-09-13 7:14 ` Linus Walleij
@ 2013-09-13 12:15 ` Krzysztof Halasa
2013-09-20 19:28 ` Linus Walleij
2 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Halasa @ 2013-09-13 12:15 UTC (permalink / raw)
To: Linus Walleij
Cc: linux-gpio, Imre Kaloz, Alexandre Courbot, linux-arm-kernel,
Greg Kroah-Hartman
Linus Walleij <linus.walleij@linaro.org> writes:
> +++ b/drivers/staging/media/lirc/lirc_serial.c
> @@ -839,6 +839,16 @@ static int lirc_serial_probe(struct platform_device *dev)
> {
> int i, nlow, nhigh, result;
>
> +#ifdef CONFIG_LIRC_SERIAL_NSLU2
> + /* This GPIO is used for a LED on the NSLU2 */
> + result = devm_gpio_request(dev, NSLU2_LED_GRN, "lirc-serial");
Will this succeed with the LED driver already loaded? Should the user
unload it first?
Otherwise, while I don't have any of the hw in question, I can't see
other obvious problems, so for the whole patchset:
Acked-by: Krzysztof Halasa <khc@pm.waw.pl>
--
Krzysztof Halasa
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/7] staging: media/lirc: switch to use gpiolib
2013-09-13 7:14 ` Linus Walleij
@ 2013-09-20 19:24 ` Linus Walleij
0 siblings, 0 replies; 6+ messages in thread
From: Linus Walleij @ 2013-09-20 19:24 UTC (permalink / raw)
To: linux-gpio@vger.kernel.org, Imre Kaloz, Krzysztof Halasa,
Greg Kroah-Hartman, linux-media@vger.kernel.org,
Mauro Carvalho Chehab
Cc: Alexandre Courbot, linux-arm-kernel@lists.infradead.org,
Linus Walleij
On Fri, Sep 13, 2013 at 9:14 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> Hi Mauro,
>
> On Tue, Sep 10, 2013 at 2:31 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
>
>> The lirc serial module has special hooks to work with NSLU2,
>> switch these over to use gpiolib, as that is available on the
>> ixp4 platform.
>>
>> Not even compile tested as there is no way to select this
>> driver from menuconfig on the ixp4 platform.
>>
>> Cc: Imre Kaloz <kaloz@openwrt.org>
>> Cc: Krzysztof Halasa <khc@pm.waw.pl>
>> Cc: Alexandre Courbot <acourbot@nvidia.com>
>> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
>> ---
>> Hi Greg: I'm seeking an ACK on this patch to take it through
>> the GPIO tree as part of a clean-up attempt to remove custom
>> GPIO APIs.
>
> Could you ACK this patch if it looks OK to you?
Mauro, ping on this.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/7] staging: media/lirc: switch to use gpiolib
2013-09-13 12:15 ` Krzysztof Halasa
@ 2013-09-20 19:28 ` Linus Walleij
0 siblings, 0 replies; 6+ messages in thread
From: Linus Walleij @ 2013-09-20 19:28 UTC (permalink / raw)
To: Krzysztof Halasa
Cc: linux-gpio@vger.kernel.org, Imre Kaloz, Greg Kroah-Hartman,
Alexandre Courbot, linux-arm-kernel@lists.infradead.org
On Fri, Sep 13, 2013 at 2:15 PM, Krzysztof Halasa <khc@pm.waw.pl> wrote:
> Linus Walleij <linus.walleij@linaro.org> writes:
>
>> +++ b/drivers/staging/media/lirc/lirc_serial.c
>> @@ -839,6 +839,16 @@ static int lirc_serial_probe(struct platform_device *dev)
>> {
>> int i, nlow, nhigh, result;
>>
>> +#ifdef CONFIG_LIRC_SERIAL_NSLU2
>> + /* This GPIO is used for a LED on the NSLU2 */
>> + result = devm_gpio_request(dev, NSLU2_LED_GRN, "lirc-serial");
>
> Will this succeed with the LED driver already loaded? Should the user
> unload it first?
Hm if this driver should use this as a LED it needs to register
a trigger for that GPIO LED instead. A GPIO can not be used by
two consumers at the same time...
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-09-20 19:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-10 12:31 [PATCH 5/7] staging: media/lirc: switch to use gpiolib Linus Walleij
2013-09-12 22:18 ` Greg Kroah-Hartman
2013-09-13 7:14 ` Linus Walleij
2013-09-20 19:24 ` Linus Walleij
2013-09-13 12:15 ` Krzysztof Halasa
2013-09-20 19:28 ` Linus Walleij
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).