blob: abf81b90c449ddafc16c63e2f5a4ddc5def0df64 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001DEFAULTTUNE ?= "ppce500"
2
3require conf/machine/include/powerpc/arch-powerpc.inc
4
5TUNEVALID[ppce500] = "Enable ppce500 specific processor optimizations"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05006TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ppce500', ' -mcpu=8540', '', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
8TUNEVALID[spe] = "Enable SPE ABI extensions"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', [ 'ppce500', 'spe' ], ' -mabi=spe -mspe -mfloat-gprs=single', '', d)}"
10TARGET_FPU .= "${@bb.utils.contains('TUNE_FEATURES', [ 'ppce500' , 'spe' ], 'ppc-efs', '', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
12# spe is defined potentially in two places, so we want to be sure it will
13# only write spe once to the ABIEXTENSIONS field.
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014SPEABIEXTENSION = "${@bb.utils.filter('TUNE_FEATURES', 'spe', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015ABIEXTENSION .= "${SPEABIEXTENSION}"
16
17AVAILTUNES += "ppce500"
Brad Bishop79641f22019-09-10 07:20:22 -040018TUNE_FEATURES_tune-ppce500 = "m32 spe ppce500 bigendian"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019TUNE_PKGARCH_tune-ppce500 = "ppce500"
20PACKAGE_EXTRA_ARCHS_tune-ppce500 = "ppce500"