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