FreeCalypso > hg > fc-magnetite
view src/g23m-fad/tcpip/rnet.c @ 685:3fb7384e820d
tpudrv12.h: FCDEV3B goes back to being itself
A while back we had the idea of a FreeCalypso modem family whereby our
current fcdev3b target would some day morph into fcmodem, with multiple
FC modem family products, potentially either triband or quadband, being
firmware-compatible with each other and with our original FCDEV3B. But
in light of the discovery of Tango modules that earlier idea is now being
withdrawn: instead the already existing Tango hw is being adopted into
our FreeCalypso family.
Tango cannot be firmware-compatible with triband OM/FCDEV3B targets
because the original quadband RFFE on Tango modules is wired in TI's
original Leonardo arrangement. Because this Leonardo/Tango way is now
becoming the official FreeCalypso way of driving quadband RFFEs thanks
to the adoption of Tango into our FC family, our earlier idea of
extending FIC's triband RFFE control signals with TSPACT5 no longer makes
much sense - we will probably never produce any new hardware with that
once-proposed arrangement. Therefore, that triband-or-quadband FCFAM
provision is being removed from the code base, and FCDEV3B goes back to
being treated the same way as CONFIG_TARGET_GTAMODEM for RFFE control
purposes.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 24 Sep 2020 21:03:08 +0000 |
parents | 90eb61ecd093 |
children |
line wrap: on
line source
/*--------------------------------------------------------------------------- * Adaption of Riviera Net (RNET) TCP/IP to GPF and DTI2 *-------------------------------------------------------------------------*/ /* Here we define some dummy Riviera Frame functions * so that we can link an executable, * only to be sure that we've copied all we need. */ /*-------------------------------------------------------------------------*/ #include "rnet.h" /*-------------------------------------------------------------------------*/ #include "atp_cmd.h" /* from /ti/release/ti_5.4.0_p1/code/services/atp/atp_sw_ent.c */ T_ATP_RET atp_reg ( T_ATP_SW_ENTITY_NAME name, T_ATP_CALLBACK return_path, T_ATP_ENTITY_MODE mode , T_ATP_SW_ENTITY_ID * sw_id_p ) { return RV_OK; } T_ATP_RET atp_dereg (T_ATP_SW_ENTITY_ID sw_id) { return RV_OK; } /*-------------------------------------------------------------------------*/ /* from /ti/release/ti_5.4.0_p1/code/services/atp/atp_services.c */ T_ATP_RET atp_send_data ( T_ATP_SW_ENTITY_ID sender_sw_id, T_ATP_PORT_NB sender_port_nb, void * data_buffer_p, UINT32 buffer_size, UINT32 * nb_bytes_left_p ) { return RV_OK; } T_ATP_RET atp_get_data ( T_ATP_SW_ENTITY_ID receiver_sw_id, T_ATP_PORT_NB receiver_port_nb, UINT8 * data_buffer, UINT32 nb_to_read, UINT32 * nb_read_p, UINT32 * nb_left_p ) { return RV_OK; } T_ATP_RET atp_open_port_rsp ( T_ATP_SW_ENTITY_ID initiator_id, T_ATP_PORT_NB initiator_port_nb, T_ATP_SW_ENTITY_ID target_id, T_ATP_PORT_NB target_port_nb, T_ATP_PORT_INFO port_info, T_ATP_NO_COPY_INFO no_copy_info, T_ATP_CUSTOM_INFO * custom_info_p, T_ATP_OPEN_PORT_RESULT result ) { return RV_OK; } T_ATP_RET atp_free_buffer (void * buffer_p) { return RV_OK; }