Revision fdf6e7a8c96ebe115b6460768c82dd136ecbd8db authored by Hanjun Guo on 26 July 2017, 10:15:49 UTC, committed by Marc Zyngier on 10 August 2017, 15:22:50 UTC
When enabling ITS NUMA support on D05, I got the boot log:

[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 1 -> ITS 3 -> Node 1
[    0.000000] SRAT: ITS affinity exceeding max count[4]

This is wrong on D05 as we have 8 ITSs with 4 NUMA nodes.

So dynamically alloc the memory needed instead of using
its_srat_maps[MAX_NUMNODES], which count the number of
ITS entry(ies) in SRAT and alloc its_srat_maps as needed,
then build the mapping of numa node to ITS ID. Of course,
its_srat_maps will be freed after ITS probing because
we don't need that after boot.

After doing this, I got what I wanted:

[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 1 -> ITS 3 -> Node 1
[    0.000000] SRAT: PXM 2 -> ITS 4 -> Node 2
[    0.000000] SRAT: PXM 2 -> ITS 5 -> Node 2
[    0.000000] SRAT: PXM 2 -> ITS 6 -> Node 2
[    0.000000] SRAT: PXM 3 -> ITS 7 -> Node 3

Fixes: dbd2b8267233 ("irqchip/gic-v3-its: Add ACPI NUMA node mapping")
Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Reviewed-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Ganapatrao Kulkarni <ganapatrao.kulkarni@cavium.com>
Cc: John Garry <john.garry@huawei.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
1 parent c017d21
History
File Mode Size
Kconfig -rw-r--r-- 179 bytes
Makefile -rw-r--r-- 365 bytes
TODO -rw-r--r-- 579 bytes
baseband.c -rw-r--r-- 19.8 KB
baseband.h -rw-r--r-- 2.9 KB
card.c -rw-r--r-- 16.9 KB
card.h -rw-r--r-- 1.9 KB
channel.c -rw-r--r-- 5.4 KB
channel.h -rw-r--r-- 863 bytes
desc.h -rw-r--r-- 2.9 KB
device.h -rw-r--r-- 8.5 KB
dpc.c -rw-r--r-- 4.3 KB
dpc.h -rw-r--r-- 871 bytes
firmware.c -rw-r--r-- 2.9 KB
firmware.h -rw-r--r-- 993 bytes
int.c -rw-r--r-- 4.4 KB
int.h -rw-r--r-- 1.1 KB
key.c -rw-r--r-- 4.0 KB
key.h -rw-r--r-- 1.3 KB
mac.c -rw-r--r-- 5.2 KB
mac.h -rw-r--r-- 10.2 KB
main_usb.c -rw-r--r-- 24.3 KB
power.c -rw-r--r-- 3.2 KB
power.h -rw-r--r-- 1.0 KB
rf.c -rw-r--r-- 19.5 KB
rf.h -rw-r--r-- 1.8 KB
rxtx.c -rw-r--r-- 31.9 KB
rxtx.h -rw-r--r-- 5.3 KB
usbpipe.c -rw-r--r-- 6.9 KB
usbpipe.h -rw-r--r-- 1.4 KB
wcmd.c -rw-r--r-- 4.1 KB
wcmd.h -rw-r--r-- 1.4 KB

back to top