Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 2 | # |
| 3 | # Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) |
| 4 | # |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 5 | |
Eugeniy Paltsev | 1681baa | 2019-10-23 15:44:15 +0300 | [diff] [blame] | 6 | KBUILD_DEFCONFIG := haps_hs_smp_defconfig |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 7 | |
Alexey Brodkin | 2bc42bf | 2019-06-03 09:31:19 +0300 | [diff] [blame] | 8 | ifeq ($(CROSS_COMPILE),) |
| 9 | CROSS_COMPILE := $(call cc-cross-prefix, arc-linux- arceb-linux-) |
| 10 | endif |
| 11 | |
Alexey Brodkin | 74c11e3 | 2018-06-01 14:34:33 +0300 | [diff] [blame] | 12 | cflags-y += -fno-common -pipe -fno-builtin -mmedium-calls -D__linux__ |
Eugeniy Paltsev | 0bdd6e7 | 2020-06-04 20:39:24 +0300 | [diff] [blame] | 13 | |
Vineet Gupta | 040ece2 | 2020-06-16 15:14:50 -0700 | [diff] [blame] | 14 | tune-mcpu-def-$(CONFIG_ISA_ARCOMPACT) := -mcpu=arc700 |
Eugeniy Paltsev | 0bdd6e7 | 2020-06-04 20:39:24 +0300 | [diff] [blame] | 15 | tune-mcpu-def-$(CONFIG_ISA_ARCV2) := -mcpu=hs38 |
| 16 | |
Masahiro Yamada | 129ab0d | 2021-12-14 11:53:53 +0900 | [diff] [blame] | 17 | ifeq ($(CONFIG_ARC_TUNE_MCPU),) |
Eugeniy Paltsev | 0bdd6e7 | 2020-06-04 20:39:24 +0300 | [diff] [blame] | 18 | cflags-y += $(tune-mcpu-def-y) |
| 19 | else |
Masahiro Yamada | 129ab0d | 2021-12-14 11:53:53 +0900 | [diff] [blame] | 20 | tune-mcpu := $(CONFIG_ARC_TUNE_MCPU) |
Nick Desaulniers | 43e6b58 | 2021-08-16 17:21:06 -0700 | [diff] [blame] | 21 | ifneq ($(call cc-option,$(tune-mcpu)),) |
Eugeniy Paltsev | 0bdd6e7 | 2020-06-04 20:39:24 +0300 | [diff] [blame] | 22 | cflags-y += $(tune-mcpu) |
| 23 | else |
| 24 | # The flag provided by 'CONFIG_ARC_TUNE_MCPU' option isn't known by this compiler |
| 25 | # (probably the compiler is too old). Use ISA default mcpu flag instead as a safe option. |
| 26 | $(warning ** WARNING ** CONFIG_ARC_TUNE_MCPU flag '$(tune-mcpu)' is unknown, fallback to '$(tune-mcpu-def-y)') |
| 27 | cflags-y += $(tune-mcpu-def-y) |
| 28 | endif |
| 29 | endif |
| 30 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 31 | |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 32 | ifdef CONFIG_ARC_CURR_IN_REG |
Bhaskar Chowdhury | f79f7a2 | 2021-03-22 17:58:19 +0530 | [diff] [blame] | 33 | # For a global register definition, make sure it gets passed to every file |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 34 | # We had a customer reported bug where some code built in kernel was NOT using |
| 35 | # any kernel headers, and missing the r25 global register |
Vineet Gupta | 8235703 | 2013-06-01 12:55:42 +0530 | [diff] [blame] | 36 | # Can't do unconditionally because of recursive include issues |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 37 | # due to <linux/thread_info.h> |
Masahiro Yamada | 75dd474 | 2019-07-06 12:07:11 +0900 | [diff] [blame] | 38 | LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 39 | endif |
| 40 | |
Masahiro Yamada | 2b52e2a | 2018-08-27 12:07:37 +0900 | [diff] [blame] | 41 | cflags-y += -fsection-anchors |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 42 | |
Vineet Gupta | 76a0840 | 2016-11-08 08:47:14 -0800 | [diff] [blame] | 43 | cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock |
| 44 | cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape |
| 45 | |
Alexey Brodkin | d05a76a | 2015-07-16 21:45:38 +0300 | [diff] [blame] | 46 | ifdef CONFIG_ISA_ARCV2 |
| 47 | |
Eugeniy Paltsev | 7655146 | 2019-01-30 19:32:41 +0300 | [diff] [blame] | 48 | ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS |
| 49 | cflags-y += -munaligned-access |
| 50 | else |
| 51 | cflags-y += -mno-unaligned-access |
| 52 | endif |
| 53 | |
Vineet Gupta | 1f6ccff | 2013-05-13 18:30:41 +0530 | [diff] [blame] | 54 | ifndef CONFIG_ARC_HAS_LL64 |
Alexey Brodkin | d05a76a | 2015-07-16 21:45:38 +0300 | [diff] [blame] | 55 | cflags-y += -mno-ll64 |
| 56 | endif |
| 57 | |
| 58 | ifndef CONFIG_ARC_HAS_DIV_REM |
| 59 | cflags-y += -mno-div-rem |
| 60 | endif |
| 61 | |
Vineet Gupta | 1f6ccff | 2013-05-13 18:30:41 +0530 | [diff] [blame] | 62 | endif |
| 63 | |
Vineet Gupta | 5a205a3 | 2016-09-16 17:23:26 -0700 | [diff] [blame] | 64 | cfi := $(call as-instr,.cfi_startproc\n.cfi_endproc,-DARC_DW2_UNWIND_AS_CFI) |
| 65 | cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables $(cfi) |
Vineet Gupta | 6716dbb | 2013-06-24 21:22:06 +0530 | [diff] [blame] | 66 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 67 | # small data is default for elf32 tool-chain. If not usable, disable it |
| 68 | # This also allows repurposing GP as scratch reg to gcc reg allocator |
| 69 | disable_small_data := y |
| 70 | cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp |
| 71 | |
| 72 | cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian |
| 73 | ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB |
| 74 | |
Alexey Brodkin | 40660f1 | 2018-09-16 23:47:57 +0300 | [diff] [blame] | 75 | LIBGCC = $(shell $(CC) $(cflags-y) --print-libgcc-file-name) |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 76 | |
| 77 | # Modules with short calls might break for calls into builtin-kernel |
Vineet Gupta | 07fd7d4 | 2015-12-21 12:38:01 +0530 | [diff] [blame] | 78 | KBUILD_CFLAGS_MODULE += -mlong-calls -mno-millicode |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 79 | |
| 80 | # Finally dump eveything into kernel build system |
| 81 | KBUILD_CFLAGS += $(cflags-y) |
| 82 | KBUILD_AFLAGS += $(KBUILD_CFLAGS) |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 83 | KBUILD_LDFLAGS += $(ldflags-y) |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 84 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 85 | head-y := arch/arc/kernel/head.o |
| 86 | |
Vineet Gupta | 999159a | 2013-01-22 17:00:52 +0530 | [diff] [blame] | 87 | # w/o this dtb won't embed into kernel binary |
| 88 | core-y += arch/arc/boot/dts/ |
| 89 | |
Vineet Gupta | 33460f8 | 2017-07-28 16:53:50 +0530 | [diff] [blame] | 90 | core-y += arch/arc/plat-sim/ |
Vineet Gupta | fd15579 | 2015-02-20 19:12:18 +0530 | [diff] [blame] | 91 | core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/ |
Alexey Brodkin | 556cc1c | 2014-01-27 14:51:34 +0100 | [diff] [blame] | 92 | core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/ |
Alexey Brodkin | a518d63 | 2017-08-15 21:13:55 +0300 | [diff] [blame] | 93 | core-$(CONFIG_ARC_SOC_HSDK) += arch/arc/plat-hsdk/ |
Noam Camus | 96665789 | 2015-10-16 16:52:43 +0300 | [diff] [blame] | 94 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 95 | libs-y += arch/arc/lib/ $(LIBGCC) |
| 96 | |
Vineet Gupta | fb0990b | 2013-03-22 19:48:01 +0530 | [diff] [blame] | 97 | boot := arch/arc/boot |
| 98 | |
Masahiro Yamada | c5e6ae5 | 2020-11-22 04:36:55 +0900 | [diff] [blame] | 99 | boot_targets := uImage.bin uImage.gz uImage.lzma |
Vineet Gupta | 104058e | 2013-03-22 22:04:27 +0530 | [diff] [blame] | 100 | |
Masahiro Yamada | 0cfccb3 | 2020-11-22 04:36:54 +0900 | [diff] [blame] | 101 | PHONY += $(boot_targets) |
Vineet Gupta | 104058e | 2013-03-22 22:04:27 +0530 | [diff] [blame] | 102 | $(boot_targets): vmlinux |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 103 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 104 | |
Masahiro Yamada | c5e6ae5 | 2020-11-22 04:36:55 +0900 | [diff] [blame] | 105 | uimage-default-y := uImage.bin |
| 106 | uimage-default-$(CONFIG_KERNEL_GZIP) := uImage.gz |
| 107 | uimage-default-$(CONFIG_KERNEL_LZMA) := uImage.lzma |
| 108 | |
| 109 | PHONY += uImage |
| 110 | uImage: $(uimage-default-y) |
| 111 | @ln -sf $< $(boot)/uImage |
| 112 | @$(kecho) ' Image $(boot)/uImage is ready' |
| 113 | |
| 114 | CLEAN_FILES += $(boot)/uImage |