1
2CFG_MLONG64 ?= 0
3CFG_LITTLE ?= 0
4CFG_RELOC ?= 0
5CFG_UNCACHED ?= 0
6CFG_VAPI ?= 0
7CFG_BOOTRAM ?= 0
8CFG_BOARDNAME = "SIM_SWARM"
9CFG_PCI = 1
10CFG_LDT_REV_017 = 1
11
12TOP = ../../../cfe
13ARCH = mips
14CPU = sb1250
15BOARD = swarm
16
17include ${TOP}/main/cfe.mk
18
19BSPOBJS = swarm_init.o swarm_devs.o diag_null.o
20
21ifeq ($(strip ${CFG_PCI}),1)
22BSPOBJS += swarm_pci.o
23endif
24
25#
26# These settings speed up the DRAM init shortening the delays and
27# by not doing too much of it.  This helps boot time in the sim.
28# It also adjusts timers and other hardware stuff for running
29# in the functional simulator (mostly changes CPU speed to 
30# 500Khz).  Remove this before using on real hardware.
31#
32CFLAGS += -D_FASTEMUL_ -D_FUNCSIM_
33
34
35ALL : cfe cfe.flash
36	echo done
37
38include ${TOP}/main/cfe_link.mk
39