view gsm-fw/g23m-gsm/Makefile @ 923:10b4bed10192

gsm-fw/L1: fix for the DSP patch corruption bug The L1 code we got from the LoCosto fw contains a feature for DSP CPU load measurement. This feature is a LoCosto-ism, i.e., not applicable to earlier DBB chips (Calypso) with their respective earlier DSP ROMs. Most of the code dealing with that feature is conditionalized as #if (DSP >= 38), but one spot was missed, and the MCU code was writing into an API word dealing with this feature. In TCS211 this DSP API word happens to be used by the DSP code patch, hence that write was corrupting the patched DSP code.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Mon, 19 Oct 2015 17:13:56 +0000
parents 40a721fd9854
children
line wrap: on
line source

LD=	arm-elf-ld

SUBDIR=	alr cc dl l1 mm rr sim sms ss

XIP_OBJS=	alr/xipcode.o cc/xipcode.o dl/xipcode.o l1/l1_pei.o \
		mm/xipcode.o rr/xipcode.o sim/xipcode.o sms/xipcode.o \
		ss/xipcode.o

all:	xipcode.o

${SUBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS}

alr/xipcode.o:	alr
	@true

cc/xipcode.o:	cc
	@true

dl/xipcode.o:	dl
	@true

l1/l1_pei.o:	l1
	@true

mm/xipcode.o:	mm
	@true

rr/xipcode.o:	rr
	@true

sim/xipcode.o:	sim
	@true

sms/xipcode.o:	sms
	@true

ss/xipcode.o:	ss
	@true

xipcode.o:	${XIP_OBJS}
	${LD} -r -o $@ ${XIP_OBJS}

clean: FRC
	rm -f *.[oa] *.out *errs
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

FRC: