|
@@ -1439,6 +1439,7 @@ static struct irq_chip its_irq_chip = {
|
|
|
* The consequence of the above is that allocation is cost is low, but
|
|
|
* freeing is expensive. We assumes that freeing rarely occurs.
|
|
|
*/
|
|
|
+#define ITS_MAX_LPI_NRBITS 16 /* 64K LPIs */
|
|
|
|
|
|
static DEFINE_MUTEX(lpi_range_lock);
|
|
|
static LIST_HEAD(lpi_range_list);
|
|
@@ -1625,7 +1626,8 @@ static int __init its_alloc_lpi_tables(void)
|
|
|
{
|
|
|
phys_addr_t paddr;
|
|
|
|
|
|
- lpi_id_bits = GICD_TYPER_ID_BITS(gic_rdists->gicd_typer);
|
|
|
+ lpi_id_bits = min_t(u32, GICD_TYPER_ID_BITS(gic_rdists->gicd_typer),
|
|
|
+ ITS_MAX_LPI_NRBITS);
|
|
|
gic_rdists->prop_page = its_allocate_prop_table(GFP_NOWAIT);
|
|
|
if (!gic_rdists->prop_page) {
|
|
|
pr_err("Failed to allocate PROPBASE\n");
|