From: sebastian.hesselbarth@gmail.com (Sebastian Hesselbarth)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] irqchip: irq-dove: Add PMU interrupt controller.
Date: Tue, 01 Oct 2013 13:22:41 +0200 [thread overview]
Message-ID: <524AB081.5030505@gmail.com> (raw)
In-Reply-To: <1380577122-8841-1-git-send-email-andrew@lunn.ch>
On 09/30/2013 11:38 PM, Andrew Lunn wrote:
> Dove has a Power Management Unit with its own interrupt
> controller. This is chained on the main interrupt controller. Add a
> driver, making use of generic chip where possible.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Andrew,
thanks for providing pmu irq driver. I also tested the whole patch set
with the RTC driver example on CuBox:
Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Anyway, I have one little nit below.
[...]
> diff --git a/drivers/irqchip/irq-dove.c b/drivers/irqchip/irq-dove.c
> new file mode 100644
> index 0000000..de66f02
> --- /dev/null
> +++ b/drivers/irqchip/irq-dove.c
> @@ -0,0 +1,127 @@
> +/*
> + * Marvell Dove SoCs PMU IRQ chip driver.
> + *
> + * Andrew Lunn <andrew@lunn.ch>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#include <linux/io.h>
> +#include <linux/irq.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_irq.h>
> +#include <asm/exception.h>
> +#include <asm/mach/irq.h>
> +
> +#include "irqchip.h"
> +
> +#define DOVE_PMU_IRQ_CAUSE 0x00
> +#define DOVE_PMU_IRQ_MASK 0x04
> +
> +static void dove_pmu_irq_handler(unsigned int irq, struct irq_desc *desc)
> +{
> + struct irq_domain *d = irq_get_handler_data(irq);
> + struct irq_chip_generic *gc = irq_get_domain_generic_chip(d, 0);
> + u32 stat = readl_relaxed(gc->reg_base + DOVE_PMU_IRQ_CAUSE) &
> + gc->mask_cache;
> +
> + while (stat) {
> + u32 hwirq = ffs(stat) - 1;
> +
> + generic_handle_irq(irq_find_mapping(d, gc->irq_base + hwirq));
> + stat &= ~(1 << hwirq);
> + }
> +}
> +
> +static void pmu_irq_ack(struct irq_data *d)
> +{
> + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
> + struct irq_chip_type *ct = irq_data_get_chip_type(d);
> + u32 mask = ~d->mask;
> +
> + /*
> + * The PMU mask register is not RW0C: it is RW. This means that
> + * the bits take whatever value is written to them; if you write
> + * a '1', you will set the interrupt.
> + *
> + * Unfortunately this means there is NO race free way to clear
> + * these interrupts.
> + *
> + * So, let's structure the code so that the window is as small as
> + * possible.
> + */
> + irq_gc_lock(gc);
> +
nit: superfluous empty line
> + mask &= irq_reg_readl(gc->reg_base + ct->regs.ack);
> + irq_reg_writel(mask, gc->reg_base + ct->regs.ack);
> + irq_gc_unlock(gc);
> +}
> +
> +static int __init dove_pmu_irq_init(struct device_node *np,
> + struct device_node *parent)
> +{
> + unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
> + struct resource r;
> + struct irq_domain *domain;
> + struct irq_chip_generic *gc;
> + int ret, irq, nrirqs = 7;
> +
> + domain = irq_domain_add_linear(np, nrirqs,
> + &irq_generic_chip_ops, NULL);
> + if (!domain) {
> + pr_err("%s: unable to add irq domain\n", np->name);
> + return -ENOMEM;
> + }
> +
> + ret = irq_alloc_domain_generic_chips(domain, nrirqs, 1, np->name,
> + handle_level_irq, clr, 0, IRQ_GC_INIT_MASK_CACHE);
> + if (ret) {
> + pr_err("%s: unable to alloc irq domain gc\n", np->name);
> + return ret;
> + }
> +
> + ret = of_address_to_resource(np, 0, &r);
> + if (ret) {
> + pr_err("%s: unable to get resource\n", np->name);
> + return ret;
> + }
> +
> + if (!request_mem_region(r.start, resource_size(&r), np->name)) {
> + pr_err("%s: unable to request mem region\n", np->name);
> + return -ENOMEM;
> + }
> +
> + /* Map the parent interrupt for the chained handler */
> + irq = irq_of_parse_and_map(np, 0);
> + if (irq <= 0) {
> + pr_err("%s: unable to parse irq\n", np->name);
> + return -EINVAL;
> + }
> +
> + gc = irq_get_domain_generic_chip(domain, 0);
> + gc->reg_base = ioremap(r.start, resource_size(&r));
> + if (!gc->reg_base) {
> + pr_err("%s: unable to map resource\n", np->name);
> + return -ENOMEM;
> + }
> +
> + gc->chip_types[0].regs.ack = DOVE_PMU_IRQ_CAUSE;
> + gc->chip_types[0].regs.mask = DOVE_PMU_IRQ_MASK;
> + gc->chip_types[0].chip.irq_ack = pmu_irq_ack;
> + gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
> + gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
> +
> + /* mask and clear all interrupts */
> + writel(0, gc->reg_base + DOVE_PMU_IRQ_MASK);
> + writel(0, gc->reg_base + DOVE_PMU_IRQ_CAUSE);
> +
> + irq_set_handler_data(irq, domain);
> + irq_set_chained_handler(irq, dove_pmu_irq_handler);
> +
> + return 0;
> +}
> +IRQCHIP_DECLARE(dove_pmu_intc,
> + "marvell,dove-pmu-intc", dove_pmu_irq_init);
>
WARNING: multiple messages have this Message-ID (diff)
From: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>,
Sebastian Hesselbarth
<sebastian.hesselbarth-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>,
Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>,
tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org
Cc: linux ARM
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
pawel.moll-5wv7dgnIgG8@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org,
ian.campbell-Sxgqhf6Nn4DQT0dZR+AlfA@public.gmane.org
Subject: Re: [PATCH 1/3] irqchip: irq-dove: Add PMU interrupt controller.
Date: Tue, 01 Oct 2013 13:22:41 +0200 [thread overview]
Message-ID: <524AB081.5030505@gmail.com> (raw)
In-Reply-To: <1380577122-8841-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
On 09/30/2013 11:38 PM, Andrew Lunn wrote:
> Dove has a Power Management Unit with its own interrupt
> controller. This is chained on the main interrupt controller. Add a
> driver, making use of generic chip where possible.
>
> Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
Andrew,
thanks for providing pmu irq driver. I also tested the whole patch set
with the RTC driver example on CuBox:
Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Anyway, I have one little nit below.
[...]
> diff --git a/drivers/irqchip/irq-dove.c b/drivers/irqchip/irq-dove.c
> new file mode 100644
> index 0000000..de66f02
> --- /dev/null
> +++ b/drivers/irqchip/irq-dove.c
> @@ -0,0 +1,127 @@
> +/*
> + * Marvell Dove SoCs PMU IRQ chip driver.
> + *
> + * Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#include <linux/io.h>
> +#include <linux/irq.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_irq.h>
> +#include <asm/exception.h>
> +#include <asm/mach/irq.h>
> +
> +#include "irqchip.h"
> +
> +#define DOVE_PMU_IRQ_CAUSE 0x00
> +#define DOVE_PMU_IRQ_MASK 0x04
> +
> +static void dove_pmu_irq_handler(unsigned int irq, struct irq_desc *desc)
> +{
> + struct irq_domain *d = irq_get_handler_data(irq);
> + struct irq_chip_generic *gc = irq_get_domain_generic_chip(d, 0);
> + u32 stat = readl_relaxed(gc->reg_base + DOVE_PMU_IRQ_CAUSE) &
> + gc->mask_cache;
> +
> + while (stat) {
> + u32 hwirq = ffs(stat) - 1;
> +
> + generic_handle_irq(irq_find_mapping(d, gc->irq_base + hwirq));
> + stat &= ~(1 << hwirq);
> + }
> +}
> +
> +static void pmu_irq_ack(struct irq_data *d)
> +{
> + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
> + struct irq_chip_type *ct = irq_data_get_chip_type(d);
> + u32 mask = ~d->mask;
> +
> + /*
> + * The PMU mask register is not RW0C: it is RW. This means that
> + * the bits take whatever value is written to them; if you write
> + * a '1', you will set the interrupt.
> + *
> + * Unfortunately this means there is NO race free way to clear
> + * these interrupts.
> + *
> + * So, let's structure the code so that the window is as small as
> + * possible.
> + */
> + irq_gc_lock(gc);
> +
nit: superfluous empty line
> + mask &= irq_reg_readl(gc->reg_base + ct->regs.ack);
> + irq_reg_writel(mask, gc->reg_base + ct->regs.ack);
> + irq_gc_unlock(gc);
> +}
> +
> +static int __init dove_pmu_irq_init(struct device_node *np,
> + struct device_node *parent)
> +{
> + unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
> + struct resource r;
> + struct irq_domain *domain;
> + struct irq_chip_generic *gc;
> + int ret, irq, nrirqs = 7;
> +
> + domain = irq_domain_add_linear(np, nrirqs,
> + &irq_generic_chip_ops, NULL);
> + if (!domain) {
> + pr_err("%s: unable to add irq domain\n", np->name);
> + return -ENOMEM;
> + }
> +
> + ret = irq_alloc_domain_generic_chips(domain, nrirqs, 1, np->name,
> + handle_level_irq, clr, 0, IRQ_GC_INIT_MASK_CACHE);
> + if (ret) {
> + pr_err("%s: unable to alloc irq domain gc\n", np->name);
> + return ret;
> + }
> +
> + ret = of_address_to_resource(np, 0, &r);
> + if (ret) {
> + pr_err("%s: unable to get resource\n", np->name);
> + return ret;
> + }
> +
> + if (!request_mem_region(r.start, resource_size(&r), np->name)) {
> + pr_err("%s: unable to request mem region\n", np->name);
> + return -ENOMEM;
> + }
> +
> + /* Map the parent interrupt for the chained handler */
> + irq = irq_of_parse_and_map(np, 0);
> + if (irq <= 0) {
> + pr_err("%s: unable to parse irq\n", np->name);
> + return -EINVAL;
> + }
> +
> + gc = irq_get_domain_generic_chip(domain, 0);
> + gc->reg_base = ioremap(r.start, resource_size(&r));
> + if (!gc->reg_base) {
> + pr_err("%s: unable to map resource\n", np->name);
> + return -ENOMEM;
> + }
> +
> + gc->chip_types[0].regs.ack = DOVE_PMU_IRQ_CAUSE;
> + gc->chip_types[0].regs.mask = DOVE_PMU_IRQ_MASK;
> + gc->chip_types[0].chip.irq_ack = pmu_irq_ack;
> + gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
> + gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
> +
> + /* mask and clear all interrupts */
> + writel(0, gc->reg_base + DOVE_PMU_IRQ_MASK);
> + writel(0, gc->reg_base + DOVE_PMU_IRQ_CAUSE);
> +
> + irq_set_handler_data(irq, domain);
> + irq_set_chained_handler(irq, dove_pmu_irq_handler);
> +
> + return 0;
> +}
> +IRQCHIP_DECLARE(dove_pmu_intc,
> + "marvell,dove-pmu-intc", dove_pmu_irq_init);
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2013-10-01 11:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-30 21:38 [PATCH 1/3] irqchip: irq-dove: Add PMU interrupt controller Andrew Lunn
2013-09-30 21:38 ` Andrew Lunn
2013-09-30 21:38 ` [PATCH 2/3] ARM: Dove: Add DT node for " Andrew Lunn
2013-09-30 21:38 ` [PATCH 3/3] ARM: Dove: Add RTC interrupt via " Andrew Lunn
2013-10-01 0:54 ` [PATCH 1/3] irqchip: irq-dove: Add " Jason Cooper
2013-10-01 0:54 ` Jason Cooper
2013-10-08 16:34 ` Jason Cooper
2013-10-08 16:34 ` Jason Cooper
2013-10-01 11:22 ` Sebastian Hesselbarth [this message]
2013-10-01 11:22 ` Sebastian Hesselbarth
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=524AB081.5030505@gmail.com \
--to=sebastian.hesselbarth@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.