diff options
author | Trevor Woerner <twoerner@gmail.com> | 2015-07-20 21:47:17 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-23 08:48:39 +0100 |
commit | 08f01365a20262603b90f8be0ce0d3e15b7f69e2 (patch) | |
tree | d7fd20379a2c5eb3c4c6fe8244aa15e1e94d0903 /meta/conf/machine/include | |
parent | fd31e626354e4ecbbcf6143cc3772db683b6ae33 (diff) | |
download | poky-08f01365a20262603b90f8be0ce0d3e15b7f69e2.tar.gz |
tune-cortexa17: add tunes for ARM Cortex-A17
http://www.arm.com/products/processors/cortex-a/cortex-a17-processor.php
(From OE-Core rev: bf6fea14d0575e7f2dd6a35c79efb45412d70b76)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include')
-rw-r--r-- | meta/conf/machine/include/tune-cortexa17.inc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/conf/machine/include/tune-cortexa17.inc b/meta/conf/machine/include/tune-cortexa17.inc new file mode 100644 index 0000000000..bfc7126cbc --- /dev/null +++ b/meta/conf/machine/include/tune-cortexa17.inc | |||
@@ -0,0 +1,36 @@ | |||
1 | DEFAULTTUNE ?= "armv7a-neon" | ||
2 | |||
3 | require conf/machine/include/arm/arch-armv7a.inc | ||
4 | |||
5 | TUNEVALID[cortexa17] = "Enable Cortex-A17 specific processor optimizations" | ||
6 | TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "cortexa17", " -mtune=cortex-a17", "", d)}" | ||
7 | |||
8 | # Little Endian base configs | ||
9 | AVAILTUNES += "cortexa17 cortexa17t cortexa17-neon cortexa17t-neon" | ||
10 | ARMPKGARCH_tune-cortexa17 = "cortexa17" | ||
11 | ARMPKGARCH_tune-cortexa17t = "cortexa17" | ||
12 | ARMPKGARCH_tune-cortexa17-neon = "cortexa17" | ||
13 | ARMPKGARCH_tune-cortexa17t-neon = "cortexa17" | ||
14 | TUNE_FEATURES_tune-cortexa17 = "${TUNE_FEATURES_tune-armv7a} cortexa17" | ||
15 | TUNE_FEATURES_tune-cortexa17t = "${TUNE_FEATURES_tune-armv7at} cortexa17" | ||
16 | TUNE_FEATURES_tune-cortexa17-neon = "${TUNE_FEATURES_tune-armv7a-neon} cortexa17" | ||
17 | TUNE_FEATURES_tune-cortexa17t-neon = "${TUNE_FEATURES_tune-armv7at-neon} cortexa17" | ||
18 | PACKAGE_EXTRA_ARCHS_tune-cortexa17 = "${PACKAGE_EXTRA_ARCHS_tune-armv7a} cortexa17-vfp" | ||
19 | PACKAGE_EXTRA_ARCHS_tune-cortexa17t = "${PACKAGE_EXTRA_ARCHS_tune-armv7at} cortexa17-vfp cortexa17t2-vfp" | ||
20 | PACKAGE_EXTRA_ARCHS_tune-cortexa17-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7a-neon} cortexa17-vfp cortexa17-vfp-neon" | ||
21 | PACKAGE_EXTRA_ARCHS_tune-cortexa17t-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7at-neon} cortexa17-vfp cortexa17-vfp-neon cortexa17t2-vfp cortexa17t2-vfp-neon" | ||
22 | |||
23 | # VFP Tunes | ||
24 | AVAILTUNES += "cortexa17hf cortexa17thf cortexa17hf-neon cortexa17thf-neon" | ||
25 | ARMPKGARCH_tune-cortexa17hf = "cortexa17" | ||
26 | ARMPKGARCH_tune-cortexa17thf = "cortexa17" | ||
27 | ARMPKGARCH_tune-cortexa17hf-neon = "cortexa17" | ||
28 | ARMPKGARCH_tune-cortexa17thf-neon = "cortexa17" | ||
29 | TUNE_FEATURES_tune-cortexa17hf ?= "${TUNE_FEATURES_tune-armv7ahf} cortexa17" | ||
30 | TUNE_FEATURES_tune-cortexa17thf ?= "${TUNE_FEATURES_tune-armv7athf} cortexa17" | ||
31 | TUNE_FEATURES_tune-cortexa17hf-neon ?= "${TUNE_FEATURES_tune-armv7ahf-neon} cortexa17" | ||
32 | TUNE_FEATURES_tune-cortexa17thf-neon ?= "${TUNE_FEATURES_tune-armv7athf-neon} cortexa17" | ||
33 | PACKAGE_EXTRA_ARCHS_tune-cortexa17hf = "${PACKAGE_EXTRA_ARCHS_tune-armv7ahf} cortexa17hf-vfp" | ||
34 | PACKAGE_EXTRA_ARCHS_tune-cortexa17thf = "${PACKAGE_EXTRA_ARCHS_tune-armv7athf} cortexa17hf-vfp cortexa17t2hf-vfp" | ||
35 | PACKAGE_EXTRA_ARCHS_tune-cortexa17hf-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7ahf-neon} cortexa17hf-vfp cortexa17hf-vfp-neon" | ||
36 | PACKAGE_EXTRA_ARCHS_tune-cortexa17thf-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7athf-neon} cortexa17hf-vfp cortexa17hf-vfp-neon cortexa17t2hf-vfp cortexa17t2hf-vfp-neon" | ||