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 | |
| 17 | ifeq ($(CONFIG_ARC_TUNE_MCPU),"") |
| 18 | cflags-y += $(tune-mcpu-def-y) |
| 19 | else |
| 20 | tune-mcpu := $(shell echo $(CONFIG_ARC_TUNE_MCPU)) |
| 21 | tune-mcpu-ok := $(call cc-option-yn, $(tune-mcpu)) |
| 22 | ifeq ($(tune-mcpu-ok),y) |
| 23 | cflags-y += $(tune-mcpu) |
| 24 | else |
| 25 | # The flag provided by 'CONFIG_ARC_TUNE_MCPU' option isn't known by this compiler |
| 26 | # (probably the compiler is too old). Use ISA default mcpu flag instead as a safe option. |
| 27 | $(warning ** WARNING ** CONFIG_ARC_TUNE_MCPU flag '$(tune-mcpu)' is unknown, fallback to '$(tune-mcpu-def-y)') |
| 28 | cflags-y += $(tune-mcpu-def-y) |
| 29 | endif |
| 30 | endif |
| 31 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 32 | |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 33 | ifdef CONFIG_ARC_CURR_IN_REG |
| 34 | # For a global register defintion, make sure it gets passed to every file |
| 35 | # We had a customer reported bug where some code built in kernel was NOT using |
| 36 | # any kernel headers, and missing the r25 global register |
Vineet Gupta | 8235703 | 2013-06-01 12:55:42 +0530 | [diff] [blame] | 37 | # Can't do unconditionally because of recursive include issues |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 38 | # due to <linux/thread_info.h> |
Masahiro Yamada | 75dd474 | 2019-07-06 12:07:11 +0900 | [diff] [blame] | 39 | LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame] | 40 | endif |
| 41 | |
Masahiro Yamada | 2b52e2a | 2018-08-27 12:07:37 +0900 | [diff] [blame] | 42 | cflags-y += -fsection-anchors |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 43 | |
Vineet Gupta | 76a0840 | 2016-11-08 08:47:14 -0800 | [diff] [blame] | 44 | cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock |
| 45 | cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape |
| 46 | |
Alexey Brodkin | d05a76a | 2015-07-16 21:45:38 +0300 | [diff] [blame] | 47 | ifdef CONFIG_ISA_ARCV2 |
| 48 | |
Eugeniy Paltsev | 7655146 | 2019-01-30 19:32:41 +0300 | [diff] [blame] | 49 | ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS |
| 50 | cflags-y += -munaligned-access |
| 51 | else |
| 52 | cflags-y += -mno-unaligned-access |
| 53 | endif |
| 54 | |
Vineet Gupta | 1f6ccff | 2013-05-13 18:30:41 +0530 | [diff] [blame] | 55 | ifndef CONFIG_ARC_HAS_LL64 |
Alexey Brodkin | d05a76a | 2015-07-16 21:45:38 +0300 | [diff] [blame] | 56 | cflags-y += -mno-ll64 |
| 57 | endif |
| 58 | |
| 59 | ifndef CONFIG_ARC_HAS_DIV_REM |
| 60 | cflags-y += -mno-div-rem |
| 61 | endif |
| 62 | |
Vineet Gupta | 1f6ccff | 2013-05-13 18:30:41 +0530 | [diff] [blame] | 63 | endif |
| 64 | |
Vineet Gupta | 5a205a3 | 2016-09-16 17:23:26 -0700 | [diff] [blame] | 65 | cfi := $(call as-instr,.cfi_startproc\n.cfi_endproc,-DARC_DW2_UNWIND_AS_CFI) |
| 66 | cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables $(cfi) |
Vineet Gupta | 6716dbb | 2013-06-24 21:22:06 +0530 | [diff] [blame] | 67 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 68 | # small data is default for elf32 tool-chain. If not usable, disable it |
| 69 | # This also allows repurposing GP as scratch reg to gcc reg allocator |
| 70 | disable_small_data := y |
| 71 | cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp |
| 72 | |
| 73 | cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian |
| 74 | ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB |
| 75 | |
Alexey Brodkin | 40660f1 | 2018-09-16 23:47:57 +0300 | [diff] [blame] | 76 | LIBGCC = $(shell $(CC) $(cflags-y) --print-libgcc-file-name) |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 77 | |
| 78 | # Modules with short calls might break for calls into builtin-kernel |
Vineet Gupta | 07fd7d4 | 2015-12-21 12:38:01 +0530 | [diff] [blame] | 79 | KBUILD_CFLAGS_MODULE += -mlong-calls -mno-millicode |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 80 | |
| 81 | # Finally dump eveything into kernel build system |
| 82 | KBUILD_CFLAGS += $(cflags-y) |
| 83 | KBUILD_AFLAGS += $(KBUILD_CFLAGS) |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 84 | KBUILD_LDFLAGS += $(ldflags-y) |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 85 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 86 | head-y := arch/arc/kernel/head.o |
| 87 | |
| 88 | # See arch/arc/Kbuild for content of core part of the kernel |
| 89 | core-y += arch/arc/ |
| 90 | |
Vineet Gupta | 999159a | 2013-01-22 17:00:52 +0530 | [diff] [blame] | 91 | # w/o this dtb won't embed into kernel binary |
| 92 | core-y += arch/arc/boot/dts/ |
| 93 | |
Vineet Gupta | 33460f8 | 2017-07-28 16:53:50 +0530 | [diff] [blame] | 94 | core-y += arch/arc/plat-sim/ |
Vineet Gupta | fd15579 | 2015-02-20 19:12:18 +0530 | [diff] [blame] | 95 | core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/ |
Alexey Brodkin | 556cc1c | 2014-01-27 14:51:34 +0100 | [diff] [blame] | 96 | core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/ |
Alexey Brodkin | a518d63 | 2017-08-15 21:13:55 +0300 | [diff] [blame] | 97 | core-$(CONFIG_ARC_SOC_HSDK) += arch/arc/plat-hsdk/ |
Noam Camus | 96665789 | 2015-10-16 16:52:43 +0300 | [diff] [blame] | 98 | |
Vineet Gupta | 769bc1f | 2013-01-22 17:02:38 +0530 | [diff] [blame] | 99 | drivers-$(CONFIG_OPROFILE) += arch/arc/oprofile/ |
| 100 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 101 | libs-y += arch/arc/lib/ $(LIBGCC) |
| 102 | |
Vineet Gupta | fb0990b | 2013-03-22 19:48:01 +0530 | [diff] [blame] | 103 | boot := arch/arc/boot |
| 104 | |
Andrea Gelmini | 2547476 | 2016-05-21 13:45:35 +0200 | [diff] [blame] | 105 | #default target for make without any arguments. |
Michal Marek | 5e40f0f | 2016-11-22 22:34:31 +0100 | [diff] [blame] | 106 | KBUILD_IMAGE := $(boot)/bootpImage |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 107 | |
Michal Marek | 5e40f0f | 2016-11-22 22:34:31 +0100 | [diff] [blame] | 108 | all: bootpImage |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 109 | bootpImage: vmlinux |
| 110 | |
Vineet Gupta | 104058e | 2013-03-22 22:04:27 +0530 | [diff] [blame] | 111 | boot_targets += uImage uImage.bin uImage.gz |
| 112 | |
| 113 | $(boot_targets): vmlinux |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 114 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 115 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 116 | archclean: |
| 117 | $(Q)$(MAKE) $(clean)=$(boot) |