FreeCalypso > hg > fc-tourmaline
view src/cs/services/dar/dar_gen.h @ 223:740a8e8fc9d7
startup sync logic rework for the new PWON button boot scheme
Previously we added logic to the MMI task to hold off PEI init until
R2D is running, and then extended that condition to wait for FCHG
init too. However, the dependencies of MMI upon R2D and FCHG don't
start until mmiInit(), and that call is driven by Switch_ON() code,
hence the wait for R2D and FCHG init can be made in that code path
instead of the MMI task. Furthermore, with our new way of signaling
PWON button boot to MMI, we need a new wait to ensure that the MMI
task is up - previously this assurance was provided by the wait for
Kp pointers to be set.
Solution: revert our previous PEI init hold-off additions to MMI,
add a new flag indicating MMI task init done, and put the combined
wait for all needed conditions into our new PWON button boot code
in power.c.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 27 Apr 2021 06:24:52 +0000 |
parents | 4e78acac3d88 |
children |
line wrap: on
line source
/********************************************************************************/ /* */ /* File Name: dar_gen.h */ /* */ /* Purpose: This file contain general definitions of DAR Module. */ /* */ /* Note: */ /* None. */ /* */ /* Revision History: */ /* 9 October 2001 Stephanie Gerthoux Create */ /* */ /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved. */ /* */ /********************************************************************************/ #ifndef __DAR_GEN_H__ #define __DAR_GEN_H__ #include "rv/general.h" /**** Type definitions ****/ /** Dar data format : ASCII or binary **/ typedef INT8 T_DAR_FORMAT; /* possible values */ #define DAR_ASCII_FORMAT (0) /* ASCII format */ #define DAR_BINARY_FORMAT (-1) /* Binary format */ /** DAR data level ( Error / Warning / Debug) **/ typedef UINT8 T_DAR_LEVEL; typedef UINT8* T_DAR_BUFFER; typedef char T_DAR_INFO; /** DAR callback function **/ typedef void (*DAR_CALLBACK_FUNC)(T_DAR_BUFFER, UINT16); /** DAR Level Default definition **/ #define DAR_LEVEL_DEFAULT (DAR_ERROR) #endif