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