1
2CFG_LITTLE ?= 0
3CFG_RELOC ?= 1
4CFG_UNCACHED ?= 0
5CFG_VAPI ?= 0
6CFG_BOOTRAM ?= 0
7CFG_BOARDNAME = "VCS1280"
8CFG_PCI = 0
9
10TOP = ../../../cfe
11ARCH = mips
12CPU = bcm1480
13CHIPSET = sibyte
14BOARD = vcs1280
15
16include ${TOP}/main/cfe.mk
17
18BSPOBJS = vcs1280_init.o vcs1280_devs.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_ 
28CFLAGS += -D_VERILOG_
29# -D_FASTEMUL_ -D_FUNCSIM_
30CFLAGS += -D_DENALI_
31CFLAGS += -DSIBYTE_HDR_FEATURES="(SIBYTE_HDR_FMASK_1480_ALL)"
32
33
34ALL : cfe cfe.flash
35	sb1-elf-objdump -d -l cfe > cfe.dis
36	echo done
37
38include ${TOP}/main/cfe_link.mk
39