FreeCalypso > hg > fc-magnetite
view src/cs/drivers/drv_app/kpd/kpd_messages_i.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 | 945cf7f506b2 |
children |
line wrap: on
line source
/** * @file kpd_messages_i.h * * Data structures that KPD SWE can receive. * * These messages are send by the bridge function. There are not available * out of the SWE. * * @author Laurent Sollier (l-sollier@ti.com) * @version 0.1 */ /* * History: * * Date Author Modification * ---------------------------------------- * 10/10/2001 L Sollier Create * * * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ #ifndef _KPD_MESSAGES_I_H_ #define _KPD_MESSAGES_I_H_ #include "kpd/kpd_api.h" #include "kpd/kpd_i.h" #include "kpd/kpd_messages_i.h" #include "rv/rv_general.h" /* Strusture used to send a subscription request */ typedef struct { T_SUBSCRIBER_ID subscriber_id; T_KPD_MODE mode; T_KPD_VIRTUAL_KEY_TABLE notified_keys; T_RV_RETURN return_path; } T_SUBSCRIPTION_INFO; /** * @name KPD_SUBSCRIBE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to process a subscription. */ /*@{*/ /** Message ID. */ #define KPD_SUBSCRIBE_MSG (KPD_MESSAGES_OFFSET | 0x003) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /** Informations for subscription. */ T_SUBSCRIPTION_INFO subscription_info; } T_KPD_SUBSCRIBE_MSG; /*@}*/ /** * @name KPD_UNSUBSCRIBE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to process an unsubscription. */ /*@{*/ /** Message ID. */ #define KPD_UNSUBSCRIBE_MSG (KPD_MESSAGES_OFFSET | 0x004) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /** Subscriber Id. */ T_SUBSCRIBER_ID subscriber_id; } T_KPD_UNSUBSCRIBE_MSG; /*@}*/ /** * @name KPD_NOTIF_KEYS_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to store a notification key level . */ /*@{*/ /** Message ID. */ #define KPD_NOTIF_KEYS_MSG (KPD_MESSAGES_OFFSET | 0x005) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Keys informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE notif_key_table; T_KPD_NOTIF_LEVEL notif_level; UINT16 long_press_time; UINT16 repeat_time; } T_KPD_NOTIF_KEYS_MSG; /*@}*/ /** * @name KPD_CHANGE_MODE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to change the mode for a subscriber. */ /*@{*/ /** Message ID. */ #define KPD_CHANGE_MODE_MSG (KPD_MESSAGES_OFFSET | 0x006) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Change mode informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE notified_keys; T_KPD_MODE new_mode; } T_KPD_CHANGE_MODE_MSG; /*@}*/ /** * @name KPD_OWN_KEYPAD_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to define the subscriber as the owner of the keypad. */ /*@{*/ /** Message ID. */ #define KPD_OWN_KEYPAD_MSG (KPD_MESSAGES_OFFSET | 0x007) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Own keypad informations */ T_SUBSCRIBER_ID subscriber_id; BOOL is_keypad_owner; T_KPD_VIRTUAL_KEY_TABLE keys_owner; } T_KPD_OWN_KEYPAD_MSG; /*@}*/ /** * @name KPD_SET_CONFIG_MODE_MSG * * Internal message. * * Message issued by KPD to KPD task. * This message is used to define the configurable mode with a set of keys. */ /*@{*/ /** Message ID. */ #define KPD_SET_CONFIG_MODE_MSG (KPD_MESSAGES_OFFSET | 0x008) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* New config mode informations */ T_SUBSCRIBER_ID subscriber_id; T_KPD_VIRTUAL_KEY_TABLE reference_keys; T_KPD_VIRTUAL_KEY_TABLE new_keys; } T_KPD_SET_CONFIG_MODE_MSG; /*@}*/ /** * @name T_KPD_KEY_PRESSED_MSG * * Internal message. * * Message issued by HISR to KPD task. * This message is used by the Keypad HISR to inform the keypad task * that a key is pressed. */ /*@{*/ /** Message ID. */ #define KPD_KEY_PRESSED_MSG (KPD_MESSAGES_OFFSET | 0x009) /** Message structure. */ typedef struct { /** Message header. */ T_RV_HDR hdr; /* Physical key pressed Id, or KPD_PKEY_NULL if key is released. Note that this variable is used only for PC Riviera Tool, but is not in flag compilation for forward compatibility (Calypso+, IT when key is pressed and released) */ T_KPD_PHYSICAL_KEY_ID value; /* Define if key must be processd or not. This field is used in order to limit memory use, and allow keypad task to send messages to subscribers */ BOOL key_to_process; } T_KPD_KEY_PRESSED_MSG; /*@}*/ #endif /* _KPD_MESSAGES_I_H_ */