-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHistory_LINUX.txt
27249 lines (21088 loc) · 731 KB
/
History_LINUX.txt
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
*-----------------------------------------------------------------------------
* 0.100.0443 2011/03/25 15:40
*-----------------------------------------------------------------------------
Team : SW5-PT1-Connectivity
Issuer: Fred Yu
Mark :
IssueKeys:[SF4H8.B-144]
Summary: Check in bcm4329_wifi.c WiFi Power Off Sequence
Do : [Change]
- Modify wifi_disable function in bcm4329_wifi.c
[Symptom]
- Some time can't power off wifi
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* .\android\hardware\libhardware_legacy\wifi\bcm4329_wifi.c
Reviewer:
Chia-Wei Chang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0442 2011/03/25 15:30
*-----------------------------------------------------------------------------
Team : SW5-PT1-Connectivity
Issuer: Fred Yu
Mark : SW5-PT1-Connectivity_FredYu_FixPowerSequence
IssueKeys:[SF4H8.B-144]
Summary: Fix WiFi Power Off Sequence
Do : [Change]
- Modify wifi_disable function in bcm4329_wifi.c
[Symptom]
- Some time can't power off wifi
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* .\android\hardware\libhardware_legacy\wifi\bcm4329_wifi.c
Reviewer:
Chia-Wei Chang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0441 2011/03/24 21:40
*-----------------------------------------------------------------------------
Team : SW5-PT1-Connectivity
Issuer: Fred Yu
Mark :
IssueKeys:[SF4H8.B-260]
Summary: Sync dhd.ko with platform
Do : [Change]
- Sync bcm4329_wifi_suspend and bcm4329_wifi_resume in dhd.ko
[Symptom]
- Enable WiFi error.
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* .\android\system\bcm4329\dhd.ko
Reviewer:
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0441 2011/03/24 21:30
*-----------------------------------------------------------------------------
Team : Div5-Kernel
Issuer: Jacky Chu
Mark : Div5-Kernel-JC-GPIOUPDATE
IssueKeys:[SF6.FC-27]
Summary: Update GPIO setting to fix wimax enable/disable
cause suspend current raise
Do : [Change]
- change SDIO interface(GPIO39~43 and GPIO 111, 116~119)
to ¡§NP¡¨ for all modes
[Symptom]
- Wimax enable/disable will cause suspend current raise 0.5mA.
[Cause]
- GPIO setting cause HW abnormal.
[Solution]
- Follow EE's comment change SDIO interface
(GPIO39~43 and GPIO 111, 116~119) to ¡§NP¡¨ for all modes
[Notes]
- None.
[Expose]
- None.
Files :
* \.android\kernel\arch\arm\mach-msm\board-msm7x30.c
Reviewer:
Dick Yang, Mike Wu
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0440 2011/03/24 19:30
*-----------------------------------------------------------------------------
Team : SW2-6-1
Issuer: Johnny Lin
Mark : Div2-SW6-JL-FixFB0.B-4201
IssueKeys:[FB0.B-4201]
Summary: Enable GPS Ephemeris Auto Download can not increase speed to fix position
Do : [Change]
- Fix the bug that XtraDownload can't be executed when just check GPS setting.
[Symptom]
- None.
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/frameworks/base/location/java/com/android/internal/location/GpsLocationProvider.java
Reviewer:
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0439 2011/03/24 15:50
*-----------------------------------------------------------------------------
Team : SW5-Multimedia
Issuer: Tracy Huang
Mark :
IssueKeys:[SF6.FC-25]
Summary: Modified camera HW method
Do : [Change]
- Change VGA 0357 setting.
[Symptom]
- Change VGA 0357 setting.
[Cause]
- Change VGA 0357 setting.
[Solution]
- Change VGA 0357 setting.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/drivers/media/video/msm/mt9p111_reg_sf6.c
* ./android/kernel/drivers/media/video/msm/hm0357_reg_sf6.c
Reviewer:
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0438 2011/03/24 15:30
*-----------------------------------------------------------------------------
Team : Div2-SW6-CONN
Issuer: Chiawei Chang
Mark :
IssueKeys:[SF4H8.B-7]
Summary: Bluetooth get MAC address from NV item 447.
Do : [Change]
- Bluetooth will get MAC address from NV item 447. Not use default value at
SF8 project.
[Symptom]
- None
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/device/qcom/msm7630_surf/msm7630_surf_SF8.mk
* ./android/system/bluetooth/brcm_patchram_plus/Android.mk
* ./android/system/bluetooth/brcm_patchram_plus/brcm_patchram_plus.c
*-----------------------------------------------------------------------------
* 0.100.0437 2011/03/24 15:20
*-----------------------------------------------------------------------------
Team : SW5-5-2-Multimedia
Issuer: David Liu
Mark : SW5-MM-DL-AudioTuning-00
IssueKeys:[SF6.B-979]
Summary: Audio Tuning
Do : [Change]
- Audio Tuning.
[Symptom]
- None.
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/arch/arm/mach-msm/qdsp5v2/snddev_data_marimba.c
Reviewer:
Robert Chuang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0436 2011/03/24 15:05
*-----------------------------------------------------------------------------
Team : Div2-SW6-2
Issuer: Money Chien
Mark :
IssueKeys:[SF5.B-2433]
Summary: Fixed build fail for "error: unused variable 'pid'".
Do : [Change]
- Fixed build fail for "error: unused variable 'pid'".
[Symptom]
- None.
[Cause]
- mt9p111.o build failed.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/drivers/media/video/msm/mt9p111.c
Reviewer:
Chris Lu
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0435 2011/03/24 11:55
*-----------------------------------------------------------------------------
Team : Div2-SW6-2
Issuer: Money Chien
Mark :
IssueKeys:[SF5.B-2433]
Summary: Tuning 5M sensor.
Do : [Change]
- Modified reg CAM_TX_ENABLE_MODE value (0xC8ED) from 0x03 to 0x00.
- Modified reg DAC_TXLO (0x316C) value from 0xB43F to 0xF43F.
- Modified reg 0xACB3 value from 0x44 to 0x5A.(in initial, AUTO WB, daylight and Cloudy table)
- Modified OUTDOOR table.(reg 0xAC9A to 0x6D, reg 0xAC9B to 0x76 and reg 0xAC9C to 0x6D)
[Symptom]
- None.
[Cause]
- Tuning not ready.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/drivers/media/video/msm/mt9p111_reg_sf5.c
Reviewer:
Sendow Chen
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0434 2011/03/23 20:22
*-----------------------------------------------------------------------------
Team : SW5-PT1-Connectivity
Issuer: Fred Yu
Mark : SW5-PT1-Connectivity_FredYu_FixPowerSequence
IssueKeys:[FB0.B-4285]
Summary: Change WiFi Power On/Off Sequence
Do : [Change]
- Change WiFi Power On/Off Sequence
[Symptom]
- Power On/Off WiFi will meet a lot of IRQ pending
[Cause]
- None.
[Solution]
- Modify SDIO IPQ handler
[Notes]
- None.
[Expose]
- None.
Files :
Reviewer:
Chih-Pei
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0433 2011/03/23 17:12
*-----------------------------------------------------------------------------
Team : SW2-6-1-CONN
Issuer: Eric Chen
Mark : Div2-CONN-EC-SwitchWAPI-01
IssueKeys:[FB0.B-4285]
Summary: Implement a mechanism to change normal or wapi feature dynamically
Do : [Change]
- 1. Implement a mechanism to change normal or wapi wifi feature dynamically
[Symptom]
- None
[Cause]
- None
[Solution]
- None
[Notes]
- 1. use property wifi.wapi to switch normal or wapi wifi
wifi.wapi=0 => normal wifi
wifi.wapi=1 => wapi wifi
- 2. Because system has wpa_supplicant and wpa_supplicant_wapi, this situation
makes some funciton multiple definition.
Binary wpa_supplicant_wapi is pre-built, and copied into system.
[Expose]
- None
Files :
+ ./android/external/wpa_supplicant_6_WAPI/wpa_supplicant_wapi
* ./android/external/wpa_supplicant_6_WAPI/Android.mk
* ./android/external/wpa_supplicant_6_WAPI/wpa_supplicant/Android.mk
* ./android/external/wpa_supplicant_6/Android.mk
* ./android/system/core/rootdir/etc/init.qcom.wifi.rc
+ ./android/vendor/qcom/proprietary/wlan/libra/firmware_bin/qcom_wapi_cfg.ini
* ./android/vendor/qcom/proprietary/wlan/libra/CORE/HDD/src/wlan_hdd_cfg.c
* ./android/vendor/qcom/proprietary/wlan/libra/CORE/HDD/src/Android.mk
* ./android/vendor/qcom/proprietary/wlan/libra/CORE/HDD/src/wlan_hdd_main.c
* ./android/hardware/libhardware_legacy/wifi/wifi.c
* ./android/device/qcom/msm7630_surf/system.prop
* ./android/device/qcom/msm7630_surf/msm7630_surf.mk
Reviewer:
Josh Chang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0432 2011/03/23 12:10
*-----------------------------------------------------------------------------
Team : SW2-6-1-CONN
Issuer: Eric Chen
Mark : None
IssueKeys:[FB3.B-1107]
Summary: update qcom_wlan_nv.bin to change regulatory domain
Do : [Change]
- 1. update qcom_wlan_nv.bin to change regulatory domain to let wifi
scan channel 1~13, not channel 14.
[Symptom]
- 1. wifi can scan channel 14.
[Cause]
- 1. CTA certification needs to scan channel 1~13, not channel 14
[Solution]
- 1. update qcom_wlan_nv.bin to change regulatory domain to let wifi
scan channel 1~13, not channel 14.
[Notes]
- None
[Expose]
- None
Files :
* ./android/vendor/qcom/proprietary/wlan/libra/firmware_bin/qcom_wlan_nv.bin
Reviewer:
Josh Chang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0432 2011/03/23 11:00
*-----------------------------------------------------------------------------
Team : Div2D5-BSP
Issuer: Lio Chen
Mark : Div2D5-LC-BSP-Two_OTA_Path_for_ULI-00
Div2D5-LC-BSP-Check_eMMC_Size_in_OTA-00
IssueKeys:[FB0.B-4218]
Summary: Improve OTA mechanism
Do : [Change]
- 1. Implement two paths (internal and external SD) OTA for SF5.
2. Add detect eMMC size and auto select partitioin image mechanism.
[Symptom]
- None.
[Cause]
- None.
[Solution]
- 1. For SF5, default OTA path is internal SD (eMMC, mmcblk0p12) and
SDDownload in recovery mode is external sd.
2. For all 8x55 project, OTA or SDDownload will detect eMMC size and
auto select 2G/4G partition image if mlf file's INITDLTYPE is 0x3.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/arch/arm/mach-msm/pm2.c
* ./android/bootable/recovery/recovery.c
* ./android/bootable/recovery/roots.c
* ./android/bootable/recovery/roots.h
* ./android/system/core/fih_img_update/nb0parser.cpp
Reviewer:
Steven Yang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0431 2011/03/22 16:30
*-----------------------------------------------------------------------------
Team : SW5-CONN
Issuer: Mike Wu
Mark :
IssueKeys:[SF6.B-894]
Summary: modify for power-saving of wimax
Do : [Change]
- 1. modify msm_sdcc/c and msm_sdcc.h for power-saving of wimax
- 2. modiy board-msm7x30.c for hardware change of PR3 rev.C2
[Symptom]
- SF6.B-894 [Power Manager] The current is too high when connected to WiMAX AP(YTL) in Suspend mode.
[Cause]
- cost too much power
[Solution]
- enable power-saving for wimax
[Notes]
- None.
[Expose]
- No.
Files :
* ./LINUX/android/development/FIH/FQC/src/com/fihtdc/fqc/activity/BatteryInfoActivity.java
* ./LINUX/android/development/FIH/FQC/src/com/fihtdc/fqc/activity/ShowTouchPanel.java
Reviewer: Jeremy Hsieh, Chih-Pei Chang
Review:
[History Details*]OK
[Code Review*]OK
[Verifications*]OK
[Function*]OK
[Quick Test] OK
*-----------------------------------------------------------------------------
* 0.100.0430 2011/03/22 15:50
*-----------------------------------------------------------------------------
Team : DIV6-SW2-CONN
Issuer: Chiawei Chang
Mark :
IssueKeys:[SF4H8.B-30]
Summary: Fix Phone voice's sound is robotic when using BT headset.
Do : [Change]
- Add new command, pcm_slave, at brcm_patchram_plus.
[Symptom]
- Bluetooth phone call can't hear remote voice & it will occur period noise.
[Cause]
- Phone Call can't use when using BT headset.
[Solution]
- Add new command, pcm_slave, at brcm_patchram_plus application. When BT initial,
bluetooth script will enable the command option.
[Notes]
- None.
[Expose]
- No.
Files :
* ./android/system/bluetooth/brcm_patchram_plus/brcm_patchram_plus.c
* ./android/system/core/rootdir/etc/init.bcm4329.bt.sh
*-----------------------------------------------------------------------------
* 0.100.0429 2011/03/22 14:20
*-----------------------------------------------------------------------------
Team : SW5-Phone
Issuer: Stamp Huang
Mark :
IssueKeys:[SF6.B-1129]
Summary: fix battery current unit and add the width of touch panel test
Do : [Change]
- 1. Fix battery current unit
- 2. Add the width of touch panel test
[Symptom]
- SF6.B-1129 [FQC]The battery information display error in FQC
[Cause]
- wrong unit
[Solution]
- fix the unit
[Notes]
- None.
[Expose]
- No.
Files :
* ./LINUX/android/development/FIH/FQC/src/com/fihtdc/fqc/activity/BatteryInfoActivity.java
* ./LINUX/android/development/FIH/FQC/src/com/fihtdc/fqc/activity/ShowTouchPanel.java
Reviewer: Nicky Tseng
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test] OK
*-----------------------------------------------------------------------------
* 0.100.0428 2011/03/22 11:50
*-----------------------------------------------------------------------------
Team : SW2-6-1
Issuer: Johnny Lin
Mark : None
IssueKeys:[FB3.B-933]
Summary: DUT lose FM radio frequency and cannot scanning to new station after exit GPS satellites function
Do : [Change]
- Modify the reference counter at gps_sync to fix this issue.
[Symptom]
- None.
[Cause]
- The reference counter had wrong decision, and would off FM LNA when turn off GPS.
[Solution]
- Modify the reference counter.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/drivers/input/misc/gps_sync.c
*-----------------------------------------------------------------------------
* 0.100.0427 2011/03/21 21:20
*-----------------------------------------------------------------------------
Team: SW2-6-CONN
Issuer: Chiawei Chang
Mark :
IssueKeys:[SF4H8.B-7]
Summary: Modify WIFI power sequence & add some debug message.
Do : [Change]
- Modify WiFi power sequence & add debug message.
[Symptom]
- None.
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/arch/arm/mach-msm/board-msm7x30.c
* ./android/hardware/libhardware_legacy/wifi/bcm4329_wifi.c
* ./android/system/bcm4329/dhd.ko
*-----------------------------------------------------------------------------
* 0.100.0426 2011/03/21 14:10
*-----------------------------------------------------------------------------
Team: SW2-6-CONN
Issuer: Chiawei Chang
Mark :
IssueKeys:[SF4H8.B-7]
Summary: Fixed WiFi can't re-connect with AP after dut resume.
Do : [Change]
- When WiFi reset, re-setting sdio clock for BCM4329.
[Symptom]
- WiFi can't re-connect with AP when DUT resume.
[Cause]
- None.
[Solution]
- Because sdio resume, it will re-setting sdio clock. Broadcom BCM4329
need 25MHz clock and default is 50MHz.
[Notes]
- None.
[Expose]
- None.
Files :
./android/kernel/drivers/mmc/core/core.c
*-----------------------------------------------------------------------------
* 0.100.0425 2011/03/21 11:50
*-----------------------------------------------------------------------------
Team: SW2-6-Multimedia
Issuer: Robert Chuang
Mark : MM-RC-ChangeCodingStyle-01
IssueKeys:[SF5.B-879]
Summary: Fine tune the audio coding style for SXX FTM
Do : [Change]
- Fine tune the audio coding style for SXX FTM
[Symptom]
- None.
[Cause]
- None.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./FTM/ftm/dispatcher.c
Reviewer:
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0424 2011/03/18 17:02
*-----------------------------------------------------------------------------
Team : SW2-6-Multimedia
Issuer: Jinju Hong
Mark :
IssueKeys:[SF5.B-2435]
Summary: Show sd download (OTA) UI
Do : [Change]
1. Show sd download ui.
2. Rename lcdc_load_bitmap to load_bitmap to prevent confusion.
[Symptom]
- There is no ui in sd download.
[Cause]
- The content of show_sd_download_ui function is enclosed by the flag DISPLAY_TYPE_LCDC.
[Solution]
- Remove the flag DISPLAY_TYPE_LCDC in show_sd_download_ui function.
[Notes]
- None.
[Expose]
- No.
Files :
* ./android/bootable/bootloader/lk/dev/fbcon/fbcon.c
* ./android/bootable/bootloader/lk/include/splash_def.h
* ./android/bootable/bootloader/lk/app/aboot/aboot.c
* ./android/bootable/bootloader/lk/dev/notification/notification.c
Reviewer:
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0423 2011/03/18 16:15
*-----------------------------------------------------------------------------
Team : SW5-Kernel
Issuer: Aldix Tsai
Mark : SW5-Kernel-AT-BinaryEventLog-01
IssueKeys:[SF6.FC-26]
Summary: [DbgCfgTool] Add feature "Binary Events log"
Do : [Change]
- [DbgCfgTool] Add feature "Binary Events log", enabled it by default
[Symptom]
- None.
[Cause]
- Use DDMS to watch Binary events log can get more information.
[Solution]
- Add a check box which stand for Binary events log or Not in DbgCfgTool,
then parameter -B of logcat would be set or not according to it.
- Furthermore, since DDMS needs file event-log-tags while decoding binary events log,
I added system/etc/event-log-tags in copy file to SD list.
[Notes]
- If you want change Binary format of event, you have to remove previous event log.
Otherwise, binary log and non-Binary log would be concatenate to one file.
[Expose]
- None.
Files :
* .\android\development\FIH\DbgCfgTool\GUI\res\layout\logger_config.xml
* .\android\development\FIH\DbgCfgTool\GUI\res\values\strings.xml
* .\android\development\FIH\DbgCfgTool\GUI\src\com\fihspec\DbgCfgTool\logger_config.java
* .\android\development\FIH\DbgCfgTool\GUI\src\com\fihspec\DbgCfgTool\TestOptions.java
* .\android\external\klogd\loggerlauncher.c
* .\android\system\core\rootdir\etc\DefaultDbgConfig_debug.xml
* .\android\system\core\rootdir\etc\DefaultDbgConfig_release.xml
Reviewer:
Stella Chen
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0422 2011/03/18 13:40
*-----------------------------------------------------------------------------
Team : Div2-SW6-2
Issuer: Money Chien
Mark :
IssueKeys:[SF5.B-2433]
Summary: Tuning 5M sensor.
Do : [Change]
- Modified AE target register (A409).
- Modified AWB table.
- Modified OTP switch threshold.
- flash_main_waittime value from 300 to 150.
[Symptom]
- None.
[Cause]
- Tuning not ready.
[Solution]
- None.
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/kernel/drivers/media/video/msm/mt9p111_reg_sf5.c
* ./android/kernel/arch/arm/mach-msm/board-msm7x30.c
* ./android/kernel/arch/arm/configs/SF4V5_defconfig
* ./android/kernel/init/FIH_Kconfig
Reviewer:
Sendow Chen
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0421 2011/03/18 11:40
*-----------------------------------------------------------------------------
Team : SW2-D5-Peripheral
Issuer: Owen Hung
Mark : None.
IssueKeys:[SF5.B-2111]
Summary: Fix the touch panel disabled sometimes.
Do : [Change]
- Fix the touch panel disabled sometimes.
[Symptom]
- Touch panel can not work normally.
[Cause]
- SW : Power-on reset function fail.
HW : Error report.
[Solution]
- Add error handling & i2c retry function in power-on reset function.
[Notes]
- This modification is not related to HW error report(there may still HW issue exists).
[Expose]
- None.
Files :
* ./android/kernel/drivers/input/touchscreen/synaptics_i2c_t1320.c
* ./android/kernel/include/linux/synaptics_i2c_t1320.h
Reviewer:
Kevin Wang
Review:
[History Details*]
[Code Review*]
[Verifications*]
[Function*]
[Quick Test]
*-----------------------------------------------------------------------------
* 0.100.0420 2011/03/17 22:44
*-----------------------------------------------------------------------------
Team: SW5-CONN-PT2
Issuer: Jeremy Hsieh
Mark : SW5-CONN-PT2-JH-SF6.B-984-01*
IssueKeys:[SF6.B-984]
Summary: [System][WiMAX] DUT become slowly after turn on WiMAX
Do : [Change]
- Fix the CPU 100% issue.
[Symptom]
- 1. DUT become slowly after turn on WiMAX
[Cause]
- 1. After check log, we found there are two thread make the CPU 100%.
- 2. dm_detector_thread() and io_receiver_thread().
- 3. The root cause is recvmsg() in while loop and make CPU busy.
[Solution]
- 1. Change the recvmsg() flag convert from blocking to non blocking
[Notes]
- None.
[Expose]
- None.
Files :
* ./android/external/wimaxsdk/device.c