1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*****************************************************************************
**
** Name: ptim.c
**
** Description: Protocol timer services.
**
** Copyright (c) 2003-2006, Broadcom Corp., All Rights Reserved.
** Widcomm Bluetooth Core. Proprietary and confidential.
**
*****************************************************************************/
#include "bt_target.h"
#include "gki.h"
#include "ptim.h"
#include "bta_sys.h"
/*******************************************************************************
**
** Function ptim_init
**
** Description Initialize a protocol timer control block. Parameter
** period is the GKI timer period in milliseconds. Parameter
** timer_id is the GKI timer id.
**
** Returns void
**
*******************************************************************************/
void ptim_init(tPTIM_CB *p_cb, UINT16 period, UINT8 timer_id)
{
GKI_init_timer_list(&p_cb->timer_queue);
p_cb->period = period;
p_cb->timer_id = timer_id;
}
/*******************************************************************************
**
** Function ptim_timer_update
**
** Description Update the protocol timer list and handle expired timers.
** This function is called from the task running the protocol
** timers when the periodic GKI timer expires.
**
** Returns void
**
*******************************************************************************/
void ptim_timer_update(tPTIM_CB *p_cb)
{
TIMER_LIST_ENT *p_tle;
BT_HDR *p_msg;
UINT32 new_ticks_count;
INT32 period_in_ticks;
/* To handle the case when the function is called less frequently than the period
we must convert determine the number of ticks since the last update, then
convert back to milliseconds before updating timer list */
new_ticks_count = GKI_get_tick_count();
/* Check for wrapped condition */
if (new_ticks_count >= p_cb->last_gki_ticks)
{
period_in_ticks = (INT32)(new_ticks_count - p_cb->last_gki_ticks);
}
else
{
period_in_ticks = (INT32)(((UINT32)0xffffffff - p_cb->last_gki_ticks)
+ new_ticks_count + 1);
}
/* update timer list */
GKI_update_timer_list(&p_cb->timer_queue, GKI_TICKS_TO_MS(period_in_ticks));
p_cb->last_gki_ticks = new_ticks_count;
/* while there are expired timers */
while((p_cb->timer_queue.p_first) && (p_cb->timer_queue.p_first->ticks <= 0))
{
/* removed expired timer from list */
p_tle = p_cb->timer_queue.p_first;
GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
/* call timer callback */
if(p_tle->p_cback)
{
(*p_tle->p_cback)(p_tle);
}
else if(p_tle->event)
{
if ((p_msg = (BT_HDR *) GKI_getbuf(sizeof(BT_HDR))) != NULL)
{
p_msg->event = p_tle->event;
p_msg->layer_specific = 0;
bta_sys_sendmsg(p_msg);
}
}
}
/* if timer list is empty stop periodic GKI timer */
if (p_cb->timer_queue.p_first == NULL)
{
GKI_stop_timer(p_cb->timer_id);
}
}
/*******************************************************************************
**
** Function ptim_start_timer
**
** Description Start a protocol timer for the specified amount
** of time in seconds.
**
** Returns void
**
*******************************************************************************/
void ptim_start_timer(tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout)
{
/* if timer list is currently empty, start periodic GKI timer */
if (p_cb->timer_queue.p_first == NULL)
{
p_cb->last_gki_ticks = GKI_get_tick_count();
GKI_start_timer(p_cb->timer_id, GKI_MS_TO_TICKS(p_cb->period), TRUE);
}
GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
p_tle->event = type;
p_tle->ticks = timeout;
GKI_add_to_timer_list(&p_cb->timer_queue, p_tle);
}
/*******************************************************************************
**
** Function ptim_stop_timer
**
** Description Stop a protocol timer.
**
** Returns void
**
*******************************************************************************/
void ptim_stop_timer(tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle)
{
GKI_remove_from_timer_list (&p_cb->timer_queue, p_tle);
/* if timer list is empty stop periodic GKI timer */
if (p_cb->timer_queue.p_first == NULL)
{
GKI_stop_timer(p_cb->timer_id);
}
}
|