view scripts/make-rv-swe-hdr.sh @ 51:04aaa5622fa7

disable deep sleep when Iota LEDB is on TI's Iota chip docs say that CLK13M must be running in order for LEDB to work, and practical experience on Mot C139 which uses Iota LEDB for its keypad backlight concurs: if Calypso enters deep sleep while the keypad backlight is turned on, the light flickers visibly as the chipset goes into and out of deep sleep. TI's original L1 sleep manager code had logic to disable deep sleep when LT_Status() returns nonzero, but that function only works for B-Sample and C-Sample LT, always returns 0 on BOARD 41 - no check of Iota LEDB status anywhere. Change this code for our current hardware: disable deep sleep when Iota LEDB has been turned on through LLS.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 19 Oct 2020 05:11:29 +0000
parents 12ed2291fb67
children ee04ca45053d
line wrap: on
line source

#!/bin/sh

echo '#ifndef __RV_SWE_H__'
echo '#define __RV_SWE_H__'
echo

if [ "$ATP_STATE" = 1 ]
then
	echo '#define RVM_ATP_SWE'
fi

echo '#define RVM_AUDIO_SWE'
echo '#define RVM_ETM_SWE'
echo '#define RVM_DAR_SWE'
echo '#define RVM_SPI_SWE'
echo '#define RVM_LLS_SWE'
echo '#define RVM_KPD_SWE'

if [ "$FCHG_STATE" = 1 ]
then
	echo '#define RVM_FCHG_SWE'
fi

if [ "$LCC_STATE" = 1 ]
then
	echo '#define RVM_LCC_SWE'
fi

if [ "$PWR_STATE" = 1 ]
then
	echo '#define RVM_PWR_SWE'
fi

if [ "$R2D_STATE" = 1 ]
then
	echo '#define RVM_R2D_SWE'
fi

if [ "$MKS_STATE" = 1 ]
then
	echo '#define RVM_MKS_SWE'
fi

echo '#define RVM_RTC_SWE'
echo '#define RVM_FFS_SWE'

echo
echo '#endif /* __RV_SWE_H__ */'