blob: e4909eb18f0088dcc94816ab96e56de95c0aa921 [file] [log] [blame]
V S Ramanjaneya Kumar T713be572013-08-02 11:00:10 +05301LOCAL_DIR := $(GET_LOCAL_DIR)
2
3INCLUDES += -I$(LOCAL_DIR)/include -I$(LK_TOP_DIR)/platform/msm_shared
4
5PLATFORM := fsm9900
6
Channagoud Kadabi60f62152014-11-05 23:12:42 -05007MEMBASE := 0x1e000000 # SDRAM
V S Ramanjaneya Kumar T713be572013-08-02 11:00:10 +05308MEMSIZE := 0x00100000 # 1MB
9
Channagoud Kadabi60f62152014-11-05 23:12:42 -050010BASE_ADDR := 0x0b600000
V S Ramanjaneya Kumar T713be572013-08-02 11:00:10 +053011
12TAGS_ADDR := BASE_ADDR+0x00000100
13KERNEL_ADDR := BASE_ADDR+0x00008000
14RAMDISK_ADDR := BASE_ADDR+0x01000000
Channagoud Kadabi60f62152014-11-05 23:12:42 -050015SCRATCH_ADDR := 0x0c000000
V S Ramanjaneya Kumar T713be572013-08-02 11:00:10 +053016
17MODULES += \
18 dev/keys \
V S Ramanjaneya Kumar T713be572013-08-02 11:00:10 +053019 lib/ptable \
20 lib/libfdt
21
22DEFINES += \
23 MEMSIZE=$(MEMSIZE) \
24 MEMBASE=$(MEMBASE) \
25 BASE_ADDR=$(BASE_ADDR) \
26 TAGS_ADDR=$(TAGS_ADDR) \
27 KERNEL_ADDR=$(KERNEL_ADDR) \
28 RAMDISK_ADDR=$(RAMDISK_ADDR) \
29 SCRATCH_ADDR=$(SCRATCH_ADDR)
30
31
32OBJS += \
33 $(LOCAL_DIR)/init.o \
34 $(LOCAL_DIR)/meminfo.o