mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
conf/machine: move tune files to architecture directories
Move all of the tune files found in conf/machine/include into their respective architecture directories in that same location. All references to these will need to be updated. So, change the relevant ones for this tree in this commit as well. For the ARM tunes, nest them one further into armv8a, armv8m, etc. and rename some to make them uniform with the rest of the tunes. (From OE-Core rev: b6f15209bcfff953cce69da97a93f9ddff141ced) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d9878e12b8
commit
1d381f21f5
@@ -0,0 +1,14 @@
|
||||
# For runqemu
|
||||
IMAGE_CLASSES += "qemuboot"
|
||||
QB_SMP = "-smp 4"
|
||||
QB_CPU:x86 = "-cpu IvyBridge -machine q35"
|
||||
QB_CPU_KVM:x86 = "-cpu IvyBridge -machine q35"
|
||||
|
||||
QB_CPU:x86-64 = "-cpu IvyBridge -machine q35"
|
||||
QB_CPU_KVM:x86-64 = "-cpu IvyBridge -machine q35"
|
||||
|
||||
QB_AUDIO_DRV = "alsa"
|
||||
QB_AUDIO_OPT = "-soundhw ac97,es1370"
|
||||
QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1"
|
||||
QB_OPT_APPEND = "-usb -device usb-tablet"
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# Atom tunings are the same as core2 for now...
|
||||
require conf/machine/include/x86/tune-core2.inc
|
||||
@@ -0,0 +1,12 @@
|
||||
require conf/machine/include/x86/arch-x86.inc
|
||||
|
||||
TUNEVALID[c3] = "VIA Cyrix III or VIA C3 specific optimizations"
|
||||
TUNECONFLICTS[c3] = "m64 mx32"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'c3', ' -march=c3 -mtune=c3', '', d)}"
|
||||
|
||||
AVAILTUNES += "c3"
|
||||
TUNE_FEATURES:tune-c3 = "${TUNE_FEATURES:tune-x86} c3"
|
||||
BASE_LIBS:tune-c3 = "${BASE_LIB:tune-x86}"
|
||||
# The following should likely be something other then i586...
|
||||
TUNE_PKGARCH:tune-c3 = "i586"
|
||||
PACKAGE_EXTRA_ARCHS:tune-c3 = "${PACKAGE_EXTRA_ARCHS:tune-x86} i386 i486 i586"
|
||||
@@ -0,0 +1,38 @@
|
||||
# Settings for the GCC(1) cpu-type "core2":
|
||||
#
|
||||
# Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
|
||||
# instruction set support.
|
||||
#
|
||||
# This tune is recommended for the Intel Core 2 CPU family, including Conroe,
|
||||
# Merom and beyond, as well as the first Atom CPUs, Diamondville, and beyond.
|
||||
#
|
||||
DEFAULTTUNE ?= "core2-32"
|
||||
|
||||
# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS
|
||||
require conf/machine/include/x86/tune-i686.inc
|
||||
|
||||
# Extra tune features
|
||||
TUNEVALID[core2] = "Enable core2 specific processor optimizations"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'core2', ' -march=core2 -mtune=core2 -msse3 -mfpmath=sse', '', d)}"
|
||||
|
||||
# Extra tune selections
|
||||
AVAILTUNES += "core2-32"
|
||||
TUNE_FEATURES:tune-core2-32 = "${TUNE_FEATURES:tune-x86} core2"
|
||||
BASE_LIB:tune-core2-32 = "lib"
|
||||
TUNE_PKGARCH:tune-core2-32 = "core2-32"
|
||||
PACKAGE_EXTRA_ARCHS:tune-core2-32 = "${PACKAGE_EXTRA_ARCHS:tune-i686} core2-32"
|
||||
QEMU_EXTRAOPTIONS_core2-32 = " -cpu n270"
|
||||
|
||||
AVAILTUNES += "core2-64"
|
||||
TUNE_FEATURES:tune-core2-64 = "${TUNE_FEATURES:tune-x86-64} core2"
|
||||
BASE_LIB:tune-core2-64 = "lib64"
|
||||
TUNE_PKGARCH:tune-core2-64 = "core2-64"
|
||||
PACKAGE_EXTRA_ARCHS:tune-core2-64 = "${PACKAGE_EXTRA_ARCHS:tune-x86-64} core2-64"
|
||||
QEMU_EXTRAOPTIONS_core2-64 = " -cpu core2duo"
|
||||
|
||||
AVAILTUNES += "core2-64-x32"
|
||||
TUNE_FEATURES:tune-core2-64-x32 = "${TUNE_FEATURES:tune-x86-64-x32} core2"
|
||||
BASE_LIB:tune-core2-64-x32 = "libx32"
|
||||
TUNE_PKGARCH:tune-core2-64-x32 = "core2-64-x32"
|
||||
PACKAGE_EXTRA_ARCHS:tune-core2-64-x32 = "${PACKAGE_EXTRA_ARCHS:tune-x86-64-x32} core2-64-x32"
|
||||
QEMU_EXTRAOPTIONS_core2-64-x32 = " -cpu core2duo"
|
||||
@@ -0,0 +1,38 @@
|
||||
# Settings for the GCC(1) cpu-type "nehalem":
|
||||
#
|
||||
# Intel Nehalem CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1,
|
||||
# SSE4.2 and POPCNT instruction set support.
|
||||
#
|
||||
# This tune is recommended for Intel Nehalem and Silvermont (e.g. Bay Trail) CPUs
|
||||
# (and beyond).
|
||||
#
|
||||
DEFAULTTUNE ?= "corei7-64"
|
||||
|
||||
# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS
|
||||
require conf/machine/include/x86/tune-core2.inc
|
||||
|
||||
# Extra tune features
|
||||
TUNEVALID[corei7] = "Enable corei7 specific processor optimizations"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'corei7', ' -march=nehalem -mtune=generic -mfpmath=sse -msse4.2', '', d)}"
|
||||
|
||||
# Extra tune selections
|
||||
AVAILTUNES += "corei7-32"
|
||||
TUNE_FEATURES:tune-corei7-32 = "${TUNE_FEATURES:tune-x86} corei7"
|
||||
BASE_LIB:tune-corei7-32 = "lib"
|
||||
TUNE_PKGARCH:tune-corei7-32 = "corei7-32"
|
||||
PACKAGE_EXTRA_ARCHS:tune-corei7-32 = "${PACKAGE_EXTRA_ARCHS:tune-core2-32} corei7-32"
|
||||
QEMU_EXTRAOPTIONS_corei7-32 = " -cpu Nehalem,check=false"
|
||||
|
||||
AVAILTUNES += "corei7-64"
|
||||
TUNE_FEATURES:tune-corei7-64 = "${TUNE_FEATURES:tune-x86-64} corei7"
|
||||
BASE_LIB:tune-corei7-64 = "lib64"
|
||||
TUNE_PKGARCH:tune-corei7-64 = "corei7-64"
|
||||
PACKAGE_EXTRA_ARCHS:tune-corei7-64 = "${PACKAGE_EXTRA_ARCHS:tune-core2-64} corei7-64"
|
||||
QEMU_EXTRAOPTIONS_corei7-64 = " -cpu Nehalem,check=false"
|
||||
|
||||
AVAILTUNES += "corei7-64-x32"
|
||||
TUNE_FEATURES:tune-corei7-64-x32 = "${TUNE_FEATURES:tune-x86-64-x32} corei7"
|
||||
BASE_LIB:tune-corei7-64-x32 = "libx32"
|
||||
TUNE_PKGARCH:tune-corei7-64-x32 = "corei7-64-x32"
|
||||
PACKAGE_EXTRA_ARCHS:tune-corei7-64-x32 = "${PACKAGE_EXTRA_ARCHS:tune-core2-64-x32} corei7-64-x32"
|
||||
QEMU_EXTRAOPTIONS_corei7-64-x32 = " -cpu Nehalem,check=false"
|
||||
@@ -0,0 +1,19 @@
|
||||
# Settings for the GCC(1) cpu-type "quark":
|
||||
#
|
||||
#
|
||||
#
|
||||
DEFAULTTUNE ?= "i586-nlp-32"
|
||||
|
||||
# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS
|
||||
require conf/machine/include/x86/arch-x86.inc
|
||||
|
||||
# x86 with no lock prefix
|
||||
TUNEVALID[i586-nlp] = "IA32 with Lock Prefix omitted"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'i586-nlp', ' -march=i586 -Wa,-momit-lock-prefix=yes', '', d)}"
|
||||
|
||||
# Quark tune feature
|
||||
AVAILTUNES = "i586-nlp-32"
|
||||
TUNE_FEATURES:tune-i586-nlp-32 = "${TUNE_FEATURES:tune-x86} i586-nlp"
|
||||
BASE_LIB:tune-i586-nlp-32 = "lib"
|
||||
TUNE_PKGARCH:tune-i586-nlp-32 = "i586-nlp-32"
|
||||
PACKAGE_EXTRA_ARCHS:tune-i586-nlp-32 = "i586-nlp-32"
|
||||
@@ -0,0 +1,14 @@
|
||||
DEFAULTTUNE ?= "i586"
|
||||
|
||||
require conf/machine/include/x86/arch-x86.inc
|
||||
|
||||
# Extra tune features
|
||||
TUNEVALID[i586] = "Enable i586 specific processor optimizations"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'i586', ' -march=i586', '', d)}"
|
||||
|
||||
# Extra tune selections
|
||||
AVAILTUNES += "i586"
|
||||
TUNE_FEATURES:tune-i586 = "${TUNE_FEATURES:tune-x86} i586"
|
||||
BASE_LIB:tune-i586 = "lib"
|
||||
TUNE_PKGARCH:tune-i586 = "i586"
|
||||
PACKAGE_EXTRA_ARCHS:tune-i586 = "${PACKAGE_EXTRA_ARCHS:tune-x86} i586"
|
||||
@@ -0,0 +1,27 @@
|
||||
#
|
||||
# The i686 CPU family was introduced with the Intel Pentium Pro in 1995.
|
||||
# It has as required feature flags: fpu tsc cx8 cmov.
|
||||
#
|
||||
# It is the minimum CPU required by the Debian i386 port.
|
||||
# https://lists.debian.org/debian-devel-announce/2016/05/msg00001.html
|
||||
#
|
||||
#
|
||||
|
||||
DEFAULTTUNE ?= "i686"
|
||||
|
||||
# Set x86 target arch to i686, so that glibc enables SSE optimised memcpy, etc.
|
||||
X86ARCH32 ?= "i686"
|
||||
|
||||
# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS
|
||||
require conf/machine/include/x86/tune-i586.inc
|
||||
|
||||
# Extra tune features
|
||||
TUNEVALID[i686] = "Enable i686 specific processor optimizations"
|
||||
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'i686', ' -march=i686', '', d)}"
|
||||
|
||||
# Extra tune selections
|
||||
AVAILTUNES += "i686"
|
||||
TUNE_FEATURES:tune-i686 = "${TUNE_FEATURES:tune-x86} i686"
|
||||
BASE_LIB:tune-i686 = "lib"
|
||||
TUNE_PKGARCH:tune-i686 = "i686"
|
||||
PACKAGE_EXTRA_ARCHS:tune-i686 = "${PACKAGE_EXTRA_ARCHS:tune-i586} i686"
|
||||
@@ -0,0 +1,46 @@
|
||||
#
|
||||
# Base machine settings for X86 architecture BSPs
|
||||
#
|
||||
|
||||
#
|
||||
# common settings for X86 machines
|
||||
#
|
||||
MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
|
||||
acpi serial usbgadget alsa"
|
||||
|
||||
IMAGE_FSTYPES ?= "wic"
|
||||
|
||||
KERNEL_IMAGETYPE ?= "bzImage"
|
||||
|
||||
SERIAL_CONSOLES ?= "115200;ttyS0"
|
||||
|
||||
#
|
||||
# kernel-related variables
|
||||
#
|
||||
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
||||
PREFERRED_VERSION_linux-yocto ??= "5.13%"
|
||||
|
||||
#
|
||||
# XSERVER subcomponents, used to build the XSERVER variable
|
||||
#
|
||||
XSERVER_X86_BASE = "xserver-xorg \
|
||||
"
|
||||
|
||||
XSERVER_X86_EXT = " \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'xserver-xorg-extension-glx', '', d)} \
|
||||
xserver-xorg-module-libint10 \
|
||||
"
|
||||
|
||||
XSERVER_X86_I915 = "xf86-video-intel \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i915', '', d)} \
|
||||
"
|
||||
|
||||
XSERVER_X86_I965 = "xf86-video-intel \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-i965', '', d)} \
|
||||
"
|
||||
|
||||
XSERVER_X86_VESA = "xf86-video-vesa"
|
||||
|
||||
XSERVER_X86_FBDEV = "xf86-video-fbdev"
|
||||
|
||||
XSERVER_X86_MODESETTING = "xf86-video-modesetting"
|
||||
Reference in New Issue
Block a user