diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-25 19:03:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 15:45:48 +0100 |
commit | 6afd21bced6513986f27d8cbc7d83bb2d804b5b0 (patch) | |
tree | 69e2b6c2fde4c15d948f9a8f798a30926f858600 /meta/conf/machine/include/tune-iwmmxt.inc | |
parent | 30ddd02277d4513e2649ed168a513205e244bcb1 (diff) | |
download | poky-6afd21bced6513986f27d8cbc7d83bb2d804b5b0.tar.gz |
Add ARM tune file overhaul based largely on work from Mark Hatle
(From OE-Core rev: 789dcb8e68a2ab9784ac10ab36815010c61af2fc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-iwmmxt.inc')
-rw-r--r-- | meta/conf/machine/include/tune-iwmmxt.inc | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/meta/conf/machine/include/tune-iwmmxt.inc b/meta/conf/machine/include/tune-iwmmxt.inc index 6bb76d5b32..14f59555a0 100644 --- a/meta/conf/machine/include/tune-iwmmxt.inc +++ b/meta/conf/machine/include/tune-iwmmxt.inc | |||
@@ -1,8 +1,16 @@ | |||
1 | require conf/machine/include/arm/arch-arm.inc | ||
2 | |||
3 | # Configurations for the Intel PXA27x Appications Processor Family. | 1 | # Configurations for the Intel PXA27x Appications Processor Family. |
4 | # Please use tune-xscale for PXA255/PXA26x based processors. | 2 | # Please use tune-xscale for PXA255/PXA26x based processors. |
5 | TUNE_CCARGS = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" | 3 | |
6 | PACKAGE_EXTRA_ARCHS = "arm armv4 armv4t armv5te iwmmxt" | 4 | DEFAULTTUNE ?= "iwmmxt" |
7 | TUNE_PKGARCH = "iwmmxt" | 5 | ARMPKGARCH ?= "iwmmxt" |
6 | |||
7 | require conf/machine/include/arm/arch-armv5-dsp.inc | ||
8 | |||
9 | TUNEVALID[iwmmxt] = "Enable Intel PXA27x specific processor optimizations" | ||
10 | TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "iwmmxt", "-march=iwmmxt -mtune=iwmmxt", "", d)}" | ||
11 | |||
12 | AVAILTUNES += "iwmmxt" | ||
13 | TUNE_FEATURES_tune-iwmmxt = "thumb iwmmxt" | ||
14 | PACKAGE_EXTRA_ARCHS_tune-iwmmxt = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} iwmmxt" | ||
15 | |||
8 | 16 | ||