]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/csky/Makefile
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / arch / csky / Makefile
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
c32e64e8
GR
2OBJCOPYFLAGS :=-O binary
3GZFLAGS :=-9
c32e64e8
GR
4
5ifdef CONFIG_CPU_HAS_FPU
6FPUEXT = f
7endif
8
9ifdef CONFIG_CPU_HAS_VDSP
10VDSPEXT = v
11endif
12
13ifdef CONFIG_CPU_HAS_TEE
14TEEEXT = t
15endif
16
17ifdef CONFIG_CPU_CK610
18CPUTYPE = ck610
19CSKYABI = abiv1
20endif
21
22ifdef CONFIG_CPU_CK810
23CPUTYPE = ck810
24CSKYABI = abiv2
25endif
26
27ifdef CONFIG_CPU_CK807
28CPUTYPE = ck807
29CSKYABI = abiv2
30endif
31
32ifdef CONFIG_CPU_CK860
33CPUTYPE = ck860
34CSKYABI = abiv2
35endif
36
37ifneq ($(CSKYABI),)
38MCPU_STR = $(CPUTYPE)$(FPUEXT)$(VDSPEXT)$(TEEEXT)
3dfc242f 39KBUILD_CFLAGS += -mcpu=$(CPUTYPE) -Wa,-mcpu=$(MCPU_STR)
c32e64e8
GR
40KBUILD_CFLAGS += -DCSKYCPU_DEF_NAME=\"$(MCPU_STR)\"
41KBUILD_CFLAGS += -msoft-float -mdiv
42KBUILD_CFLAGS += -fno-tree-vectorize
43endif
44
45KBUILD_CFLAGS += -pipe
46ifeq ($(CSKYABI),abiv2)
47KBUILD_CFLAGS += -mno-stack-size
48endif
49
18c07d23 50ifdef CONFIG_FRAME_POINTER
0ea2dc7c
GR
51KBUILD_CFLAGS += -mbacktrace
52endif
53
c32e64e8
GR
54abidirs := $(patsubst %,arch/csky/%/,$(CSKYABI))
55KBUILD_CFLAGS += $(patsubst %,-I$(srctree)/%inc,$(abidirs))
56
57KBUILD_CPPFLAGS += -mlittle-endian
58LDFLAGS += -EL
59
60KBUILD_AFLAGS += $(KBUILD_CFLAGS)
61
62head-y := arch/csky/kernel/head.o
63
64core-y += arch/csky/kernel/
65core-y += arch/csky/mm/
66core-y += arch/csky/$(CSKYABI)/
67
68libs-y += arch/csky/lib/ \
69 $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name)
70
71boot := arch/csky/boot
c32e64e8 72core-y += $(boot)/dts/
c32e64e8
GR
73
74all: zImage
75
e8d0c9a7 76zImage Image uImage: vmlinux
c32e64e8
GR
77 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
78
79archclean:
80 $(Q)$(MAKE) $(clean)=$(boot)
c32e64e8
GR
81
82define archhelp
83 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
84 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
85 echo ' uImage - U-Boot wrapped zImage'
86endef