summaryrefslogtreecommitdiffstats
path: root/conf/machine
diff options
context:
space:
mode:
Diffstat (limited to 'conf/machine')
-rw-r--r--conf/machine/include/omap3.inc15
-rw-r--r--conf/machine/include/tune-cortexa8.inc17
2 files changed, 32 insertions, 0 deletions
diff --git a/conf/machine/include/omap3.inc b/conf/machine/include/omap3.inc
new file mode 100644
index 000000000..d33a59987
--- /dev/null
+++ b/conf/machine/include/omap3.inc
@@ -0,0 +1,15 @@
1SOC_FAMILY = "omap3"
2TARGET_ARCH = "arm"
3
4require conf/machine/include/tune-cortexa8.inc
5PREFERRED_PROVIDER_virtual/kernel = "linux-omap"
6# Increase this everytime you change something in the kernel
7MACHINE_KERNEL_PR = "r92"
8
9KERNEL_IMAGETYPE = "uImage"
10
11UBOOT_ENTRYPOINT = "0x80008000"
12UBOOT_LOADADDRESS = "0x80008000"
13
14EXTRA_IMAGEDEPENDS += "u-boot x-load"
15
diff --git a/conf/machine/include/tune-cortexa8.inc b/conf/machine/include/tune-cortexa8.inc
new file mode 100644
index 000000000..2ac0ebfe4
--- /dev/null
+++ b/conf/machine/include/tune-cortexa8.inc
@@ -0,0 +1,17 @@
1# Instead of using -mfpu=vfp[2] we can use -mfpu=neon to make use of gcc intrinsics[1] and vectorize loops with -ftree-vectorize[3]
2# [1] http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html
3# [2] http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html
4# [3] https://support.codesourcery.com/GNUToolchain/kbentry29
5
6# Can be 'softfp' or 'hardfp'
7ARM_FP_MODE ?= "softfp"
8
9ARM_FP_OPT = "${@['-mfloat-abi=softfp', '-mfloat-abi=hard'][bb.data.getVar('ARM_FP_MODE', d, 1) == 'hardfp']}"
10ARM_FP_PACKAGESUFFIX = "${@['', '-hardfp'][bb.data.getVar('ARM_FP_MODE', d, 1) == 'hardfp']}"
11
12TARGET_CC_ARCH = "-march=armv7-a -mtune=cortex-a8 -mfpu=neon ${ARM_FP_OPT}"
13
14FEED_ARCH = "armv7a${ARM_FP_PACKAGESUFFIX}"
15BASE_PACKAGE_ARCH = "armv7a${ARM_FP_PACKAGESUFFIX}"
16
17PACKAGE_EXTRA_ARCHS += "armv4 armv4t armv5te armv6 armv7 armv7a${ARM_FP_PACKAGESUFFIX}"