generic-poky/meta/conf/machine/include/arm
Andre McCurdy c13eb4ff7c feature-arm-thumb.inc: fix ARM_THUMB_SUFFIX for armv8
The current definition for ARM_THUMB_SUFFIX doesn't consider armv8
and will therefore cause TUNE_PKGARCH to be set incorrectly for
machines which inherit arch-armv8 and don't include aarch64 in
TUNE_FEATURES (ie when building for 32bit ARMv8).

Also fix typo in comments and improve TUNEVALID[thumb] wording.

(From OE-Core rev: 3691fd7dbe7f01ca29c14fc603c6946864af3b3c)

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2017-03-22 11:35:19 +00:00
..
README tune-cortexa*.inc: fix tunings for cortex a5, a7, a8, a9, a15 machines. 2013-06-12 17:54:47 +01:00
arch-arm.inc meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
arch-arm64.inc meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
arch-armv4.inc arch-armv[456]*.inc: improve indentation like armv7a 2016-01-07 13:40:18 +00:00
arch-armv5-dsp.inc arch-arm*.inc: squash whitespace within TUNE_FEATURES strings 2017-02-23 12:49:48 -08:00
arch-armv5.inc arch-arm*.inc: squash whitespace within TUNE_FEATURES strings 2017-02-23 12:49:48 -08:00
arch-armv6.inc conf/machine/include: enable hardfloat by default for ARMv6 and above 2017-03-10 14:50:10 +00:00
arch-armv7a.inc conf/machine/include: enable hardfloat by default for ARMv6 and above 2017-03-10 14:50:10 +00:00
arch-armv7ve.inc conf/machine/include: enable hardfloat by default for ARMv6 and above 2017-03-10 14:50:10 +00:00
arch-armv8.inc aarch-arm64: Update tune files 2014-12-23 10:18:19 +00:00
feature-arm-neon.inc feature-arm-neon.inc: restore vfpv3-d16 support 2016-05-11 10:33:42 +01:00
feature-arm-thumb.inc feature-arm-thumb.inc: fix ARM_THUMB_SUFFIX for armv8 2017-03-22 11:35:19 +00:00
feature-arm-vfp.inc meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00

README

2012/03/30 - Mark Hatle <mark.hatle@windriver.com>
 - Initial Revision

The ARM architecture definitions are split among a number of files.
The primary definitions for the variables are handled by the core
arch-arm.inc file.

TUNE_ARCH is set to either "arm" or "armeb" depending on the value
of the existence of the "bigendian" feature in a given tune.

A small set of ARM specific variables have been defined to allow 
TUNE_PKGARCH to be automatically defined.  Optimized tunings must NOT 
change the definiton of TUNE_PKGARCH.  TUNE_PKGACH_tune-<tune> will be 
ignored.  The format of the package arch is enforced by the TUNE_PKGARCH
default.  The format must be of the form:
<armversion>[t][e][hf][b][-vfp][-neon]

TUNE_PKGARCH is defined as:
${ARMPKGARCH}${ARMPKGSFX_THUMB}${ARMPKGSFX_DSP}${ARMPKGSFX_EABI}${ARMPKGSFX_ENDIAN}${ARMPKGSFX_FPU}

ARMPKGARCH - This is the core package arch component specified by each 
tuning.  This is the primary identifier of a tuning.  Usual values are:
arm, armv4, armv5, armv6, armv7a, etc.

ARMPKGSFX_THUMB - This is the thumb specific suffix.  Curently it is 
defined in feature-arm-thumb.inc.

ARMPKGSFX_DSP - This is the DSP specific suffix.  Currently this is set 
to 'e' when on armv5 and the dsp feature is enabled.

ARMPKGSFX_EABI - This is the eabi specific suffix.  There are currently 
two defined ABIs specificed, standard EABI and Hard Float (VFP) EABI.  
When the callconvention-hard is enabled, "hf" is specified, otherwise it 
is blank.

ARMPKGSFX_ENDIAN - This is the endian specific suffix.  It is defined in 
the core arch-arm.inc file.

ARMPKGSFX_FPU - This is the FPU specific suffix.  The suffix indicates 
specific FPU optimizations.  'vfp' and 'neon' are both defined.