FreeCalypso > hg > fc-magnetite
view src/cs/services/lls/lls_api.c @ 624:012028896cfb
FFS dev.c, Leonardo target: Fujitsu MB84VF5F5F4J2 #if 0'ed out
The FFS code we got from TI/Openmoko had a stanza for "Fujitsu MB84VF5F5F4J2
stacked device", using a fake device ID code that would need to be patched
manually into cfgffs.c (suppressing and overriding autodetection) and using
an FFS base address in the nCS2 bank, indicating that this FFS config was
probably meant for the MCP version of Leonardo which allows for 16 MiB flash
with a second bank on nCS2.
We previously had this FFS config stanza conditionalized under
CONFIG_TARGET_LEONARDO because the base address contained therein is invalid
for other targets, but now that we actually have a Leonardo build target in
FC Magnetite, I realize that the better approach is to #if 0 out this stanza
altogether: it is already non-functional because it uses a fake device ID
code, thus it is does not add support for more Leonardo board variants,
instead it is just noise.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Dec 2019 21:24:29 +0000 |
parents | 945cf7f506b2 |
children |
line wrap: on
line source
/** * @file lls_api.c * * Implementation of Functions. * * @author Laurent Sollier (l-sollier@ti.com) * @version 0.1 */ /* * History: * * Date Author Modification * ---------------------------------------- * 03/12/2002 L Sollier Create * * * (C) Copyright 2002 by Texas Instruments Incorporated, All Rights Reserved */ #ifndef _WINDOWS #include "l1sw.cfg" #include "chipset.cfg" #endif #include "lls/lls_api.h" #include "lls/lls_env.h" #include "lls/lls_i.h" /** External declaration */ extern T_LLS_ENV_CTRL_BLK* lls_env_ctrl_blk; /** * @name Functions implementation * */ /*@{*/ /** * function: lls_switch_on */ T_RV_RET lls_switch_on(T_LLS_EQUIPMENT equipment_sort) { #if (ANLG_FAM == 2) T_RV_RET ret = RV_OK; UINT8 equipment_index; /* Check if initialization has been correctly done */ if ( (lls_env_ctrl_blk == 0) || (lls_env_ctrl_blk->swe_is_initialized == FALSE) ) { LLS_SEND_TRACE("LLS: Initialization is not yet done or failed", RV_TRACE_LEVEL_ERROR); return RV_INTERNAL_ERR; } LLS_SEND_TRACE_PARAM("LLS: Switch ON request for equipment", equipment_sort, RV_TRACE_LEVEL_DEBUG_HIGH); /* Retrieve index of the equipment in the table */ ret = lls_search_index(equipment_sort, &equipment_index); if (ret != RV_OK) { LLS_SEND_TRACE("LLS: Equipment is unknow", RV_TRACE_LEVEL_ERROR); return ret; } ret = lls_manage_equipment(equipment_index, SWITCH_ON); return ret; #else return RV_NOT_SUPPORTED; #endif } /** * function: lls_switch_off * */ T_RV_RET lls_switch_off(T_LLS_EQUIPMENT equipment_sort) { #if (ANLG_FAM == 2) T_RV_RET ret = RV_OK; UINT8 equipment_index; /* Check if initialization has been correctly done */ if ( (lls_env_ctrl_blk == 0) || (lls_env_ctrl_blk->swe_is_initialized == FALSE) ) { LLS_SEND_TRACE("LLS: Initialization is not yet done or failed", RV_TRACE_LEVEL_ERROR); return RV_INTERNAL_ERR; } LLS_SEND_TRACE_PARAM("LLS: Switch OFF request for equipment", equipment_sort, RV_TRACE_LEVEL_DEBUG_HIGH); /* Retrieve index of the equipment in the table */ ret = lls_search_index(equipment_sort, &equipment_index); if (ret != RV_OK) { LLS_SEND_TRACE("LLS: Equipment is unknow", RV_TRACE_LEVEL_ERROR); return ret; } ret = lls_manage_equipment(equipment_index, SWITCH_OFF); return ret; #else return RV_NOT_SUPPORTED; #endif } /*@}*/