From: Julien Grall <julien.grall@linaro.org>
To: xen-devel@lists.xen.org
Cc: patches@linaro.org, ian.campbell@citrix.com,
Julien Grall <julien.grall@linaro.org>,
stefano.stabellini@eu.citrix.com
Subject: [PATCH v3 1/6] xen/arm: use cpumask_t to describe cpu mask in gic_route_dt_irq
Date: Wed, 18 Sep 2013 14:15:17 +0100 [thread overview]
Message-ID: <1379510122-9467-2-git-send-email-julien.grall@linaro.org> (raw)
In-Reply-To: <1379510122-9467-1-git-send-email-julien.grall@linaro.org>
Replace by cpumask_t to take advantage of cpumask_* helpers.
Signed-off-by: Julien Grall <julien.grall@linaro.org>
---
Changes in v2:
- Rework commit message
---
xen/arch/arm/gic.c | 20 ++++++++++++--------
xen/arch/arm/time.c | 6 +++---
xen/include/asm-arm/gic.h | 3 ++-
3 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c
index aff57b9..091eb36 100644
--- a/xen/arch/arm/gic.c
+++ b/xen/arch/arm/gic.c
@@ -184,10 +184,14 @@ static hw_irq_controller gic_guest_irq_type = {
/* needs to be called with gic.lock held */
static void gic_set_irq_properties(unsigned int irq, bool_t level,
- unsigned int cpu_mask, unsigned int priority)
+ const cpumask_t *cpu_mask,
+ unsigned int priority)
{
volatile unsigned char *bytereg;
uint32_t cfg, edgebit;
+ unsigned int mask = cpumask_bits(cpu_mask)[0];
+
+ ASSERT(!(mask & ~0xff)); /* Target bitmap only support 8 CPUS */
/* Set edge / level */
cfg = GICD[GICD_ICFGR + irq / 16];
@@ -200,7 +204,7 @@ static void gic_set_irq_properties(unsigned int irq, bool_t level,
/* Set target CPU mask (RAZ/WI on uniprocessor) */
bytereg = (unsigned char *) (GICD + GICD_ITARGETSR);
- bytereg[irq] = cpu_mask;
+ bytereg[irq] = mask;
/* Set priority */
bytereg = (unsigned char *) (GICD + GICD_IPRIORITYR);
@@ -210,12 +214,11 @@ static void gic_set_irq_properties(unsigned int irq, bool_t level,
/* Program the GIC to route an interrupt */
static int gic_route_irq(unsigned int irq, bool_t level,
- unsigned int cpu_mask, unsigned int priority)
+ const cpumask_t *cpu_mask, unsigned int priority)
{
struct irq_desc *desc = irq_to_desc(irq);
unsigned long flags;
- ASSERT(!(cpu_mask & ~0xff)); /* Targets bitmap only supports 8 CPUs */
ASSERT(priority <= 0xff); /* Only 8 bits of priority */
ASSERT(irq < gic.lines); /* Can't route interrupts that don't exist */
@@ -242,7 +245,7 @@ static int gic_route_irq(unsigned int irq, bool_t level,
}
/* Program the GIC to route an interrupt with a dt_irq */
-void gic_route_dt_irq(const struct dt_irq *irq, unsigned int cpu_mask,
+void gic_route_dt_irq(const struct dt_irq *irq, const cpumask_t *cpu_mask,
unsigned int priority)
{
bool_t level;
@@ -496,7 +499,7 @@ void gic_disable_cpu(void)
void gic_route_ppis(void)
{
/* GIC maintenance */
- gic_route_dt_irq(&gic.maintenance, 1u << smp_processor_id(), 0xa0);
+ gic_route_dt_irq(&gic.maintenance, cpumask_of(smp_processor_id()), 0xa0);
/* Route timer interrupt */
route_timer_interrupt();
}
@@ -511,7 +514,7 @@ void gic_route_spis(void)
if ( (irq = serial_dt_irq(seridx)) == NULL )
continue;
- gic_route_dt_irq(irq, 1u << smp_processor_id(), 0xa0);
+ gic_route_dt_irq(irq, cpumask_of(smp_processor_id()), 0xa0);
}
}
@@ -718,7 +721,8 @@ int gic_route_irq_to_guest(struct domain *d, const struct dt_irq *irq,
level = dt_irq_is_level_triggered(irq);
- gic_set_irq_properties(irq->irq, level, 1u << smp_processor_id(), 0xa0);
+ gic_set_irq_properties(irq->irq, level, cpumask_of(smp_processor_id()),
+ 0xa0);
retval = __setup_irq(desc, irq->irq, action);
if (retval) {
diff --git a/xen/arch/arm/time.c b/xen/arch/arm/time.c
index eb3ad5c..a30d422 100644
--- a/xen/arch/arm/time.c
+++ b/xen/arch/arm/time.c
@@ -222,11 +222,11 @@ static void vtimer_interrupt(int irq, void *dev_id, struct cpu_user_regs *regs)
void __cpuinit route_timer_interrupt(void)
{
gic_route_dt_irq(&timer_irq[TIMER_PHYS_NONSECURE_PPI],
- 1u << smp_processor_id(), 0xa0);
+ cpumask_of(smp_processor_id()), 0xa0);
gic_route_dt_irq(&timer_irq[TIMER_HYP_PPI],
- 1u << smp_processor_id(), 0xa0);
+ cpumask_of(smp_processor_id()), 0xa0);
gic_route_dt_irq(&timer_irq[TIMER_VIRT_PPI],
- 1u << smp_processor_id(), 0xa0);
+ cpumask_of(smp_processor_id()), 0xa0);
}
/* Set up the timer interrupt on this CPU */
diff --git a/xen/include/asm-arm/gic.h b/xen/include/asm-arm/gic.h
index 92a3349..3a5ef6f 100644
--- a/xen/include/asm-arm/gic.h
+++ b/xen/include/asm-arm/gic.h
@@ -147,7 +147,8 @@ extern void vgic_clear_pending_irqs(struct vcpu *v);
extern struct pending_irq *irq_to_pending(struct vcpu *v, unsigned int irq);
/* Program the GIC to route an interrupt with a dt_irq */
-extern void gic_route_dt_irq(const struct dt_irq *irq, unsigned int cpu_mask,
+extern void gic_route_dt_irq(const struct dt_irq *irq,
+ const cpumask_t *cpu_mask,
unsigned int priority);
extern void gic_route_ppis(void);
extern void gic_route_spis(void);
--
1.7.10.4
next prev parent reply other threads:[~2013-09-18 13:15 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-18 13:15 [PATCH v3 0/6] Dissociate logical and gic/hardware CPU ID Julien Grall
2013-09-18 13:15 ` Julien Grall [this message]
2013-09-25 15:36 ` [PATCH v3 1/6] xen/arm: use cpumask_t to describe cpu mask in gic_route_dt_irq Ian Campbell
2013-09-18 13:15 ` [PATCH v3 2/6] xen/arm: Initialize correctly IRQ routing Julien Grall
2013-09-25 15:37 ` Ian Campbell
2013-09-18 13:15 ` [PATCH v3 3/6] xen/arm: gic: Use the correct CPU ID Julien Grall
2013-09-20 12:44 ` Julien Grall
2013-09-20 13:36 ` Ian Campbell
2013-09-20 13:49 ` Julien Grall
2013-09-20 15:03 ` Julien Grall
2013-09-20 15:44 ` Ian Campbell
2013-09-20 15:58 ` Julien Grall
2013-09-20 16:06 ` Ian Campbell
2013-09-20 18:48 ` Julien Grall
2013-09-25 15:35 ` Ian Campbell
2013-09-25 15:42 ` Julien Grall
2013-09-25 15:48 ` Ian Campbell
2013-09-25 15:53 ` Ian Campbell
2013-09-25 16:34 ` Tim Deegan
2013-09-18 13:15 ` [PATCH v3 4/6] xen/arm: Fix assert in send_SGI_one Julien Grall
2013-09-25 15:37 ` Ian Campbell
2013-09-18 13:15 ` [PATCH v3 5/6] xen/arm: Dissociate logical and hardware CPU ID Julien Grall
2013-09-25 15:38 ` Ian Campbell
2013-09-18 13:15 ` [PATCH v3 6/6] xen/arm: Use the hardware ID to boot correctly secondary cpus Julien Grall
2013-09-25 15:41 ` Ian Campbell
2013-09-26 10:18 ` Julien Grall
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=1379510122-9467-2-git-send-email-julien.grall@linaro.org \
--to=julien.grall@linaro.org \
--cc=ian.campbell@citrix.com \
--cc=patches@linaro.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xen.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 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).