FreeCalypso > hg > fc-magnetite
view src/g23m-fad/tcpip/rnet/rnet_dti_info.h @ 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
/* +------------------------------------------------------------------------------ | File: rnet_dti_info.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 : DTI point-to-point network interface for RNET_RT, | Custom information +----------------------------------------------------------------------------- */ /* derived from... */ /** * @file rnet_atp_info.h * * ATP point-to-point network interface for RNET_RT * Custom information * * @author Regis Feneon * @version 0.1 */ /* * $Id: rnet_atp_info.h,v 1.1 2002/09/06 08:39:52 rf Exp $ * $Name: $ * * History: * * Date Author Modification * -------------------------------------------------- * 6/9/2002 Regis Feneon Create * */ #include "rnet_cfg.h" #ifdef RNET_CFG_REAL_TRANSPORT #ifndef __RNET_RT_DTI_INFO_H_ #define __RNET_RT_DTI_INFO_H_ #include "rnet_ip_addr.h" #include "dcfg_api.h" #define RNET_RT_DTI_MTU 1500 /* * DTI custom information */ typedef struct { T_RNET_IP_ADDR local_addr ; /* Local (MS) IP address. */ T_RNET_IP_ADDR dest_addr ; /* Destination (GGSN) IP address, this is also * the default router. */ UINT16 mtu ; /* Maximum transmission unit. */ T_RNET_IP_ADDR dns1 ; /* Primary DNS server address. */ T_RNET_IP_ADDR dns2 ; /* Secondary DNS server address. */ T_APPLI_USER IPU_id ; /* Identity of the user of the channel. */ } T_RNET_RT_DTI_CUSTOM_INFO ; #endif /* __RNET_RT_DTI_INFO_H_ */ #endif /* RNET_CFG_REAL_TRANSPORT */ /* EOF */