1CONFIG_PCIE_CONTROLLER=y
2CONFIG_PCIE_ECAM=y
3
4# Hungry PCI requires at least 256M of virtual space
5CONFIG_KERNEL_VM_SIZE=0x80000000
6
7# Hungry PCI requires phys addresses with more than 32 bits
8CONFIG_ARM64_VA_BITS_40=y
9CONFIG_ARM64_PA_BITS_40=y
10
11# MSI support requires ITS
12CONFIG_GIC_V3_ITS=y
13
14# ITS, in turn, requires dynamic memory (9x64 + alignment constrains)
15# Additionally, our test also uses malloc
16CONFIG_HEAP_MEM_POOL_SIZE=1048576
17
18# Memory for userspace test
19# The default ivshmem memory size is 4MB (4194304), but libc uses the arena as well
20CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=8388608
21