]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/cpu/Makefile
Blackfin: use on-chip reset func with newer parts
[karo-tx-uboot.git] / arch / blackfin / cpu / Makefile
1 #
2 # U-boot - Makefile
3 #
4 # Copyright (c) 2005-2008 Analog Device Inc.
5 #
6 # (C) Copyright 2000-2006
7 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 #
9 # Licensed under the GPL-2 or later.
10 #
11
12 include $(TOPDIR)/config.mk
13
14 LIB     = $(obj)lib$(CPU).o
15
16 EXTRA    :=
17 CEXTRA   := initcode.o
18 SEXTRA   := start.o
19 SOBJS    := interrupt.o cache.o
20 COBJS-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount.o
21 COBJS-y  += cpu.o
22 COBJS-y  += gpio.o
23 COBJS-y  += interrupts.o
24 COBJS-$(CONFIG_JTAG_CONSOLE) += jtag-console.o
25 COBJS-y  += os_log.o
26 COBJS-y  += reset.o
27 COBJS-y  += serial.o
28 COBJS-y  += traps.o
29 COBJS-$(CONFIG_HW_WATCHDOG)  += watchdog.o
30
31 SRCS     := $(SEXTRA:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
32 OBJS     := $(addprefix $(obj),$(COBJS-y) $(SOBJS))
33 EXTRA    := $(addprefix $(obj),$(EXTRA))
34 CEXTRA   := $(addprefix $(obj),$(CEXTRA))
35 SEXTRA   := $(addprefix $(obj),$(SEXTRA))
36
37 all:    $(obj).depend $(LIB) $(obj).depend $(EXTRA) $(CEXTRA) $(SEXTRA) check_initcode
38
39 $(LIB): $(OBJS)
40         $(call cmd_link_o_target, $(OBJS))
41
42 $(OBJS): $(obj)bootrom-asm-offsets.h
43 $(obj)bootrom-asm-offsets.c: bootrom-asm-offsets.c.in bootrom-asm-offsets.awk
44         echo '#include <asm/mach-common/bits/bootrom.h>' | $(CPP) $(CPPFLAGS) - | gawk -f ./bootrom-asm-offsets.awk > $@.tmp
45         mv $@.tmp $@
46 $(obj)bootrom-asm-offsets.s: $(obj)bootrom-asm-offsets.c
47         $(CC) $(CFLAGS) -S $^ -o $@.tmp
48         mv $@.tmp $@
49 $(obj)bootrom-asm-offsets.h: $(obj)bootrom-asm-offsets.s
50         sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" $^ > $@
51
52 # make sure our initcode (which goes into LDR) does not
53 # have relocs or external references
54 $(obj)initcode.o: CFLAGS += -fno-function-sections -fno-data-sections
55 READINIT = env LC_ALL=C $(CROSS_COMPILE)readelf -s $<
56 check_initcode: $(obj)initcode.o
57 ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
58         @if $(READINIT) | grep '\<GLOBAL\>.*\<UND\>' ; then \
59                 echo "$< contains external references!" 1>&2 ; \
60                 exit 1 ; \
61         fi
62 endif
63
64 #########################################################################
65
66 # defines $(obj).depend target
67 include $(SRCTREE)/rules.mk
68
69 sinclude $(obj).depend
70
71 #########################################################################