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 | |
| 11 | KBUILD_DEFCONFIG := fpga_defconfig |
| 12 | |
| 13 | # For ARC FPGA Platforms |
| 14 | platform-$(CONFIG_ARC_PLAT_FPGA_LEGACY) := arcfpga |
| 15 | #New platform adds here |
| 16 | |
| 17 | PLATFORM := $(platform-y) |
| 18 | export PLATFORM |
| 19 | |
| 20 | cflags-y += -Iarch/arc/plat-$(PLATFORM)/include |
| 21 | cflags-y += -mA7 -fno-common -pipe -fno-builtin -D__linux__ |
| 22 | |
Vineet Gupta | 080c374 | 2013-02-11 19:52:57 +0530 | [diff] [blame^] | 23 | ifdef CONFIG_ARC_CURR_IN_REG |
| 24 | # For a global register defintion, make sure it gets passed to every file |
| 25 | # We had a customer reported bug where some code built in kernel was NOT using |
| 26 | # any kernel headers, and missing the r25 global register |
| 27 | # Can't do unconditionally (like above) because of recursive include issues |
| 28 | # due to <linux/thread_info.h> |
| 29 | LINUXINCLUDE += -include ${src}/arch/arc/include/asm/current.h |
| 30 | endif |
| 31 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 32 | atleast_gcc44 := $(call cc-ifversion, -gt, 0402, y) |
| 33 | cflags-$(atleast_gcc44) += -fsection-anchors |
| 34 | |
| 35 | cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock |
| 36 | cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape |
| 37 | cflags-$(CONFIG_ARC_HAS_RTSC) += -mrtsc |
| 38 | cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables |
| 39 | |
| 40 | ifndef CONFIG_CC_OPTIMIZE_FOR_SIZE |
| 41 | # Generic build system uses -O2, we want -O3 |
| 42 | cflags-y += -O3 |
| 43 | endif |
| 44 | |
| 45 | # small data is default for elf32 tool-chain. If not usable, disable it |
| 46 | # This also allows repurposing GP as scratch reg to gcc reg allocator |
| 47 | disable_small_data := y |
| 48 | cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp |
| 49 | |
| 50 | cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian |
| 51 | ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB |
| 52 | |
| 53 | # STAR 9000518362: |
| 54 | # arc-linux-uclibc-ld (buildroot) or arceb-elf32-ld (EZChip) don't accept |
| 55 | # --build-id w/o "-marclinux". |
| 56 | # Default arc-elf32-ld is OK |
| 57 | ldflags-y += -marclinux |
| 58 | |
| 59 | ARC_LIBGCC := -mA7 |
| 60 | cflags-$(CONFIG_ARC_HAS_HW_MPY) += -multcost=16 |
| 61 | |
| 62 | ifndef CONFIG_ARC_HAS_HW_MPY |
| 63 | cflags-y += -mno-mpy |
| 64 | |
| 65 | # newlib for ARC700 assumes MPY to be always present, which is generally true |
| 66 | # However, if someone really doesn't want MPY, we need to use the 600 ver |
| 67 | # which coupled with -mno-mpy will use mpy emulation |
| 68 | # With gcc 4.4.7, -mno-mpy is enough to make any other related adjustments, |
| 69 | # e.g. increased cost of MPY. With gcc 4.2.1 this had to be explicitly hinted |
| 70 | |
| 71 | ARC_LIBGCC := -marc600 |
| 72 | ifneq ($(atleast_gcc44),y) |
| 73 | cflags-y += -multcost=30 |
| 74 | endif |
| 75 | endif |
| 76 | |
| 77 | LIBGCC := $(shell $(CC) $(ARC_LIBGCC) $(cflags-y) --print-libgcc-file-name) |
| 78 | |
| 79 | # Modules with short calls might break for calls into builtin-kernel |
| 80 | KBUILD_CFLAGS_MODULE += -mlong-calls |
| 81 | |
| 82 | # Finally dump eveything into kernel build system |
| 83 | KBUILD_CFLAGS += $(cflags-y) |
| 84 | KBUILD_AFLAGS += $(KBUILD_CFLAGS) |
| 85 | LDFLAGS += $(ldflags-y) |
| 86 | |
| 87 | # Needed for Linker script preprocessing |
| 88 | KBUILD_CPPFLAGS += -Iarch/arc/plat-$(PLATFORM)/include |
| 89 | |
| 90 | head-y := arch/arc/kernel/head.o |
| 91 | |
| 92 | # See arch/arc/Kbuild for content of core part of the kernel |
| 93 | core-y += arch/arc/ |
| 94 | |
Vineet Gupta | 999159a | 2013-01-22 17:00:52 +0530 | [diff] [blame] | 95 | # w/o this dtb won't embed into kernel binary |
| 96 | core-y += arch/arc/boot/dts/ |
| 97 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 98 | # w/o this ifneq, make ARCH=arc clean was crapping out |
| 99 | ifneq ($(platform-y),) |
| 100 | core-y += arch/arc/plat-$(PLATFORM)/ |
| 101 | endif |
| 102 | |
| 103 | libs-y += arch/arc/lib/ $(LIBGCC) |
| 104 | |
| 105 | #default target for make without any arguements. |
| 106 | KBUILD_IMAGE := bootpImage |
| 107 | |
| 108 | all: $(KBUILD_IMAGE) |
| 109 | boot := arch/arc/boot |
| 110 | |
| 111 | bootpImage: vmlinux |
| 112 | |
| 113 | uImage: vmlinux |
| 114 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 115 | |
Vineet Gupta | 999159a | 2013-01-22 17:00:52 +0530 | [diff] [blame] | 116 | %.dtb %.dtb.S %.dtb.o: scripts |
| 117 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
| 118 | |
| 119 | dtbs: scripts |
| 120 | $(Q)$(MAKE) $(build)=$(boot)/dts dtbs |
| 121 | |
Vineet Gupta | cfdbc2e | 2013-01-18 15:12:20 +0530 | [diff] [blame] | 122 | archclean: |
| 123 | $(Q)$(MAKE) $(clean)=$(boot) |
| 124 | |
| 125 | # Hacks to enable final link due to absence of link-time branch relexation |
| 126 | # and gcc choosing optimal(shorter) branches at -O3 |
| 127 | # |
| 128 | # vineetg Feb 2010: -mlong-calls switched off for overall kernel build |
| 129 | # However lib/decompress_inflate.o (.init.text) calls |
| 130 | # zlib_inflate_workspacesize (.text) causing relocation errors. |
| 131 | # Thus forcing all exten calls in this file to be long calls |
| 132 | export CFLAGS_decompress_inflate.o = -mmedium-calls |
| 133 | export CFLAGS_initramfs.o = -mmedium-calls |