mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
soc: ti: ti_sci_inta_msi: Add support for second range in resource ranges
Allocate MSI entries for both first and second range if they are valid Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
This commit is contained in:
parent
519c5c0c55
commit
f5087f68e7
1 changed files with 12 additions and 0 deletions
|
@ -89,6 +89,18 @@ static int ti_sci_inta_msi_alloc_descs(struct device *dev,
|
||||||
list_add_tail(&msi_desc->list, dev_to_msi_list(dev));
|
list_add_tail(&msi_desc->list, dev_to_msi_list(dev));
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
for (i = 0; i < res->desc[set].num_sec; i++) {
|
||||||
|
msi_desc = alloc_msi_entry(dev, 1, NULL);
|
||||||
|
if (!msi_desc) {
|
||||||
|
ti_sci_inta_msi_free_descs(dev);
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
msi_desc->inta.dev_index = res->desc[set].start_sec + i;
|
||||||
|
INIT_LIST_HEAD(&msi_desc->list);
|
||||||
|
list_add_tail(&msi_desc->list, dev_to_msi_list(dev));
|
||||||
|
count++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
|
|
Loading…
Reference in a new issue