From: Varka Bhadram <varkabhadram@gmail.com>
To: Lars-Peter Clausen <lars@metafoo.de>,
Linus Walleij <linus.walleij@linaro.org>,
Alexandre Courbot <gnurou@gmail.com>
Cc: Michal Simek <michal.simek@xilinx.com>,
Harini Katakam <harini.katakam@xilinx.com>,
linux-gpio@vger.kernel.org
Subject: Re: [PATCH 3/3] gpio: zynq: Fix IRQ handlers
Date: Fri, 18 Jul 2014 15:28:40 +0530 [thread overview]
Message-ID: <53C8EFD0.3020008@gmail.com> (raw)
In-Reply-To: <1405677133-8706-3-git-send-email-lars@metafoo.de>
On 07/18/2014 03:22 PM, Lars-Peter Clausen wrote:
> drivers/gpio/gpio-zynq.c | 36 ++++++++++++++++++++++++++++--------
> 1 file changed, 28 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpio/gpio-zynq.c b/drivers/gpio/gpio-zynq.c
> index fa3ad23..bfbcf97 100644
> --- a/drivers/gpio/gpio-zynq.c
> +++ b/drivers/gpio/gpio-zynq.c
> @@ -95,6 +95,9 @@ struct zynq_gpio {
> struct clk *clk;
> };
>
> +static struct irq_chip zynq_gpio_level_irqchip;
> +static struct irq_chip zynq_gpio_edge_irqchip;
> +
> /**
> * zynq_gpio_get_bank_pin - Get the bank number and pin number within that bank
> * for a given pin in the GPIO device
> @@ -433,6 +436,15 @@ static int zynq_gpio_set_irq_type(struct irq_data *irq_data, unsigned int type)
> gpio->base_addr + ZYNQ_GPIO_INTPOL_OFFSET(bank_num));
> writel_relaxed(int_any,
> gpio->base_addr + ZYNQ_GPIO_INTANY_OFFSET(bank_num));
> +
> + if (type & IRQ_TYPE_LEVEL_MASK) {
> + __irq_set_chip_handler_name_locked(irq_data->irq,
> + &zynq_gpio_level_irqchip, handle_fasteoi_irq, NULL);
Should match open parenthesis:
__irq_set_chip_handler_name_locked(irq_data->irq,
&zynq_gpio_level_irqchip,
handle_fasteoi_irq, NULL);
> + } else {
> + __irq_set_chip_handler_name_locked(irq_data->irq,
> + &zynq_gpio_edge_irqchip, handle_level_irq, NULL);
Dto..
> + }
> +
> return 0;
> }
>
> @@ -447,9 +459,21 @@ static int zynq_gpio_set_wake(struct irq_data *data, unsigned int on)
> }
>
> /* irq chip descriptor */
> -static struct irq_chip zynq_gpio_irqchip = {
> +static struct irq_chip zynq_gpio_level_irqchip = {
> .name = DRIVER_NAME,
> .irq_enable = zynq_gpio_irq_enable,
> + .irq_eoi = zynq_gpio_irq_ack,
> + .irq_mask = zynq_gpio_irq_mask,
> + .irq_unmask = zynq_gpio_irq_unmask,
> + .irq_set_type = zynq_gpio_set_irq_type,
> + .irq_set_wake = zynq_gpio_set_wake,
> + .flags = IRQCHIP_EOI_THREADED | IRQCHIP_EOI_IF_HANDLED,
> +};
> +
> +static struct irq_chip zynq_gpio_edge_irqchip = {
> + .name = DRIVER_NAME,
> + .irq_enable = zynq_gpio_irq_enable,
> + .irq_ack = zynq_gpio_irq_ack,
> .irq_mask = zynq_gpio_irq_mask,
> .irq_unmask = zynq_gpio_irq_unmask,
> .irq_set_type = zynq_gpio_set_irq_type,
> @@ -493,10 +517,6 @@ static void zynq_gpio_irqhandler(unsigned int irq, struct irq_desc *desc)
> offset + bank_offset);
> generic_handle_irq(gpio_irq);
> }
> -
> - /* clear IRQ in HW */
> - writel_relaxed(int_sts, gpio->base_addr +
> - ZYNQ_GPIO_INTSTS_OFFSET(bank_num));
> }
> }
>
> @@ -634,14 +654,14 @@ static int zynq_gpio_probe(struct platform_device *pdev)
> writel_relaxed(ZYNQ_GPIO_IXR_DISABLE_ALL, gpio->base_addr +
> ZYNQ_GPIO_INTDIS_OFFSET(bank_num));
>
> - ret = gpiochip_irqchip_add(chip, &zynq_gpio_irqchip, 0,
> - handle_simple_irq, IRQ_TYPE_NONE);
> + ret = gpiochip_irqchip_add(chip, &zynq_gpio_edge_irqchip, 0,
> + handle_level_irq, IRQ_TYPE_NONE);
> if (ret) {
> dev_err(&pdev->dev, "Failed to add irq chip\n");
> goto err_rm_gpiochip;
> }
>
> - gpiochip_set_chained_irqchip(chip, &zynq_gpio_irqchip, irq,
> + gpiochip_set_chained_irqchip(chip, &zynq_gpio_edge_irqchip, irq,
> zynq_gpio_irqhandler);
>
> pm_runtime_set_active(&pdev->dev);
--
Regards,
Varka Bhadram.
next prev parent reply other threads:[~2014-07-18 9:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-18 9:52 [PATCH 1/3] gpio: zynq: Take bank offset into account when reporting a IRQ Lars-Peter Clausen
2014-07-18 9:52 ` [PATCH 2/3] gpio: zynq: Clear pending interrupt when enabling " Lars-Peter Clausen
2014-07-23 14:31 ` Linus Walleij
2014-07-23 17:42 ` Sören Brinkmann
2014-07-24 0:08 ` Alexandre Courbot
2014-07-24 7:36 ` Harini Katakam
2014-07-18 9:52 ` [PATCH 3/3] gpio: zynq: Fix IRQ handlers Lars-Peter Clausen
2014-07-18 9:58 ` Varka Bhadram [this message]
2014-07-23 14:36 ` Linus Walleij
2014-07-31 16:19 ` Sören Brinkmann
2014-08-11 7:03 ` Linus Walleij
2014-07-19 4:14 ` [PATCH 1/3] gpio: zynq: Take bank offset into account when reporting a IRQ Alexandre Courbot
2014-07-23 14:22 ` Linus Walleij
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53C8EFD0.3020008@gmail.com \
--to=varkabhadram@gmail.com \
--cc=gnurou@gmail.com \
--cc=harini.katakam@xilinx.com \
--cc=lars@metafoo.de \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=michal.simek@xilinx.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).