adf49e1f42f35027f43fda8b09d73ee30b9e9d81
[dpdk.git] / config / ppc / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
3
4 if not dpdk_conf.get('RTE_ARCH_64')
5     error('Only 64-bit compiles are supported for this platform type')
6 endif
7 dpdk_conf.set('RTE_ARCH', 'ppc_64')
8 dpdk_conf.set('RTE_ARCH_PPC_64', 1)
9
10 # RHEL 7.x uses gcc 4.8.X which doesn't generate code for Power 9 CPUs,
11 # though it will detect a Power 9 CPU when the "-mcpu=native" argument
12 # is used, resulting in a build failure.
13 power9_supported = cc.has_argument('-mcpu=power9')
14 if not power9_supported
15     cpu_instruction_set = 'power8'
16     machine_args = ['-mcpu=power8', '-mtune=power8']
17     dpdk_conf.set('RTE_MACHINE','power8')
18 endif
19
20 # Certain POWER9 systems can scale as high as 1536 LCORES, but setting such a
21 # high value can waste memory, cause timeouts in time limited autotests, and is
22 # unlikely to be used in many production situations.  Similarly, keeping the
23 # default 64 LCORES seems too small as most POWER9 dual socket systems will have
24 # at least 128 LCORES available.  Set RTE_MAX_LCORE to 128 for POWER systems as
25 # a compromise.
26 dpdk_conf.set('RTE_MAX_LCORE', 128)
27
28 # POWER systems do not allocate NUMA nodes sequentially.  A dual socket system
29 # will have CPUs associated with NUMA nodes 0 & 8, so ensure that the second
30 # NUMA node will be supported by setting RTE_MAX_NUMA_NODES to 16. High end
31 # systems can scale even higher with as many as 32 NUMA nodes.
32 dpdk_conf.set('RTE_MAX_NUMA_NODES', 16)
33
34 dpdk_conf.set('RTE_CACHE_LINE_SIZE', 128)