view src/gpf2/inc/frm_glob.h @ 636:57e67ca2e1cb

pcmdata.c: default +CGMI to "FreeCalypso" and +CGMM to model The present change has no effect whatsoever on Falconia-made and Openmoko-made devices on which /pcm/CGMI and /pcm/CGMM files have been programmed in FFS with sensible ID strings by the respective factories, but what should AT+CGMI and AT+CGMM queries return when the device is a Huawei GTM900 or Tango modem that has been converted to FreeCalypso with a firmware change? Before the present change they would return compiled-in defaults of "<manufacturer>" and "<model>", respectively; with the present change the firmware will self-identify as "FreeCalypso GTM900-FC" or "FreeCalypso Tango" on the two respective targets. This firmware identification will become important if someone incorporates an FC-converted GTM900 or Tango modem into a ZeroPhone-style smartphone where some high-level software like ofono will be talking to the modem and will need to properly identify this modem as FreeCalypso, as opposed to some other AT command modem flavor with different quirks. In technical terms, the compiled-in default for the AT+CGMI query (which will always be overridden by the /pcm/CGMI file in FFS if one is present) is now "FreeCalypso" in all configs on all targets; the compiled-in default for the AT+CGMM query (likewise always overridden by /pcm/CGMM if present) is "GTM900-FC" if CONFIG_TARGET_GTM900 or "Tango" if CONFIG_TARGET_TANGO or the original default of "<model>" otherwise.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 19 Jan 2020 20:14:58 +0000
parents 864b8cc0cf63
children
line wrap: on
line source

/*
+------------------------------------------------------------------------------
|  File:       frm_glob.h
+------------------------------------------------------------------------------
|  Copyright 2002 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 :  Global frame tables
+-----------------------------------------------------------------------------
*/

#ifndef FRM_GLOB_H
#define FRM_GLOB_H

/*==== INCLUDES =============================================================*/

#include "frm_types.h"

/*==== CONSTANTS ============================================================*/


/*==== TYPES ================================================================*/

/*==== VARIABLES ================================================================*/

#ifndef CONFIG_MODULE
extern USHORT MaxEntities;
extern USHORT MaxCommunications;
extern USHORT MaxSimultaneousTimer;
extern USHORT MaxTimer;
extern USHORT MaxSemaphores;
extern USHORT NumberOfPPMPartitions;
extern ULONG  MaxPrimPartSize;
extern USHORT TextTracePartitionSize;
extern T_VOID_STRUCT *processed_prim[];
extern T_VOID_STRUCT *freed_prim[];
extern T_HANDLE e_running[];
extern T_FRM_TASK_TABLE_ENTRY pf_TaskTable[];
extern ULONG TraceMask[];		
extern char TracesAborted[];
extern char PrimAborted[];
extern char route_desclist[];
extern T_HANDLE TimerHandleField[];

#if !defined _TARGET_ && !defined _TOOLS_
extern char pcheck_active[];
#endif

 #else /* CONFIG_MODULE */

/* -------------- S H A R E D - BEGIN ---------------- */
#ifdef _TOOLS_
#pragma data_seg("FRAME_SHARED")
#endif

#ifndef DATA_INT_RAM

/* declare on pointer for each entity for ccd error handling */
struct ccd_task_table;
struct ccd_task_table* ccd_task_list[MAX_ENTITIES+1];

USHORT MaxEntities = MAX_ENTITIES;
USHORT MaxTimer    = MAX_TIMER;
#ifndef _TOOLS_
/* 
 * This way of setting the TST and RCV stacksize is chosen to keep it backwardscompatible,
 * i.e. not change the behavior if the stacksizes are not define in the configuration
 * file xxxconst.h.
 */
#ifdef TSTSND_STACK_SIZE
const USHORT TST_SndStacksize = TSTSND_STACK_SIZE;
#else
const USHORT TST_SndStacksize = 0;
#endif
#ifdef TSTRCV_STACK_SIZE
const USHORT TST_RcvStacksize = TSTRCV_STACK_SIZE;
#else
const USHORT TST_RcvStacksize = 0;
#endif

#endif /* _TOOLS_ */

T_FRM_TASK_TABLE_ENTRY pf_TaskTable  [ MAX_ENTITIES + 1 ]={0};
ULONG *Routing                       [ MAX_ENTITIES + 1 ]={0};
ULONG TraceMask                      [ MAX_ENTITIES + 1 ]={0};
char TracesAborted                   [ MAX_ENTITIES + 1 ]={0};
char PrimAborted                     [ MAX_ENTITIES + 1 ]={0};
#ifdef PRIM_AUTO_FREE
T_VOID_STRUCT *processed_prim        [ MAX_ENTITIES + 1 ]={0};
T_VOID_STRUCT *freed_prim            [ MAX_ENTITIES + 1 ]={0};
#endif 
T_HANDLE e_running                   [ MAX_ENTITIES + 1 ]={0};
char route_desclist                  [ MAX_ENTITIES + 1 ]={0};
T_DRV_TABLE_ENTRY DrvTable           [ MAX_TST_DRV + 1  ]={0};
T_HANDLE TimerHandleField            [ MAX_TIMER + 1    ]={0};

#if !defined _TARGET_ && !defined _TOOLS_
char pcheck_active                   [ MAX_ENTITIES + 1 ]={0};
#endif

#endif /* DATA_INT_RAM */

#ifdef _TOOLS_
#pragma data_seg()
#endif
/* -------------- S H A R E D - END ---------------- */

#endif /* CONFIG_MODULE */

#endif