1
2CFG_LITTLE ?= 0
3CFG_RELOC ?= 1
4CFG_UNCACHED ?= 0
5CFG_VAPI ?= 0
6CFG_BOOTRAM ?= 0
7CFG_BOARDNAME = "VCS"
8CFG_PCI = 0
9
10TOP = ../../../cfe
11ARCH = mips
12CPU = sb1250
13CHIPSET = sibyte
14BOARD = vcs
15
16include ${TOP}/main/cfe.mk
17
18BSPOBJS = vcs_init.o vcs_devs.o diag_null.o
19
20#
21# These settings speed up the cache init by not doing too much of it.
22# This helps boot time in the sim.
23# They also adjust timers and other hardware stuff 
24# for running in the functional simulator (mostly changes CPU speed to 
25# 500Khz).  Remove this before using on real hardware.
26#
27CFLAGS += -D_FASTINIT_ -D_FASTEMUL_ -D_FUNCSIM_
28CFLAGS += -U_SB1250_PASS1_WORKAROUNDS_
29CFLAGS += -DSIBYTE_HDR_FEATURES="(SIBYTE_HDR_FMASK_1250_ALL|SIBYTE_HDR_FMASK_112x_ALL)"
30
31ALL : cfe cfe.flash
32	echo done
33
34include ${TOP}/main/cfe_link.mk
35