Select one of the symbols to view example projects that use it.
 
Outline
#include <assert.h>
#include <string.h>
#include "bta/bta_sys.h"
#include "bta/bta_api.h"
#include "bta_dm_int.h"
#include "stack/btm_api.h"
#include "osi/allocator.h"
bta_dm_conn_srvcs
#include "bta_hh_int.h"
#define BTA_DM_PM_SSR_HH
bta_dm_get_av_count()
bta_dm_find_peer_device(UINT8 *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/bta/dm/bta_dm_pm.c
 
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/****************************************************************************** * * Copyright (C) 2003-2012 Broadcom Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************//* ... */ /****************************************************************************** * * This file contains the action functions for device manager state * machine. * ******************************************************************************//* ... */ #include <assert.h> #include <string.h> #include "bta/bta_sys.h" #include "bta/bta_api.h" #include "bta_dm_int.h" #include "stack/btm_api.h" #include "osi/allocator.h"7 includes #if BTA_DYNAMIC_MEMORY == FALSE tBTA_DM_CONNECTED_SRVCS bta_dm_conn_srvcs; #else tBTA_DM_CONNECTED_SRVCS *bta_dm_conn_srvcs_ptr; #endif #if (BTA_DM_PM_INCLUDED == TRUE) static void bta_dm_pm_cback(tBTA_SYS_CONN_STATUS status, UINT8 id, UINT8 app_id, BD_ADDR peer_addr); static void bta_dm_pm_set_mode(BD_ADDR peer_addr, tBTA_DM_PM_ACTION pm_mode, tBTA_DM_PM_REQ pm_req); static void bta_dm_pm_timer_cback(void *p_tle); static void bta_dm_pm_btm_cback(BD_ADDR bd_addr, tBTM_PM_STATUS status, UINT16 value, UINT8 hci_status); static BOOLEAN bta_dm_pm_park(BD_ADDR peer_addr); static BOOLEAN bta_dm_pm_sniff(tBTA_DM_PEER_DEVICE *p_peer_dev, UINT8 index); static BOOLEAN bta_dm_pm_is_sco_active (void); static void bta_dm_pm_hid_check(BOOLEAN bScoActive); static void bta_dm_pm_set_sniff_policy(tBTA_DM_PEER_DEVICE *p_dev, BOOLEAN bDisable); static void bta_dm_pm_stop_timer_by_index(tBTA_PM_TIMER *p_timer, UINT8 timer_idx); #if (BTM_SSR_INCLUDED == TRUE) #if (defined BTA_HH_INCLUDED && BTA_HH_INCLUDED == TRUE) #include "bta_hh_int.h" /* BTA_DM_PM_SSR1 will be dedicated for HH SSR setting entry, no other profile can use it */ #define BTA_DM_PM_SSR_HH BTA_DM_PM_SSR1/* ... */ #endif /* (defined BTA_HH_INCLUDED && BTA_HH_INCLUDED == TRUE) */ static void bta_dm_pm_ssr(BD_ADDR peer_addr);/* ... */ #endif /* (BTM_SSR_INCLUDED == TRUE) */ /******************************************************************************* ** ** Function bta_dm_init_pm ** ** Description Initializes the BT low power manager ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_dm_init_pm(void) { memset(&bta_dm_conn_srvcs, 0x00, sizeof(bta_dm_conn_srvcs)); /* if there are no power manager entries, so not register */ if (p_bta_dm_pm_cfg[0].app_id != 0) { bta_sys_pm_register((tBTA_SYS_CONN_CBACK *)bta_dm_pm_cback); BTM_PmRegister((BTM_PM_REG_SET | BTM_PM_REG_NOTIF), &bta_dm_cb.pm_id, bta_dm_pm_btm_cback); }{...} /* Need to initialize all PM timer service IDs */ for (int i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { for (int j = 0; j < BTA_DM_PM_MODE_TIMER_MAX; j++) { bta_dm_cb.pm_timer[i].srvc_id[j] = BTA_ID_MAX; }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_disable_pm ** ** Description Disable PM ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_dm_disable_pm(void) { BTM_PmRegister( BTM_PM_DEREG, &bta_dm_cb.pm_id, NULL); /* * Deregister the PM callback from the system handling to prevent * re-enabling the PM timers after this call if the callback is invoked. *//* ... */ bta_sys_pm_register((tBTA_SYS_CONN_CBACK *)NULL); /* Need to stop all active timers. */ for (int i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { for (int j = 0; j < BTA_DM_PM_MODE_TIMER_MAX; j++) { bta_dm_pm_stop_timer_by_index(&bta_dm_cb.pm_timer[i], j); bta_dm_cb.pm_timer[i].pm_action[j] = BTA_DM_PM_NO_ACTION; }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_stop_timer ** ** Description stop a PM timer ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_stop_timer(BD_ADDR peer_addr) { APPL_TRACE_DEBUG("%s: ", __func__); for (int i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { if (bta_dm_cb.pm_timer[i].in_use && !bdcmp(bta_dm_cb.pm_timer[i].peer_bdaddr, peer_addr)) { for (int j = 0; j < BTA_DM_PM_MODE_TIMER_MAX; j++) { bta_dm_pm_stop_timer_by_index(&bta_dm_cb.pm_timer[i], j); /* * TODO: For now, stopping the timer does not reset * pm_action[j]. * The reason is because some of the internal logic that * (re)assigns the pm_action[] values is taking into account * the older value; e.g., see the pm_action[] assignment in * function bta_dm_pm_start_timer(). * Such subtlety in the execution logic is error prone, and * should be eliminiated in the future. *//* ... */ }{...} break; }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_pm_action_to_timer_idx ** ** Description convert power mode into timer index for each connected device ** ** ** Returns index of the power mode delay timer ** *******************************************************************************//* ... */ static UINT8 bta_pm_action_to_timer_idx(UINT8 pm_action) { if (pm_action == BTA_DM_PM_SUSPEND) { return BTA_DM_PM_SUSPEND_TIMER_IDX; }{...} else if (pm_action == BTA_DM_PM_PARK) { return BTA_DM_PM_PARK_TIMER_IDX; }{...} else if ((pm_action & BTA_DM_PM_SNIFF) == BTA_DM_PM_SNIFF) { return BTA_DM_PM_SNIFF_TIMER_IDX; }{...} /* Active, no preference, no action and retry */ return BTA_DM_PM_MODE_TIMER_MAX; }{...} /******************************************************************************* ** ** Function bta_dm_pm_stop_timer_by_mode ** ** Description stop a PM timer ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_stop_timer_by_mode(BD_ADDR peer_addr, UINT8 power_mode) { const UINT8 timer_idx = bta_pm_action_to_timer_idx(power_mode); if (timer_idx == BTA_DM_PM_MODE_TIMER_MAX) { return; }{...} for (int i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { if (bta_dm_cb.pm_timer[i].in_use && !bdcmp(bta_dm_cb.pm_timer[i].peer_bdaddr, peer_addr)) { if (bta_dm_cb.pm_timer[i].srvc_id[timer_idx] != BTA_ID_MAX) { bta_dm_pm_stop_timer_by_index(&bta_dm_cb.pm_timer[i], timer_idx); /* * TODO: Intentionally setting pm_action[timer_idx]. * This assignment should be eliminated in the future - see the * pm_action[] related comment inside function * bta_dm_pm_stop_timer(). *//* ... */ bta_dm_cb.pm_timer[i].pm_action[timer_idx] = power_mode; }{...} break; }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_stop_timer_by_srvc_id ** ** Description stop all timer started by the service ID. ** ** ** Returns index of the power mode delay timer ** *******************************************************************************//* ... */ static void bta_dm_pm_stop_timer_by_srvc_id(BD_ADDR peer_addr, UINT8 srvc_id) { for (int i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { if (bta_dm_cb.pm_timer[i].in_use && !bdcmp(bta_dm_cb.pm_timer[i].peer_bdaddr, peer_addr)) { for (int j = 0; j < BTA_DM_PM_MODE_TIMER_MAX; j++) { if (bta_dm_cb.pm_timer[i].srvc_id[j] == srvc_id) { bta_dm_pm_stop_timer_by_index(&bta_dm_cb.pm_timer[i], j); bta_dm_cb.pm_timer[i].pm_action[j] = BTA_DM_PM_NO_ACTION; break; }{...} }{...} }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_start_timer ** ** Description start a PM timer ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_start_timer(tBTA_PM_TIMER *p_timer, UINT8 timer_idx, INT32 timeout, UINT8 srvc_id, UINT8 pm_action) { p_timer->in_use = TRUE; p_timer->timer[timer_idx].p_cback = bta_dm_pm_timer_cback; if (p_timer->srvc_id[timer_idx] == BTA_ID_MAX) { p_timer->active++; }{...} if (p_timer->pm_action[timer_idx] < pm_action) { p_timer->pm_action[timer_idx] = pm_action; }{...} p_timer->srvc_id[timer_idx] = srvc_id; bta_sys_start_timer(&p_timer->timer[timer_idx], 0, timeout); }{...} /******************************************************************************* ** ** Function bta_dm_pm_stop_timer_by_index ** ** Description stop a PM timer ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_stop_timer_by_index(tBTA_PM_TIMER *p_timer, UINT8 timer_idx) { if ((p_timer == NULL) || (timer_idx >= BTA_DM_PM_MODE_TIMER_MAX)) { return; }{...} if (p_timer->srvc_id[timer_idx] == BTA_ID_MAX) { return; /* The timer was not scheduled */ }{...} assert(p_timer->in_use && (p_timer->active > 0)); bta_sys_stop_timer(&p_timer->timer[timer_idx]); p_timer->srvc_id[timer_idx] = BTA_ID_MAX; /* NOTE: pm_action[timer_idx] intentionally not reset */ p_timer->active--; if (p_timer->active == 0) { p_timer->in_use = FALSE; }{...} }{...} UINT32 bta_dm_pm_get_remaining_ticks (TIMER_LIST_ENT *p_target_tle) { return bta_sys_get_remaining_ticks(p_target_tle); }{...} /******************************************************************************* ** ** Function bta_dm_pm_cback ** ** Description Conn change callback from sys for low power management ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_cback(tBTA_SYS_CONN_STATUS status, UINT8 id, UINT8 app_id, BD_ADDR peer_addr) { UINT8 i, j; tBTA_DM_PEER_DEVICE *p_dev; #if (BTM_SSR_INCLUDED == TRUE) UINT8 *p = NULL; int index = BTA_DM_PM_SSR0;/* ... */ #endif APPL_TRACE_DEBUG("bta_dm_pm_cback: st(%d), id(%d), app(%d)", status, id, app_id); p_dev = bta_dm_find_peer_device(peer_addr); /* find if there is an power mode entry for the service */ for (i = 1; i <= p_bta_dm_pm_cfg[0].app_id; i++) { if ((p_bta_dm_pm_cfg[i].id == id) && ((p_bta_dm_pm_cfg[i].app_id == BTA_ALL_APP_ID ) || (p_bta_dm_pm_cfg[i].app_id == app_id ))) { break; }{...} }{...} /* if no entries are there for the app_id and subsystem in p_bta_dm_pm_spec*/ if (i > p_bta_dm_pm_cfg[0].app_id) { return; }{...} bta_dm_pm_stop_timer_by_srvc_id(peer_addr, id); /*p_dev = bta_dm_find_peer_device(peer_addr);*/ #if (BTM_SSR_INCLUDED == TRUE) /* set SSR parameters on SYS CONN OPEN */ if ((BTA_SYS_CONN_OPEN == status) && p_dev && (p_dev->info & BTA_DM_DI_USE_SSR)) { index = p_bta_dm_pm_spec[p_bta_dm_pm_cfg[i].spec_idx].ssr; }{...} /* ... */#endif /* if no action for the event */ if (p_bta_dm_pm_spec[p_bta_dm_pm_cfg[i].spec_idx].actn_tbl[status][0].power_mode == BTA_DM_PM_NO_ACTION) { #if (BTM_SSR_INCLUDED == TRUE) if (BTA_DM_PM_SSR0 == index) /* and do not need to set SSR, return. */ #endif return; }{...} for (j = 0; j < bta_dm_conn_srvcs.count ; j++) { /* check if an entry already present */ if ((bta_dm_conn_srvcs.conn_srvc[j].id == id) && (bta_dm_conn_srvcs.conn_srvc[j].app_id == app_id ) && !bdcmp(bta_dm_conn_srvcs.conn_srvc[j].peer_bdaddr, peer_addr)) { bta_dm_conn_srvcs.conn_srvc[j].new_request = TRUE; break; }{...} }{...} /* if subsystem has no more preference on the power mode remove the cb *//* ... */ if (p_bta_dm_pm_spec[p_bta_dm_pm_cfg[i].spec_idx].actn_tbl[status][0].power_mode == BTA_DM_PM_NO_PREF) { if (j != bta_dm_conn_srvcs.count) { bta_dm_conn_srvcs.count--; for (; j < bta_dm_conn_srvcs.count ; j++) { memcpy(&bta_dm_conn_srvcs.conn_srvc[j], &bta_dm_conn_srvcs.conn_srvc[j + 1], sizeof(bta_dm_conn_srvcs.conn_srvc[j])); }{...} }{...} else { APPL_TRACE_WARNING("bta_dm_act no entry for connected service cbs"); return; }{...} }{...} else if (j == bta_dm_conn_srvcs.count ) { /* check if we have more connected service that cbs */ if (bta_dm_conn_srvcs.count == BTA_DM_NUM_CONN_SRVS) { APPL_TRACE_WARNING("bta_dm_act no more connected service cbs"); return; }{...} /* fill in a new cb */ bta_dm_conn_srvcs.conn_srvc[j].id = id; bta_dm_conn_srvcs.conn_srvc[j].app_id = app_id; bta_dm_conn_srvcs.conn_srvc[j].new_request = TRUE; bdcpy(bta_dm_conn_srvcs.conn_srvc[j].peer_bdaddr, peer_addr); APPL_TRACE_WARNING("new conn_srvc id:%d, app_id:%d", id, app_id); bta_dm_conn_srvcs.count++; bta_dm_conn_srvcs.conn_srvc[j].state = status; }{...} else { /* no service is added or removed. only updating status. */ bta_dm_conn_srvcs.conn_srvc[j].state = status; }{...} /* stop timer */ bta_dm_pm_stop_timer(peer_addr); if (p_dev) { p_dev->pm_mode_attempted = 0; p_dev->pm_mode_failed = 0; }{...} #if (BTM_SSR_INCLUDED == TRUE) if (p_bta_dm_ssr_spec[index].max_lat #if (defined BTA_HH_INCLUDED && BTA_HH_INCLUDED == TRUE) || index == BTA_DM_PM_SSR_HH #endif ) { bta_dm_pm_ssr(peer_addr); }{...} else { if ( ((NULL != (p = BTM_ReadLocalFeatures ())) && HCI_SNIFF_SUB_RATE_SUPPORTED(p)) && ((NULL != (p = BTM_ReadRemoteFeatures (peer_addr))) && HCI_SNIFF_SUB_RATE_SUPPORTED(p)) && (index == BTA_DM_PM_SSR0)) { if (status == BTA_SYS_SCO_OPEN) { APPL_TRACE_DEBUG("%s: SCO inactive, reset SSR to zero", __func__); BTM_SetSsrParams (peer_addr, 0, 0, 0 ); }{...} else if (status == BTA_SYS_SCO_CLOSE) { APPL_TRACE_DEBUG("%s: SCO active, back to old SSR", __func__); bta_dm_pm_ssr(peer_addr); }{...} }{...} }{...} /* ... */#endif bta_dm_pm_set_mode(peer_addr, BTA_DM_PM_NO_ACTION, BTA_DM_PM_NEW_REQ); /* perform the HID link workaround if needed ** 1. If SCO up/down event is received OR ** 2. If HID connection open is received and SCO is already active. ** This will handle the case where HID connects when SCO already active *//* ... */ if ( BTM_IsDeviceUp() && ( ((status == BTA_SYS_SCO_OPEN) || (status == BTA_SYS_SCO_CLOSE)) || ((status == BTA_SYS_CONN_OPEN) && (id == BTA_ID_HH) && bta_dm_pm_is_sco_active()) ) ) { BOOLEAN bScoActive; if (status == BTA_SYS_CONN_OPEN) { bScoActive = TRUE; }{...} else { bScoActive = (status == BTA_SYS_SCO_OPEN); }{...} bta_dm_pm_hid_check(bScoActive); }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_set_mode ** ** Description Set the power mode for the device ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_set_mode(BD_ADDR peer_addr, tBTA_DM_PM_ACTION pm_request, tBTA_DM_PM_REQ pm_req ) { tBTA_DM_PM_ACTION pm_action = BTA_DM_PM_NO_ACTION; UINT16 timeout = 0; UINT8 i, j; tBTA_DM_PM_ACTION failed_pm = 0; tBTA_DM_PEER_DEVICE *p_peer_device = NULL; tBTA_DM_PM_ACTION allowed_modes = 0; tBTA_DM_PM_ACTION pref_modes = 0; tBTA_DM_PM_CFG *p_pm_cfg; tBTA_DM_PM_SPEC *p_pm_spec; tBTA_DM_PM_ACTN *p_act0, *p_act1; tBTA_DM_SRVCS *p_srvcs = NULL; BOOLEAN timer_started = FALSE; UINT8 timer_idx, available_timer = BTA_DM_PM_MODE_TIMER_MAX; UINT32 remaining_ticks = 0; if (!bta_dm_cb.device_list.count) { return; }{...} /* see if any attempt to put device in low power mode failed */ p_peer_device = bta_dm_find_peer_device(peer_addr); /* if no peer device found return */ if (p_peer_device == NULL) { return; }{...} failed_pm = p_peer_device->pm_mode_failed; for (i = 0; i < bta_dm_conn_srvcs.count ; i++) { p_srvcs = &bta_dm_conn_srvcs.conn_srvc[i]; if (!bdcmp(p_srvcs->peer_bdaddr, peer_addr)) { /* p_bta_dm_pm_cfg[0].app_id is the number of entries */ for (j = 1; j <= p_bta_dm_pm_cfg[0].app_id; j++) { if ((p_bta_dm_pm_cfg[j].id == p_srvcs->id) && ((p_bta_dm_pm_cfg[j].app_id == BTA_ALL_APP_ID ) || (p_bta_dm_pm_cfg[j].app_id == p_srvcs->app_id))) { break; }{...} }{...} p_pm_cfg = &p_bta_dm_pm_cfg[j]; p_pm_spec = &p_bta_dm_pm_spec[p_pm_cfg->spec_idx]; p_act0 = &p_pm_spec->actn_tbl[p_srvcs->state][0]; p_act1 = &p_pm_spec->actn_tbl[p_srvcs->state][1]; APPL_TRACE_DEBUG("bta_dm_pm_set_mode: srvcsid: %d, state: %d, j: %d", p_srvcs->id, p_srvcs->state, j); allowed_modes |= p_pm_spec->allow_mask; /* PM actions are in the order of strictness */ /* first check if the first preference is ok */ if (!(failed_pm & p_act0->power_mode)) { pref_modes |= p_act0->power_mode; if (p_act0->power_mode >= pm_action) { pm_action = p_act0->power_mode; if (pm_req != BTA_DM_PM_NEW_REQ || p_srvcs->new_request) { p_srvcs->new_request = FALSE; timeout = p_act0->timeout; }{...} }{...} }{...} /* if first preference has already failed, try second preference */ else if (!(failed_pm & p_act1->power_mode)) { pref_modes |= p_act1->power_mode; if (p_act1->power_mode > pm_action) { pm_action = p_act1->power_mode; timeout = p_act1->timeout; }{...} }{...} }{...} }{...} if (pm_action & (BTA_DM_PM_PARK | BTA_DM_PM_SNIFF)) { /* some service don't like the mode */ if (!(allowed_modes & pm_action)) { /* select the other mode if its allowed and preferred, otherwise 0 which is BTA_DM_PM_NO_ACTION */ pm_action = (allowed_modes & (BTA_DM_PM_PARK | BTA_DM_PM_SNIFF) & pref_modes); /* no timeout needed if no action is required */ if (pm_action == BTA_DM_PM_NO_ACTION) { timeout = 0; }{...} }{...} }{...} /* if need to start a timer */ if ((pm_req != BTA_DM_PM_EXECUTE) && timeout) { for (i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { if (bta_dm_cb.pm_timer[i].in_use && bdcmp(bta_dm_cb.pm_timer[i].peer_bdaddr, peer_addr) == 0) { if ((timer_idx = bta_pm_action_to_timer_idx(pm_action)) != BTA_DM_PM_MODE_TIMER_MAX) { remaining_ticks = bta_dm_pm_get_remaining_ticks(&bta_dm_cb.pm_timer[i].timer[timer_idx]); if (remaining_ticks < timeout) { APPL_TRACE_DEBUG("%s remain 0\n", __func__); /* Cancel and restart the timer */ /* * TODO: The value of pm_action[timer_idx] is * conditionally updated between the two function * calls below when the timer is restarted. * This logic is error-prone and should be eliminated * in the future. *//* ... */ bta_dm_pm_stop_timer_by_index(&bta_dm_cb.pm_timer[i], timer_idx); bta_dm_pm_start_timer(&bta_dm_cb.pm_timer[i], timer_idx, timeout, p_srvcs->id, pm_action); }{...} timer_started = TRUE; }{...} break; }{...} else if (!bta_dm_cb.pm_timer[i].in_use) { APPL_TRACE_DEBUG("%s dm_pm_timer:%d, %d", __func__, i, timeout); if (available_timer == BTA_DM_PM_MODE_TIMER_MAX) { available_timer = i; }{...} }{...} }{...} /* new power mode for a new active connection */ if (!timer_started) { if ( available_timer != BTA_DM_PM_MODE_TIMER_MAX) { bdcpy(bta_dm_cb.pm_timer[available_timer].peer_bdaddr, peer_addr); if ((timer_idx = bta_pm_action_to_timer_idx(pm_action)) != BTA_DM_PM_MODE_TIMER_MAX) { bta_dm_pm_start_timer(&bta_dm_cb.pm_timer[available_timer], timer_idx, timeout, p_srvcs->id, pm_action); timer_started = TRUE; }{...} }{...} /* no more timers */ else { APPL_TRACE_WARNING("bta_dm_act dm_pm_timer no more"); }{...} }{...} return; }{...} /* if pending power mode timer expires, and currecnt link is in a lower power mode than current profile requirement, igonre it *//* ... */ if (pm_req == BTA_DM_PM_EXECUTE && pm_request < pm_action) { APPL_TRACE_ERROR("Ignore the power mode request: %d", pm_request) return; }{...} if (pm_action == BTA_DM_PM_PARK) { p_peer_device->pm_mode_attempted = BTA_DM_PM_PARK; bta_dm_pm_park(peer_addr); }{...} else if (pm_action & BTA_DM_PM_SNIFF) { /* dont initiate SNIFF, if link_policy has it disabled */ if (p_peer_device->link_policy & HCI_ENABLE_SNIFF_MODE) { p_peer_device->pm_mode_attempted = BTA_DM_PM_SNIFF; bta_dm_pm_sniff(p_peer_device, (UINT8)(pm_action & 0x0F) ); }{...} else { APPL_TRACE_DEBUG("bta_dm_pm_set_mode: Link policy disallows SNIFF, ignore request"); }{...} }{...} else if (pm_action == BTA_DM_PM_ACTIVE) { bta_dm_pm_active(peer_addr); }{...} }{...} /******************************************************************************* ** ** Function bta_ag_pm_park ** ** Description Switch to park mode. ** ** ** Returns TRUE if park attempted, FALSE otherwise. ** *******************************************************************************//* ... */ static BOOLEAN bta_dm_pm_park(BD_ADDR peer_addr) { tBTM_PM_MODE mode = BTM_PM_STS_ACTIVE; /* if not in park mode, switch to park */ BTM_ReadPowerMode(peer_addr, &mode); if (mode != BTM_PM_MD_PARK) { BTM_SetPowerMode (bta_dm_cb.pm_id, peer_addr, &p_bta_dm_pm_md[BTA_DM_PM_PARK_IDX]); }{...} return TRUE; }{...} /******************************************************************************* ** ** Function bta_ag_pm_sniff ** ** Description Switch to sniff mode. ** ** ** Returns TRUE if sniff attempted, FALSE otherwise. ** *******************************************************************************//* ... */ static BOOLEAN bta_dm_pm_sniff(tBTA_DM_PEER_DEVICE *p_peer_dev, UINT8 index) { tBTM_PM_MODE mode = BTM_PM_STS_ACTIVE; tBTM_PM_PWR_MD pwr_md; tBTM_STATUS status; #if (BTM_SSR_INCLUDED == TRUE) UINT8 *p_rem_feat = NULL; #endif BTM_ReadPowerMode(p_peer_dev->peer_bdaddr, &mode); #if (BTM_SSR_INCLUDED == TRUE) p_rem_feat = BTM_ReadRemoteFeatures (p_peer_dev->peer_bdaddr); APPL_TRACE_DEBUG("bta_dm_pm_sniff cur:%d, idx:%d, info:x%x", mode, index, p_peer_dev->info); if (mode != BTM_PM_MD_SNIFF || (HCI_SNIFF_SUB_RATE_SUPPORTED(BTM_ReadLocalFeatures ()) && p_rem_feat && HCI_SNIFF_SUB_RATE_SUPPORTED(p_rem_feat) && !(p_peer_dev->info & BTA_DM_DI_USE_SSR)))/* ... */ #else APPL_TRACE_DEBUG("bta_dm_pm_sniff cur:%d, idx:%d", mode, index); if (mode != BTM_PM_MD_SNIFF)/* ... */ #endif { #if (BTM_SSR_INCLUDED == TRUE) /* Dont initiate Sniff if controller has already accepted * remote sniff params. This avoid sniff loop issue with * some aggressive headsets who use sniff latencies more than * DUT supported range of Sniff intervals.*//* ... */ if ((mode == BTM_PM_MD_SNIFF) && (p_peer_dev->info & BTA_DM_DI_ACP_SNIFF)) { APPL_TRACE_DEBUG("%s: already in remote initiate sniff", __func__); return TRUE; }{...} /* ... */#endif /* if the current mode is not sniff, issue the sniff command. * If sniff, but SSR is not used in this link, still issue the command *//* ... */ memcpy(&pwr_md, &p_bta_dm_pm_md[index], sizeof (tBTM_PM_PWR_MD)); if (p_peer_dev->info & BTA_DM_DI_INT_SNIFF) { pwr_md.mode |= BTM_PM_MD_FORCE; }{...} status = BTM_SetPowerMode (bta_dm_cb.pm_id, p_peer_dev->peer_bdaddr, &pwr_md); if (status == BTM_CMD_STORED || status == BTM_CMD_STARTED) { p_peer_dev->info &= ~(BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF); p_peer_dev->info |= BTA_DM_DI_SET_SNIFF; }{...} else if (status == BTM_SUCCESS) { APPL_TRACE_DEBUG("bta_dm_pm_sniff BTM_SetPowerMode() returns BTM_SUCCESS"); p_peer_dev->info &= ~(BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF | BTA_DM_DI_SET_SNIFF); }{...} else { /* error */ APPL_TRACE_ERROR("bta_dm_pm_sniff BTM_SetPowerMode() returns ERROR status=%d", status); p_peer_dev->info &= ~(BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF | BTA_DM_DI_SET_SNIFF); }{...} }{...} return TRUE; }{...} /******************************************************************************* ** ** Function bta_dm_pm_ssr ** ** Description checks and sends SSR parameters ** ** Returns void ** *******************************************************************************//* ... */ #if (BTM_SSR_INCLUDED == TRUE) static void bta_dm_pm_ssr(BD_ADDR peer_addr) { tBTA_DM_SSR_SPEC *p_spec, *p_spec_cur; UINT8 i, j; int ssr = BTA_DM_PM_SSR0; /* go through the connected services */ for (i = 0; i < bta_dm_conn_srvcs.count ; i++) { if (!bdcmp(bta_dm_conn_srvcs.conn_srvc[i].peer_bdaddr, peer_addr)) { /* p_bta_dm_pm_cfg[0].app_id is the number of entries */ for (j = 1; j <= p_bta_dm_pm_cfg[0].app_id; j++) { /* find the associated p_bta_dm_pm_cfg */ if ((p_bta_dm_pm_cfg[j].id == bta_dm_conn_srvcs.conn_srvc[i].id) && ((p_bta_dm_pm_cfg[j].app_id == BTA_ALL_APP_ID ) || (p_bta_dm_pm_cfg[j].app_id == bta_dm_conn_srvcs.conn_srvc[i].app_id))) { APPL_TRACE_WARNING("bta_dm_pm_ssr conn_srvc id:%d, app_id:%d", bta_dm_conn_srvcs.conn_srvc[i].id, bta_dm_conn_srvcs.conn_srvc[i].app_id); break; }{...} }{...} /* find the ssr index with the smallest max latency. */ p_spec_cur = &p_bta_dm_ssr_spec[p_bta_dm_pm_spec[p_bta_dm_pm_cfg[j].spec_idx].ssr]; p_spec = &p_bta_dm_ssr_spec[ssr]; #if (defined BTA_HH_INCLUDED && BTA_HH_INCLUDED == TRUE) /* HH has the per connection SSR preference, already read the SSR params from BTA HH */ if (p_bta_dm_pm_spec[p_bta_dm_pm_cfg[j].spec_idx].ssr == BTA_DM_PM_SSR_HH) { if (bta_hh_read_ssr_param(peer_addr, &p_spec_cur->max_lat, &p_spec_cur->min_rmt_to) == BTA_HH_ERR) { continue; }{...} }{...} /* ... */#endif if (p_spec_cur->max_lat < p_spec->max_lat || (ssr == BTA_DM_PM_SSR0 && p_bta_dm_pm_spec[p_bta_dm_pm_cfg[j].spec_idx].ssr != BTA_DM_PM_SSR0)) { ssr = p_bta_dm_pm_spec[p_bta_dm_pm_cfg[j].spec_idx].ssr; }{...} }{...} }{...} p_spec = &p_bta_dm_ssr_spec[ssr]; APPL_TRACE_WARNING("bta_dm_pm_ssr:%d, lat:%d", ssr, p_spec->max_lat); if (p_spec->max_lat) { /* set the SSR parameters. */ BTM_SetSsrParams (peer_addr, p_spec->max_lat, p_spec->min_rmt_to, p_spec->min_loc_to); }{...} }{...} /* ... */#endif /******************************************************************************* ** ** Function bta_dm_pm_active ** ** Description Brings connection to active mode ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_dm_pm_active(BD_ADDR peer_addr) { tBTM_PM_PWR_MD pm; memset( (void *)&pm, 0, sizeof(pm)); /* switch to active mode */ pm.mode = BTM_PM_MD_ACTIVE; BTM_SetPowerMode (bta_dm_cb.pm_id, peer_addr, &pm); }{...} /******************************************************************************* ** ** Function bta_dm_pm_btm_cback ** ** Description BTM power manager callback. ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_btm_cback(BD_ADDR bd_addr, tBTM_PM_STATUS status, UINT16 value, UINT8 hci_status) { tBTA_DM_PM_BTM_STATUS *p_buf; if ((p_buf = (tBTA_DM_PM_BTM_STATUS *) osi_malloc(sizeof(tBTA_DM_PM_BTM_STATUS))) != NULL) { p_buf->hdr.event = BTA_DM_PM_BTM_STATUS_EVT; p_buf->status = status; p_buf->value = value; p_buf->hci_status = hci_status; bdcpy(p_buf->bd_addr, bd_addr); bta_sys_sendmsg(p_buf); }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_timer_cback ** ** Description Power management timer callback. ** ** ** Returns void ** *******************************************************************************//* ... */ static void bta_dm_pm_timer_cback(void *p_tle) { UINT8 i, j; for (i = 0; i < BTA_DM_NUM_PM_TIMER; i++) { APPL_TRACE_DEBUG("dm_pm_timer[%d] in use? %d", i, bta_dm_cb.pm_timer[i].in_use); if (bta_dm_cb.pm_timer[i].in_use) { for (j = 0; j < BTA_DM_PM_MODE_TIMER_MAX; j++) { if (&bta_dm_cb.pm_timer[i].timer[j] == (TIMER_LIST_ENT *) p_tle) { bta_dm_cb.pm_timer[i].active --; bta_dm_cb.pm_timer[i].srvc_id[j] = BTA_ID_MAX; APPL_TRACE_DEBUG("dm_pm_timer[%d] expires, timer_idx=%d", i, j); break; }{...} }{...} if (bta_dm_cb.pm_timer[i].active == 0) { bta_dm_cb.pm_timer[i].in_use = FALSE; }{...} if (j < BTA_DM_PM_MODE_TIMER_MAX) { break; }{...} }{...} }{...} /* no more timers */ if (i == BTA_DM_NUM_PM_TIMER) { return; }{...} tBTA_DM_PM_TIMER *p_buf = (tBTA_DM_PM_TIMER *) osi_malloc(sizeof(tBTA_DM_PM_TIMER)); if (p_buf != NULL) { p_buf->hdr.event = BTA_DM_PM_TIMER_EVT; p_buf->pm_request = bta_dm_cb.pm_timer[i].pm_action[j]; bdcpy(p_buf->bd_addr, bta_dm_cb.pm_timer[i].peer_bdaddr); bta_sys_sendmsg(p_buf); }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_btm_status ** ** Description Process pm status event from btm ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_dm_pm_btm_status(tBTA_DM_MSG *p_data) { APPL_TRACE_DEBUG("%s status: %d", __func__, p_data->pm_status.status); tBTA_DM_PEER_DEVICE *p_dev = bta_dm_find_peer_device(p_data->pm_status.bd_addr); if (NULL == p_dev) { return; }{...} tBTA_DM_DEV_INFO info = p_dev->info; /* check new mode */ switch (p_data->pm_status.status) { case BTM_PM_STS_ACTIVE: /* if our sniff or park attempt failed we should not try it again*//* ... */ if (p_data->pm_status.hci_status != 0) { APPL_TRACE_ERROR("%s hci_status=%d", __func__, p_data->pm_status.hci_status); p_dev->info &= ~(BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF | BTA_DM_DI_SET_SNIFF); if (p_dev->pm_mode_attempted & (BTA_DM_PM_PARK | BTA_DM_PM_SNIFF)) { p_dev->pm_mode_failed |= ((BTA_DM_PM_PARK | BTA_DM_PM_SNIFF) & p_dev->pm_mode_attempted); bta_dm_pm_stop_timer_by_mode(p_data->pm_status.bd_addr, p_dev->pm_mode_attempted); bta_dm_pm_set_mode(p_data->pm_status.bd_addr, BTA_DM_PM_NO_ACTION, BTA_DM_PM_RESTART); }{...} }{...} else { #if (BTM_SSR_INCLUDED == TRUE) if (p_dev->prev_low) { /* need to send the SSR parameters to controller again */ bta_dm_pm_ssr(p_dev->peer_bdaddr); }{...} p_dev->prev_low = BTM_PM_STS_ACTIVE;/* ... */ #endif /* link to active mode, need to restart the timer for next low power mode if needed */ bta_dm_pm_stop_timer(p_data->pm_status.bd_addr); bta_dm_pm_set_mode(p_data->pm_status.bd_addr, BTA_DM_PM_NO_ACTION, BTA_DM_PM_RESTART); }{...} break; #if (BTM_SSR_INCLUDED == TRUE)... case BTM_PM_STS_PARK: case BTM_PM_STS_HOLD: /* save the previous low power mode - for SSR. * SSR parameters are sent to controller on "conn open". * the numbers stay good until park/hold/detach *//* ... */ if (p_dev->info & BTA_DM_DI_USE_SSR) { p_dev->prev_low = p_data->pm_status.status; }{...} break; ... case BTM_PM_STS_SSR: if (p_data->pm_status.value) { p_dev->info |= BTA_DM_DI_USE_SSR; }{...} else { p_dev->info &= ~BTA_DM_DI_USE_SSR; }{...} break;/* ... */ #endif case BTM_PM_STS_SNIFF: if (p_data->pm_status.hci_status == 0) { /* Stop PM timer now if already active for * particular device since link is already * put in sniff mode by remote device, and * PM timer sole purpose is to put the link * in sniff mode from host side. *//* ... */ bta_dm_pm_stop_timer(p_data->pm_status.bd_addr); }{...} else { p_dev->info &= ~(BTA_DM_DI_SET_SNIFF | BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF); if (info & BTA_DM_DI_SET_SNIFF) { p_dev->info |= BTA_DM_DI_INT_SNIFF; }{...} else { p_dev->info |= BTA_DM_DI_ACP_SNIFF; }{...} }{...} break; ... case BTM_PM_STS_ERROR: p_dev->info &= ~BTA_DM_DI_SET_SNIFF; break; ... default: break;... }{...} if ( bta_dm_cb.p_sec_cback ) { if (p_data->pm_status.status <= BTM_PM_STS_PARK /*&& p_data->pm_status.status >= BTM_PM_STS_ACTIVE*/ // comparison is always true due to limited range of data type ) { tBTA_DM_SEC conn; conn.mode_chg.mode = p_data->pm_status.status; conn.mode_chg.interval = p_data->pm_status.value; bdcpy(conn.mode_chg.bd_addr, p_data->pm_status.bd_addr); bta_dm_cb.p_sec_cback(BTA_DM_PM_MODE_CHG_EVT, (tBTA_DM_SEC *)&conn); }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_timer ** ** Description Process pm timer event from btm ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_dm_pm_timer(tBTA_DM_MSG *p_data) { APPL_TRACE_EVENT("%s", __func__); bta_dm_pm_set_mode(p_data->pm_timer.bd_addr, p_data->pm_timer.pm_request, BTA_DM_PM_EXECUTE); }{...} /******************************************************************************* ** ** Function bta_dm_is_sco_active ** ** Description Loop through connected services for HFP+State=SCO ** ** Returns BOOLEAN. TRUE if SCO active, else FALSE ** *******************************************************************************//* ... */ static BOOLEAN bta_dm_pm_is_sco_active (void) { int j; BOOLEAN bScoActive = FALSE; for (j = 0; j < bta_dm_conn_srvcs.count ; j++) { /* check if an entry already present */ if ( (bta_dm_conn_srvcs.conn_srvc[j].id == BTA_ID_AG ) && (bta_dm_conn_srvcs.conn_srvc[j].state == BTA_SYS_SCO_OPEN) ) { bScoActive = TRUE; break; }{...} }{...} APPL_TRACE_DEBUG("bta_dm_is_sco_active: SCO active: %d", bScoActive); return bScoActive; }{...} /******************************************************************************* ** ** Function bta_dm_pm_hid_check ** ** Description Disables/Enables sniff in link policy based on SCO Up/Down ** ** Returns None ** *******************************************************************************//* ... */ static void bta_dm_pm_hid_check(BOOLEAN bScoActive) { int j; /* if HID is active, disable the link policy */ for (j = 0; j < bta_dm_conn_srvcs.count ; j++) { /* check if an entry already present */ if (bta_dm_conn_srvcs.conn_srvc[j].id == BTA_ID_HH ) { APPL_TRACE_DEBUG ("SCO status change(Active: %d), modify HID link policy. state: %d", bScoActive, bta_dm_conn_srvcs.conn_srvc[j].state); bta_dm_pm_set_sniff_policy( bta_dm_find_peer_device(bta_dm_conn_srvcs.conn_srvc[j].peer_bdaddr), bScoActive); /* if we had disabled link policy, seems like the hid device stop retrying SNIFF after a few tries. force sniff if needed */ if (!bScoActive) { bta_dm_pm_set_mode(bta_dm_conn_srvcs.conn_srvc[j].peer_bdaddr, BTA_DM_PM_NO_ACTION, BTA_DM_PM_RESTART); }{...} }{...} }{...} }{...} /******************************************************************************* ** ** Function bta_dm_pm_set_sniff_policy ** ** Description Disables/Enables sniff in link policy for the give device ** ** Returns None ** *******************************************************************************//* ... */ static void bta_dm_pm_set_sniff_policy(tBTA_DM_PEER_DEVICE *p_dev, BOOLEAN bDisable) { UINT16 policy_setting; if (!p_dev) { return; }{...} if (bDisable) { policy_setting = bta_dm_cb.cur_policy & (HCI_ENABLE_MASTER_SLAVE_SWITCH | HCI_ENABLE_HOLD_MODE | HCI_ENABLE_PARK_MODE); }{...} else { /* allow sniff after sco is closed */ policy_setting = bta_dm_cb.cur_policy; }{...} /* if disabling SNIFF, make sure link is Active */ if (bDisable) { bta_dm_pm_active(p_dev->peer_bdaddr); }{...} /* update device record and set link policy */ p_dev->link_policy = policy_setting; BTM_SetLinkPolicy(p_dev->peer_bdaddr, &policy_setting); }{...} /* ... */#endif /* #if (BTA_DM_PM_INCLUDED == TRUE) */ /******************************************************************************* ** ** Function bta_dm_get_av_count ** ** Description Get the number of connected AV ** ** ** Returns number of av connections ** *******************************************************************************//* ... */ UINT8 bta_dm_get_av_count(void) { UINT8 count = 0; for (int i = 0; i < bta_dm_conn_srvcs.count; i++) { if (bta_dm_conn_srvcs.conn_srvc[i].id == BTA_ID_AV) { ++count; }{...} }{...} return count; }{ ... } /******************************************************************************* ** ** Function bta_dm_find_peer_device ** ** Description Given an address, find the associated control block. ** ** Returns tBTA_DM_PEER_DEVICE ** *******************************************************************************//* ... */ tBTA_DM_PEER_DEVICE *bta_dm_find_peer_device(BD_ADDR peer_addr) { tBTA_DM_PEER_DEVICE *p_dev = NULL; for (int i = 0; i < bta_dm_cb.device_list.count; i++) { if (!bdcmp( bta_dm_cb.device_list.peer_device[i].peer_bdaddr, peer_addr)) { p_dev = &bta_dm_cb.device_list.peer_device[i]; break; }{...} }{...} return p_dev; }{ ... } #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE) && SDP_INCLUDED == TRUE) /******************************************************************************* ** ** Function bta_dm_pm_obtain_controller_state ** ** Description This function obtains the consolidated controller power state ** ** Parameters: ** *******************************************************************************//* ... */ tBTA_DM_CONTRL_STATE bta_dm_pm_obtain_controller_state(void) { /* Did not use counts as it is not sure, how accurate the count values are in ** bta_dm_cb.device_list.count > 0 || bta_dm_cb.device_list.le_count > 0 *//* ... */ tBTA_DM_CONTRL_STATE cur_state = BTA_DM_CONTRL_UNKNOWN; cur_state = BTM_PM_ReadControllerState(); APPL_TRACE_DEBUG("bta_dm_pm_obtain_controller_state: %d", cur_state); return cur_state; }{...} /* ... */ #endif
Details