20d6e092d8
ck860 is newest CPU core of C-SKY with high performance & SMP supported. Signed-off-by: Guo Ren <ren_guo@c-sky.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
470 B
Plaintext
27 lines
470 B
Plaintext
#
|
|
# Configure the GCC_TARGET_ARCH variable and append the
|
|
# appropriate C-SKY ISA extensions.
|
|
#
|
|
|
|
ifeq ($(BR2_csky),y)
|
|
|
|
ifeq ($(BR2_ck610),y)
|
|
GCC_TARGET_CPU := ck610
|
|
else ifeq ($(BR2_ck807),y)
|
|
GCC_TARGET_CPU := ck807
|
|
else ifeq ($(BR2_ck810),y)
|
|
GCC_TARGET_CPU := ck810
|
|
else ifeq ($(BR2_ck860),y)
|
|
GCC_TARGET_CPU := ck860
|
|
endif
|
|
|
|
ifeq ($(BR2_CSKY_FPU),y)
|
|
GCC_TARGET_CPU := $(GCC_TARGET_CPU)f
|
|
endif
|
|
|
|
ifeq ($(BR2_CSKY_VDSP),y)
|
|
GCC_TARGET_CPU := $(GCC_TARGET_CPU)v
|
|
endif
|
|
|
|
endif
|