view src/cs/drivers/drv_app/ffs/board/ffspcm.c @ 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 945cf7f506b2
children
line wrap: on
line source

/*
 * Flash File System (ffs)
 *
 * WCP PCM Compatibility Support
 */

#include <string.h>
#include "main/sys_types.h"
#include "memif/mem.h"
#include "ffs/ffs.h" 
#include "ffs/board/ffspcm.h"
#include "nucleus.h"
#include "csmi/csmi.h" 
#include "csmi/csmi_gsmctrl.h" 
#include "ffs/pcm.h" 


// Factory FFS area description
#pragma DATA_SECTION(FlashImage, ".ffs_img")
const unsigned char FlashImage[0x4000];


/*
 *
 * ffs_InitRFCap
 * 
 * Purpose  : Set rfcap for tri-band config
 *
 * Arguments: In : none
 *                 
 *            Out: none
 *
 * Returns  : none
 *
 */

#define SIZE_EF_RFCAP	16

static const UBYTE rfcap_TriBand[SIZE_EF_RFCAP] =   {0x00, 0x0F, 0x41, 0x10, 0x00, 0x00, 0x00, 0x00, \
                                                     0x40, 0x00, 0x00, 0xA5, 0x05, 0x00, 0xC0, 0x00};

static const UBYTE rfcap_DualExt[SIZE_EF_RFCAP] =   {0x00, 0x0B, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, \
                                                     0x40, 0x00, 0x00, 0xA5, 0x05, 0x00, 0xC0, 0x00};
                                                     
effs_t ffs_InitRFCap ()
{
    ffs_mkdir_nb("/gsm" ,0);
    ffs_mkdir_nb("/gsm/com" ,0);

    ffs_fwrite_nb("/gsm/com/rfcap", (void*)rfcap_TriBand, SIZE_EF_RFCAP, 0);
}

/*
 *
 * ffs_SetBand
 * 
 * Purpose  : Set std config according to the selected Band
 *
 * Arguments: In : Band number
 *                 
 *            Out: none
 *
 * Returns  : none
 *
 */

effs_t ffs_SetBand (unsigned char* band)
{
    // Check validity of std band (1, 3 and 6 are supported)
    switch(*band)
    {
        case 1:
        case 3:
        case 6:
          // fall through
          break;

        default:
          return EFFS_BADNAME;
    }

    // Write STD file and set global variable
    ffs_fwrite_nb("/pcm/STD", band, 1, 0);
}

/*
 *
 * ffs_GetBand
 * 
 * Purpose  : Get STD config as recorded in FFS
 *
 * Arguments: In : none
 *                 
 *            Out: none
 *
 * Returns  : STD
 *
 */

unsigned char ffs_GetBand ()
{
    UBYTE   ubStd = 0;
    effs_t  result;

    // get FFS value
    result = ffs_fread("/pcm/STD", &ubStd, 1);

    // default if an error occured : 900-1800
    if (result < EFFS_OK)
    {
        ubStd = 6;
    }

    return ubStd;
}

/*
 * ffs_restore
 *
 * Restores flash file system from MPU Persistent Storage
 * Restore Factory FFS in cae of file corruption
 *
 * Procedure described in PE023 document
 *
 */

void ffs_restore(void)
{
    effs_t res;

    // FFS restore procedure started
    // send a message through CSMI
    if( GC_RestoreFFSReq(FFS_BASE_ADDRESS, IMAGE_SIZE) == CSMI_ERROR )
    {
      // In case of MPU File corruption, 
      // restore working FFS from factory FFS
      memcpy((char *) FFS_BASE_ADDRESS, FlashImage, IMAGE_SIZE);

      // backup FFS on MPU side 
      // if we are running with the OS
      if(GC_RunningWithOs())
        ffs_backup();
    }
}

/*
 * ffs_backup
 *
 * Backup flash file system
 *
 * Procedure described in PE023 document
 *
 */

void ffs_backup(void)
{
    // FFS backup procedure started
    // send a message through CSMI
    GC_BackupFFSReq(FFS_BASE_ADDRESS, IMAGE_SIZE);
}