0b1e7d89c0a02d5dd1910fee27b52c1bc6eb6d96
[profile/mobile/platform/kernel/u-boot-tm1.git] / arch / arm / cpu / armv7 / sc8830 / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # See file CREDITS for list of people who contributed to this
6 # project.
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of
11 # the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 # MA 02111-1307 USA
22
23 include $(TOPDIR)/config.mk
24
25 LIB     = $(obj)lib$(SOC).o
26
27 COBJS   = generic.o timer.o reset.o ldo.o mfp_sprd.o mmu.o adc.o rtc-sprd.o sec_boot.o glb.o adi.o gpio.o gpio_phy.o clock.o clock_test.o check_reboot.o eic.o
28
29 ifneq ($(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S),)
30 COBJS += vibrator_sc2723.o
31 else
32 COBJS += vibrator_sc2713.o
33 endif
34
35 SOBJS += mmu_asm.o
36 ifndef CONFIG_SPX30G
37 COBJS += chip_phy_v3.o
38 endif
39
40 ifneq ($(CONFIG_SPX30G)$(CONFIG_SPX35L)$(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S),)
41 COBJS += otp-helper.o efuse.o
42 ifneq ($(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S),)
43 COBJS += ana_efuse.o
44 endif
45
46 else
47 COBJS += efuse_drv.o
48 endif
49
50 ifndef CONFIG_SKIP_LOWLEVEL_INIT
51 COBJS   += lowlevel_init.o sdram.o remap.o sdram_prod.o mmu.o chip_cfg.o mcu.o
52 SOBJS   = cpu_spec.o mmu_asm.o
53 endif
54
55 ifdef CONFIG_HW_WATCHDOG
56 COBJS  += watchdog.o watchdog_phy_v3.o watchdog_hal.o
57 endif
58
59 ifdef CONFIG_AUTODLOADER
60 COBJS   += chip_cfg.o
61 endif
62
63 ifdef CONFIG_SPX30G
64 PHYDIR = chip_x30g
65 $(shell mkdir -p $(obj)$(PHYDIR))
66 COBJS += $(PHYDIR)/chip_phy_x30g.o
67 COBJS += Tshark_boot_cp.o
68 else
69 COBJS += shark_boot_cp.o
70 endif
71
72 COBJS += misc.o
73 ifdef CONFIG_SPX15
74
75 PHYDIR  = chip_x15
76 $(shell mkdir -p $(obj)$(PHYDIR))
77 COBJS += $(PHYDIR)/low_power.o
78 endif
79
80
81 #ifneq ($(strip($(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S))),)
82 ifneq ($(strip $(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S)),)
83 COBJS += dcdc_cal_sc2723.o
84 else
85
86 ifdef CONFIG_ADIE_SC2713S
87 COBJS += dcdc_cal_sc2713s.o
88 ifdef CONFIG_ADIE_SC2713
89 COBJS += dcdc_cal.o
90 endif
91
92 else
93 ifdef CONFIG_SPX15
94 COBJS += dcdc_cal_x15.o
95 else
96 COBJS += dcdc_cal.o
97 endif
98 endif # CONFIG_ADIE_SC2713S
99 endif # CONFIG_ADIE_SC2723
100
101
102 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
103 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS) )
104
105 all:    $(obj).depend $(LIB)
106
107 $(LIB): $(OBJS)
108         $(AR) $(ARFLAGS) $@ $(OBJS)
109
110 #########################################################################
111
112 # defines $(obj).depend target
113 include $(SRCTREE)/rules.mk
114
115 sinclude $(obj).depend
116
117 #########################################################################