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