FreeCalypso > hg > fc-tourmaline
view src/g23m-fad/l2r/l2r_ups.c @ 78:c632896652ba
mfw/ti1_key.c: properly initialize notified_keys array
The code in this ti1_key.c layer needs to call kpd_subscribe() and
kpd_define_key_notification() functions in order to register with the
KPD driver. The original code passed KPD_NB_PHYSICAL_KEYS in
nb_notified_keys - this constant is defined to 24 in kpd_cfg.h on all
platforms of interest to us - but it only filled the first 23 slots
in the notified_keys array, resulting in stack garbage being passed
to KPD API functions. The fix consists of initializing the last
missed array slot to KPD_KEY_RECORD, the key ID for the right side
button on the D-Sample handset.
On our current hw targets this "Record" button exists as the EXTRA
button on our Luna keypad board and as the camera button on the
Pirelli DP-L10. There is no support whatsoever for this button
in current BMI+MFW, we have no plans of doing anything with Pirelli's
camera button even if we do get our UI fw running on that phone,
and the Mother's dream of building our own FreeCalypso handset with
the same button arrangement as D-Sample (including the right side
button) is currently very nebulous - but let us nonetheless handle
the full set of buttons on the KPD to MFW interface, and let upper
layers weed out unsupported buttons.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 25 Oct 2020 23:41:01 +0000 |
parents | fa8dc04885d8 |
children |
line wrap: on
line source
/* +----------------------------------------------------------------------------- | Project : CSD (8411) | Modul : L2r_ups.c +----------------------------------------------------------------------------- | 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 : This Modul defines the functions for processing | of incomming signals for the component | L2R of the base station +----------------------------------------------------------------------------- */ #ifndef L2R_UPS_C #define L2R_UPS_C #endif #define ENTITY_L2R /*==== INCLUDES ===================================================*/ #include <string.h> #include "typedefs.h" #include "pconst.cdg" #include "vsi.h" #include "macdef.h" #include "custom.h" #include "gsm.h" #include "cus_l2r.h" #include "cnf_l2r.h" #include "mon_l2r.h" #include "prim.h" #include "pei.h" #include "tok.h" #include "dti.h" /* functionality of the dti library */ #include "cl_ribu.h" #include "l2r.h" /*==== CONST =======================================================*/ /*==== TYPES =======================================================*/ /*==== VAR EXPORT ==================================================*/ /*==== VAR LOCAL ===================================================*/ /*==== FUNCTIONS ===================================================*/ /* +------------------------------------------------------------------------------------- | Function : sig_mgt_up_conn_req +------------------------------------------------------------------------------------- | Description : Process signal SIG_MGT_UP_CONN_REQ received from process management. | | Parameters : framesPerPrim - Number of frames per primitive | frameSize - Size of the frame | flowCtrlUsed - Indicates wheather Flow Control is used or not. | riBuSize - Size of the ring buffer | inst_id - Instance Number | | | Return : - +------------------------------------------------------------------------------------- */ GLOBAL void sig_mgt_up_conn_req ( UBYTE framesPerPrim, USHORT frameSize, BOOL flowCtrlUsed, T_PRIM_DESC_RIBU_SIZE riBuSize, UBYTE inst_id ) { T_UP *dup = &l2r_data->up; TRACE_FUNCTION ("sig_mgt_up_conn_req()"); switch (GET_STATE (UP)) { case UP_DISCONNECTED: dup->FramesPerPrim = framesPerPrim; dup->FrameSize = frameSize; dup->DataSize = frameSize - HT_LEN; dup->FlowCtrlUsed = flowCtrlUsed; dup->RiBu.idx.depth = riBuSize; dup->FlowCtrlUsed = flowCtrlUsed; dup->InstID = inst_id; /* ###jkaa: and what about this?? l2r_data->mgt.InstID */ up_rq_init(); dup->DiscardRemapData = FALSE; if (dup->RiBu.idx.depth < UP_RIBU_PREALLOC + 1) { dup->RiBu.idx.depth = UP_RIBU_PREALLOC + 1; } if (dup->RiBu.idx.depth > MAX_UPRIM_RIBU_SIZE) { dup->RiBu.idx.depth = MAX_UPRIM_RIBU_SIZE; } dup->FlowThreshHi = 3 * dup->RiBu.idx.depth / 4; dup->FlowThreshLo = dup->FlowThreshHi - 2; if (dup->FlowThreshLo < 1) { dup->FlowThreshLo = 1; } dup->DnFlow = FL_INACTIVE; dup->UpFlow = FL_INACTIVE; dup->ULFlow = FL_INACTIVE; dup->LLFlow = FL_INACTIVE; up_merge_flow(); SET_STATE (UP_LL, ISW_IDLE); SET_STATE (UP_UL, IW_IDLE); up_init_ribu(); up_send_status( /* status must be sent after connecting */ dup->LastSentSa, dup->LastSentSb, dup->MrgFlow, SO_END_EMPTY ); up_send_prim_cond(); SET_STATE (UP, UP_CONNECTED); break; } } /* +------------------------------------------------------------------------------ | Function : sig_mgt_up_disc_req +------------------------------------------------------------------------------ | Description : Process signal SIG_MGT_UP_DISC_REQ received from | process management. | | Parameters : - | | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_mgt_up_disc_req(void) { TRACE_FUNCTION ("sig_mgt_up_disc_req()"); switch (GET_STATE (UP)) { case UP_CONNECTED: case UP_REMAP: up_deinit_ribu(); SET_STATE (UP, UP_DISCONNECTED); break; } } /* +------------------------------------------------------------------------------ | Function : sig_mgt_up_break_req +------------------------------------------------------------------------------ | Description : Process signal SIG_MGT_UP_BREAK_REQ received from process management. | | Parameters : sa - status bit ( general ready signal) | sb - staus bit (data are valid or) | flow - flow control staus (active or inactive) | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_mgt_up_break_req ( T_BIT sa, T_BIT sb, T_FLOW flow ) { TRACE_FUNCTION ("sig_mgt_up_break_req()"); switch (GET_STATE (UP)) { case UP_CONNECTED: case UP_REMAP: up_deinit_ribu(); up_init_ribu(); up_store_status(sa, sb, flow); up_send_status(sa, sb, l2r_data->up.MrgFlow, SO_BREAK_REQ); /*jk:030501*/ up_send_prim_cond(); break; } } /* +------------------------------------------------------------------------------ | Function : sig_mgt_up_clear_req +------------------------------------------------------------------------------ | Description : Process signal SIG_MGT_UP_CLEAR_REQ received from | process management. | | Parameters : - | | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_mgt_up_clear_req(void) { T_UP *dup = &l2r_data->up; TRACE_FUNCTION ("sig_mgt_up_clear_req()"); switch (GET_STATE (UP)) { case UP_CONNECTED: case UP_REMAP: up_deinit_ribu(); up_init_ribu(); /* status must be sent after reset */ up_send_status(dup->LastRcvdSa, dup->LastRcvdSb, dup->MrgFlow, SO_END_EMPTY); up_send_prim_cond(); break; } } /* +------------------------------------------------------------------------------ | Function : sig_mgt_up_dti_conn_setup +------------------------------------------------------------------------------ | Description : Process signal SIG_MGT_UP_DTI_CONN_SETUP | received from process management. | | Parameters : link_id channel id of the link | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_mgt_up_dti_conn_setup (ULONG link_id) { TRACE_FUNCTION ("sig_mgt_up_dti_conn_setup()"); l2r_data->up.link_id = link_id; SET_STATE (UP_UL, IW_IDLE); /* jk: to IDLE in order to be able to respond with DTI_READY_IND */ /* when the next condition is fullfilled */ } /* +------------------------------------------------------------------------------ | Function : sig_mgt_up_dti_conn_open +------------------------------------------------------------------------------ | Description : Process signal SIG_MGT_UP_DTI_CONN_OPEN | received from process management. | | Parameters : - | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_mgt_up_dti_conn_open() { T_UP *dup = &l2r_data->up; TRACE_FUNCTION ("sig_mgt_up_dti_conn_open()"); dup->DtiConnected = TRUE; /* jk: DTI_READY_IND only when the primitive is sent to UL */ if (dup->Prim EQ NULL) { up_send_ready(); } else if (dup->Prim->desc_list2.first EQ 0) { PFREE (dup->Prim); up_send_ready(); } } /* +------------------------------------------------------------------------------ | Function : sig_dn_up_flow +------------------------------------------------------------------------------ | Description :Process signal SIG_DN_UP_FLOW received from process management. | | Parameters : flow - flow control active or inactive | | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_dn_up_flow(T_FLOW flow) { T_UP *dup = &l2r_data->up; T_FLOW oldFlow; TRACE_FUNCTION ("sig_dn_up_flow()"); switch (GET_STATE (UP)) { case UP_CONNECTED: oldFlow = dup->DnFlow; dup->DnFlow = flow; if (flow EQ oldFlow) return; up_merge_flow(); if ((dup->LastSentFlow EQ dup->MrgFlow) OR (GET_STATE (UP_LL) NEQ ISW_WAIT)) return; TIMERSTOP (TIMER_TUP_SND); switch (dup->LLFlow) { case FL_INACTIVE: up_send_prim_timeout(); break; case FL_ACTIVE: up_send_empty_frame(dup->LastSentSa, dup->LastSentSb, dup->MrgFlow); break; } if (!dup->RiBu.idx.filled) SET_STATE (UP_LL, ISW_IDLE) else SET_STATE (UP_LL, ISW_SEND) break; case UP_REMAP: oldFlow = dup->DnFlow; dup->DnFlow = flow; if (flow NEQ oldFlow) { up_merge_flow(); } break; } } /* +------------------------------------------------------------------------------ | Function : sig_dn_up_ll_flow +------------------------------------------------------------------------------ | Description : Process signal SIG_DN_UP_LL_FLOW received from process management. | | Parameters : flow - flow control status (active - inactive) | | | Return : - +------------------------------------------------------------------------------ */ GLOBAL void sig_dn_up_ll_flow(T_FLOW flow) { T_UP *dup = &l2r_data->up; TRACE_FUNCTION ("sig_dn_up_ll_flow()"); switch (GET_STATE (UP)) { case UP_CONNECTED: dup->LLFlow = flow; if (dup->LLFlow EQ FL_INACTIVE AND GET_STATE (UP_LL) EQ ISW_WAIT AND dup->RiBu.idx.filled) { TIMERSTOP (TIMER_TUP_SND); up_send_current_prim(); if (!dup->RiBu.idx.filled) SET_STATE (UP_LL, ISW_IDLE) else SET_STATE (UP_LL, ISW_SEND) } break; case UP_REMAP: dup->LLFlow = flow; break; } }