diff options
author | ayaka <ayaka@soulik.info> | 2019-02-04 18:57:27 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-06 08:29:06 +0000 |
commit | 34ec0fce5f5887473437a0d23f898e5e780e5b99 (patch) | |
tree | 7b4e2386811842d7200e0de9ef26369ee9450979 /meta/conf/machine/include/tune-cortexa72.inc | |
parent | 2de809c9423e09f4152b2753ea13e78f5de0fef7 (diff) | |
download | poky-34ec0fce5f5887473437a0d23f898e5e780e5b99.tar.gz |
tune-cortexa72: add tunes for ARM Cortex-A72
It looks that the Cryptography engine is mandatory in this
platform.
https://developer.arm.com/products/processors/cortex-a/cortex-a72
(From OE-Core rev: 0edda66097407c62821af9e98579f5fcf906e938)
Signed-off-by: Randy Li <ayaka@soulik.info>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-cortexa72.inc')
-rw-r--r-- | meta/conf/machine/include/tune-cortexa72.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/conf/machine/include/tune-cortexa72.inc b/meta/conf/machine/include/tune-cortexa72.inc new file mode 100644 index 0000000000..f5a524fa04 --- /dev/null +++ b/meta/conf/machine/include/tune-cortexa72.inc | |||
@@ -0,0 +1,12 @@ | |||
1 | DEFAULTTUNE ?= "cortexa72" | ||
2 | |||
3 | TUNEVALID[cortexa72] = "Enable Cortex-A72 specific processor optimizations" | ||
4 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa72', ' -mcpu=cortex-a72', '', d)}" | ||
5 | |||
6 | require conf/machine/include/arm/arch-armv8a.inc | ||
7 | |||
8 | # Little Endian base configs | ||
9 | AVAILTUNES += "cortexa72" | ||
10 | ARMPKGARCH_tune-cortexa72 = "cortexa72" | ||
11 | TUNE_FEATURES_tune-cortexa72 = "aarch64 cortexa72 simd crc crypto" | ||
12 | PACKAGE_EXTRA_ARCHS_tune-cortexa72 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa72" | ||