From: Robert Richter <rrichter@caviumnetworks.com>
To: Marc Zyngier <marc.zyngier@arm.com>,
Will Deacon <will.deacon@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Thomas Gleixner <tglx@linutronix.de>,
Jason Cooper <jason@lakedaemon.net>
Cc: Tirumalesh Chalamarla <tchalamarla@cavium.com>,
linux-arm-kernel@lists.infradead.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org,
Robert Richter <rrichter@cavium.com>
Subject: [PATCH 2/2] irqchip, gicv3-its, cma: Use CMA for allocation of large device tables
Date: Thu, 25 Feb 2016 12:02:44 +0100 [thread overview]
Message-ID: <1456398164-16864-3-git-send-email-rrichter@caviumnetworks.com> (raw)
In-Reply-To: <1456398164-16864-1-git-send-email-rrichter@caviumnetworks.com>
From: Robert Richter <rrichter@cavium.com>
The gicv3-its device table may have a size of up to 16MB. With 4k
pagesize the maximum size of memory allocation is 4MB. Use CMA for
allocation of large tables.
Signed-off-by: Robert Richter <rrichter@cavium.com>
---
drivers/irqchip/irq-gic-v3-its.c | 30 +++++++++++++++++++++---------
1 file changed, 21 insertions(+), 9 deletions(-)
diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
index 443ba8892f6f..c8914026d0e4 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -19,6 +19,7 @@
#include <linux/bitmap.h>
#include <linux/cpu.h>
#include <linux/delay.h>
+#include <linux/dma-contiguous.h>
#include <linux/interrupt.h>
#include <linux/irqdomain.h>
#include <linux/iort.h>
@@ -860,6 +861,7 @@ static int its_alloc_tables(struct its_node *its)
int alloc_pages;
u64 tmp;
void *base;
+ struct page *page;
if (type == GITS_BASER_TYPE_NONE)
continue;
@@ -881,13 +883,8 @@ static int its_alloc_tables(struct its_node *its)
*/
order = max(get_order((1UL << ids) * entry_size),
order);
- if (order >= MAX_ORDER) {
- order = MAX_ORDER - 1;
- pr_warn("ITS@0x%lx: Device Table too large, reduce its page order to %u\n",
- its->phys_base, order);
- }
}
-
+retry_alloc:
alloc_size = (1 << order) * PAGE_SIZE;
alloc_pages = (alloc_size / psz);
if (alloc_pages > GITS_BASER_PAGES_MAX) {
@@ -897,8 +894,22 @@ static int its_alloc_tables(struct its_node *its)
its->phys_base, order, alloc_pages);
}
- base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
+ if (order >= MAX_ORDER) {
+ page = dma_alloc_from_contiguous(NULL, 1 << order, 0);
+ base = page ? page_address(page) : NULL;
+ if (!base) {
+ order = MAX_ORDER - 1;
+ pr_warn("ITS@0x%lx: Device table too large, reduce its page order to %u\n",
+ its->phys_base, order);
+ goto retry_alloc;
+ }
+ } else {
+ base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
+ }
+
if (!base) {
+ pr_err("ITS@0x%lx: Failed to allocate device table\n",
+ its->phys_base);
err = -ENOMEM;
goto out_free;
}
@@ -970,11 +981,12 @@ static int its_alloc_tables(struct its_node *its)
goto out_free;
}
- pr_info("ITS: allocated %d %s @%lx (psz %dK, shr %d)\n",
+ pr_info("ITS: allocated %d %s @%lx (psz %dK, shr %d)%s\n",
(int)(alloc_size / entry_size),
its_base_type_string[type],
(unsigned long)virt_to_phys(base),
- psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT);
+ psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT,
+ order >= MAX_ORDER ? " using CMA" : "");
}
return 0;
--
2.7.0.rc3
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2016-02-25 11:03 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-25 11:02 [PATCH 0/2] arm64, cma, gicv3-its: " Robert Richter
2016-02-25 11:02 ` [PATCH 1/2] mm: cma: arm64: Introduce dma_activate_contiguous() for early activation Robert Richter
2016-02-25 11:02 ` Robert Richter [this message]
2016-02-29 10:46 ` [PATCH 0/2] arm64, cma, gicv3-its: Use CMA for allocation of large device tables Marc Zyngier
2016-02-29 12:25 ` Robert Richter
2016-02-29 13:30 ` Marc Zyngier
2016-02-29 23:17 ` Laura Abbott
2016-03-01 12:40 ` Robert Richter
2016-03-04 14:26 ` Vlastimil Babka
2016-03-04 17:32 ` Marc Zyngier
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=1456398164-16864-3-git-send-email-rrichter@caviumnetworks.com \
--to=rrichter@caviumnetworks.com \
--cc=catalin.marinas@arm.com \
--cc=gregkh@linuxfoundation.org \
--cc=jason@lakedaemon.net \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=marc.zyngier@arm.com \
--cc=rrichter@cavium.com \
--cc=tchalamarla@cavium.com \
--cc=tglx@linutronix.de \
--cc=will.deacon@arm.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