From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34710) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Syvjc-000129-41 for qemu-devel@nongnu.org; Tue, 07 Aug 2012 22:10:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyvjZ-0005IX-Db for qemu-devel@nongnu.org; Tue, 07 Aug 2012 22:10:56 -0400 From: David Gibson Date: Wed, 8 Aug 2012 12:10:34 +1000 Message-Id: <1344391839-2006-6-git-send-email-david@gibson.dropbear.id.au> In-Reply-To: <1344391839-2006-1-git-send-email-david@gibson.dropbear.id.au> References: <1344391839-2006-1-git-send-email-david@gibson.dropbear.id.au> Subject: [Qemu-devel] [PATCH 05/10] pseries: added allocator for a block of IRQs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: agraf@suse.de, qemu-ppc@nongnu.org Cc: Alexey Kardashevskiy , aliguori@us.ibm.com, qemu-devel@nongnu.org, David Gibson From: Alexey Kardashevskiy The patch adds a simple helper which allocates a consecutive sequence of IRQs calling spapr_allocate_irq for each and checks that allocated IRQs go consequently. The patch is required for upcoming support of MSI/MSIX on POWER. Signed-off-by: Alexey Kardashevskiy Signed-off-by: David Gibson --- hw/spapr.c | 26 ++++++++++++++++++++++++++ hw/spapr.h | 1 + 2 files changed, 27 insertions(+) diff --git a/hw/spapr.c b/hw/spapr.c index 8b4af62..2b66f54 100644 --- a/hw/spapr.c +++ b/hw/spapr.c @@ -104,6 +104,32 @@ int spapr_allocate_irq(int hint, enum xics_irq_type type) return irq; } +/* Allocate block of consequtive IRQs, returns a number of the first */ +int spapr_allocate_irq_block(int num, enum xics_irq_type type) +{ + int first = -1; + int i; + + for (i = 0; i < num; ++i) { + int irq; + + irq = spapr_allocate_irq(0, type); + if (!irq) { + return -1; + } + + if (0 == i) { + first = irq; + } + + /* If the above doesn't create a consecutive block then that's + * an internal bug */ + assert(irq == (first + i)); + } + + return first; +} + static int spapr_set_associativity(void *fdt, sPAPREnvironment *spapr) { int ret = 0, offset; diff --git a/hw/spapr.h b/hw/spapr.h index c5de18d..76493cb 100644 --- a/hw/spapr.h +++ b/hw/spapr.h @@ -289,6 +289,7 @@ target_ulong spapr_hypercall(CPUPPCState *env, target_ulong opcode, target_ulong *args); int spapr_allocate_irq(int hint, enum xics_irq_type type); +int spapr_allocate_irq_block(int num, enum xics_irq_type type); static inline int spapr_allocate_msi(int hint) { -- 1.7.10.4