FreeCalypso > hg > fc-magnetite
view src/gpf2/inc/remu.h @ 600:8f50b202e81f
board preprocessor conditionals: prep for more FC hw in the future
This change eliminates the CONFIG_TARGET_FCDEV3B preprocessor symbol and
all preprocessor conditionals throughout the code base that tested for it,
replacing them with CONFIG_TARGET_FCFAM or CONFIG_TARGET_FCMODEM. These
new symbols are specified as follows:
CONFIG_TARGET_FCFAM is intended to cover all hardware designs created by
Mother Mychaela under the FreeCalypso trademark. This family will include
modem products (repackagings of the FCDEV3B, possibly with RFFE or even
RF transceiver changes), and also my desired FreeCalypso handset product.
CONFIG_TARGET_FCMODEM is intended to cover all FreeCalypso modem products
(which will be firmware-compatible with the FCDEV3B if they use TI Rita
transceiver, or will require a different fw build if we switch to one of
Silabs Aero transceivers), but not the handset product. Right now this
CONFIG_TARGET_FCMODEM preprocessor symbol is used to conditionalize
everything dealing with MCSI.
At the present moment the future of FC hardware evolution is still unknown:
it is not known whether we will ever have any beyond-FCDEV3B hardware at all
(contingent on uncertain funding), and if we do produce further FC hardware
designs, it is not known whether they will retain the same FIC modem core
(triband), if we are going to have a quadband design that still retains the
classic Rita transceiver, or if we are going to switch to Silabs Aero II
or some other transceiver. If we produce a quadband modem that still uses
Rita, it will run exactly the same fw as the FCDEV3B thanks to the way we
define TSPACT signals for the RF_FAM=12 && CONFIG_TARGET_FCFAM combination,
and the current fcdev3b build target will be renamed to fcmodem. OTOH, if
that putative quadband modem will be Aero-based, then it will require a
different fw build target, the fcdev3b target will stay as it is, and the
two targets will both define CONFIG_TARGET_FCFAM and CONFIG_TARGET_FCMODEM,
but will have different RF_FAM numbers. But no matter which way we are
going to evolve, it is not right to have conditionals on CONFIG_TARGET_FCDEV3B
in places like ACI, and the present change clears the way for future
evolution.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 01 Apr 2019 01:05:24 +0000 |
parents | 864b8cc0cf63 |
children |
line wrap: on
line source
/* +------------------------------------------------------------------------------ | File: rivbridge_api.h +------------------------------------------------------------------------------ | Copyright 2003 Texas Instruments Berlin, AG | All rights reserved. | | This file is confidential and a trade secret of Texas | Instruments Berlin, AG | The receipt of or possession of this file does not convey | any rights to reproduce or disclose its contents or to | manufacture, use, or sell anything it may describe, in | whole, or in part, without the specific written consent of | Texas Instruments Berlin, AG. +----------------------------------------------------------------------------- | Purpose : Definitions for the rivbridge api. +----------------------------------------------------------------------------- */ #ifndef REMU_H #define REMU_H /*==== CONSTANTS ============================================================*/ #define RIV_MEMORY_POOL 1 #define rvf_add_to_timer_list gsp_add_to_timer_list #define rvf_change_callback_func gsp_change_callback_func #define rvf_count_buf gsp_count_buf #define rvf_create_legacy_task gsp_create_legacy_task #define rvf_create_mb gsp_create_mb #define rvf_create_task gsp_create_task #define rvf_delay gsp_delay #define rvf_delete_mb gsp_delete_mb #define rvf_delete_mutex gsp_delete_mutex #define rvf_dequeue gsp_dequeue #define rvf_dump_mem gsp_dump_mem #define rvf_dump_pool gsp_dump_pool #define rvf_dump_tasks gsp_dump_tasks #define rvf_enqueue gsp_enqueue #define rvf_enqueue_head gsp_enqueue_head #define rvf_evt_wait gsp_evt_wait #define rvf_exit_task gsp_exit_task #define rvf_free_buf gsp_free_buf #define rvf_free_msg gsp_free_msg #define rvf_free_timer_msg gsp_free_timer_msg #define rvf_get_buf gsp_get_buf #define rvf_get_buf_size gsp_get_buf_size #define rvf_get_context gsp_get_context #define rvf_get_expired_entry gsp_get_expired_entry #define rvf_get_mb_id gsp_get_mb_id #define rvf_get_mb_param gsp_get_mb_param #define rvf_get_mb_status gsp_get_mb_status #define rvf_get_mb_unused_mem gsp_get_mb_unused_mem #define rvf_get_msg_buf gsp_get_msg_buf #define rvf_get_protected_buf gsp_get_protected_buf #define rvf_get_taskid gsp_get_taskid #define rvf_get_taskname gsp_get_taskname #define rvf_get_tick_count gsp_get_tick_count #define rvf_get_time_stamp gsp_get_time_stamp #define rvf_init gsp_init #define rvf_init_timer_list gsp_init_timer_list #define rvf_init_timer_list_entry gsp_init_timer_list_entry #define rvf_initialize_mutex gsp_initialize_mutex #define rvf_lock_mutex gsp_lock_mutex #define rvf_mb_is_used gsp_mb_is_used #define rvf_read_addr_mbox gsp_read_addr_mbox #define rvf_read_mbox gsp_read_mbox #define rvf_remove_from_queue gsp_remove_from_queue #define rvf_remove_from_timer_list gsp_remove_from_timer_list #define rvf_resume_task gsp_resume_task #define rvf_scan_next gsp_scan_next #define rvf_send_event gsp_send_event #define rvf_send_msg gsp_send_msg #define rvf_send_trace1 gsp_send_trace1 #define rvf_set_callback_func gsp_set_callback_func #define rvf_set_mb_param gsp_set_mb_param #define rvf_start_timer gsp_start_timer #define rvf_stop_timer gsp_stop_timer #define rvf_suspend_task gsp_suspend_task #define rvf_unlock_mutex gsp_unlock_mutex #define rvf_update_timer_list gsp_update_timer_list #define rvf_wait gsp_wait #define rvf_wait_for_specific_msg gsp_wait_for_specific_msg /* not really a riviera frame function, but seems to be needed */ #define rvt_set_trace_level gsp_set_trace_level /*==== INCLUDES =============================================================*/ #include "rvf_original_api.h" /*==== TYPES ================================================================*/ typedef UINT8 * T_RVT_BUFFER; /*==== PROTOTYPES ===========================================================*/ extern UINT8 gsp_trace_level; extern UINT32 gsp_layer_mask; /*==== MACROS ===============================================================*/ #endif /* remu_H */