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
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
|
/* Copyright (c) 2017,2019 The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#define pr_fmt(fmt) "QCOM-BATT: %s: " fmt, __func__
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/power_supply.h>
#include <linux/interrupt.h>
#include <linux/of.h>
#include <linux/of_irq.h>
#include <linux/qpnp/qpnp-revid.h>
#include <linux/printk.h>
#include <linux/pm_wakeup.h>
#include <linux/slab.h>
#include <linux/pmic-voter.h>
#define DRV_MAJOR_VERSION 1
#define DRV_MINOR_VERSION 0
#define CHG_STATE_VOTER "CHG_STATE_VOTER"
#define TAPER_END_VOTER "TAPER_END_VOTER"
#define PL_TAPER_EARLY_BAD_VOTER "PL_TAPER_EARLY_BAD_VOTER"
#define PARALLEL_PSY_VOTER "PARALLEL_PSY_VOTER"
#define PL_HW_ABSENT_VOTER "PL_HW_ABSENT_VOTER"
#define PL_VOTER "PL_VOTER"
#define RESTRICT_CHG_VOTER "RESTRICT_CHG_VOTER"
#define ICL_CHANGE_VOTER "ICL_CHANGE_VOTER"
#define PL_INDIRECT_VOTER "PL_INDIRECT_VOTER"
#define USBIN_I_VOTER "USBIN_I_VOTER"
#define FCC_STEPPER_VOTER "FCC_STEPPER_VOTER"
struct pl_data {
int pl_mode;
int slave_pct;
int taper_pct;
int slave_fcc_ua;
int main_fcc_ua;
int restricted_current;
bool restricted_charging_enabled;
struct votable *fcc_votable;
struct votable *fv_votable;
struct votable *pl_disable_votable;
struct votable *pl_awake_votable;
struct votable *hvdcp_hw_inov_dis_votable;
struct votable *usb_icl_votable;
struct votable *pl_enable_votable_indirect;
struct delayed_work status_change_work;
struct work_struct pl_disable_forever_work;
struct delayed_work pl_taper_work;
struct delayed_work pl_awake_work;
struct delayed_work fcc_step_update_work;
struct power_supply *main_psy;
struct power_supply *pl_psy;
struct power_supply *batt_psy;
struct power_supply *usb_psy;
int charge_type;
int total_settled_ua;
int pl_settled_ua;
int fcc_step_update;
int main_step_fcc_dir;
int main_step_fcc_count;
int main_step_fcc_residual;
int parallel_step_fcc_dir;
int parallel_step_fcc_count;
int parallel_step_fcc_residual;
struct class qcom_batt_class;
struct wakeup_source *pl_ws;
struct notifier_block nb;
};
struct pl_data *the_chip;
enum print_reason {
PR_PARALLEL = BIT(0),
};
static int debug_mask;
module_param_named(debug_mask, debug_mask, int, S_IRUSR | S_IWUSR);
#define pl_dbg(chip, reason, fmt, ...) \
do { \
if (debug_mask & (reason)) \
pr_info(fmt, ##__VA_ARGS__); \
else \
pr_debug(fmt, ##__VA_ARGS__); \
} while (0)
enum {
VER = 0,
SLAVE_PCT,
RESTRICT_CHG_ENABLE,
RESTRICT_CHG_CURRENT,
};
/*******
* ICL *
********/
static void split_settled(struct pl_data *chip)
{
int slave_icl_pct, total_current_ua;
int slave_ua = 0, main_settled_ua = 0;
union power_supply_propval pval = {0, };
int rc, total_settled_ua = 0;
if ((chip->pl_mode != POWER_SUPPLY_PL_USBIN_USBIN)
&& (chip->pl_mode != POWER_SUPPLY_PL_USBIN_USBIN_EXT))
return;
if (!chip->main_psy)
return;
if (!get_effective_result_locked(chip->pl_disable_votable)) {
/* read the aicl settled value */
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_INPUT_CURRENT_SETTLED, &pval);
if (rc < 0) {
pr_err("Couldn't get aicl settled value rc=%d\n", rc);
return;
}
main_settled_ua = pval.intval;
/* slave gets 10 percent points less for ICL */
slave_icl_pct = max(0, chip->slave_pct - 10);
slave_ua = ((main_settled_ua + chip->pl_settled_ua)
* slave_icl_pct) / 100;
total_settled_ua = main_settled_ua + chip->pl_settled_ua;
}
total_current_ua = get_effective_result_locked(chip->usb_icl_votable);
if (total_current_ua < 0) {
if (!chip->usb_psy)
chip->usb_psy = power_supply_get_by_name("usb");
if (!chip->usb_psy) {
pr_err("Couldn't get usbpsy while splitting settled\n");
return;
}
/* no client is voting, so get the total current from charger */
rc = power_supply_get_property(chip->usb_psy,
POWER_SUPPLY_PROP_HW_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't get max current rc=%d\n", rc);
return;
}
total_current_ua = pval.intval;
}
/*
* If there is an increase in slave share
* (Also handles parallel enable case)
* Set Main ICL then slave ICL
* else
* (Also handles parallel disable case)
* Set slave ICL then main ICL.
*/
if (slave_ua > chip->pl_settled_ua) {
pval.intval = total_current_ua - slave_ua;
/* Set ICL on main charger */
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
return;
}
/* set parallel's ICL could be 0mA when pl is disabled */
pval.intval = slave_ua;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set parallel icl, rc=%d\n", rc);
return;
}
} else {
/* set parallel's ICL could be 0mA when pl is disabled */
pval.intval = slave_ua;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set parallel icl, rc=%d\n", rc);
return;
}
pval.intval = total_current_ua - slave_ua;
/* Set ICL on main charger */
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
return;
}
}
chip->total_settled_ua = total_settled_ua;
chip->pl_settled_ua = slave_ua;
pl_dbg(chip, PR_PARALLEL,
"Split total_current_ua=%d main_settled_ua=%d slave_ua=%d\n",
total_current_ua, main_settled_ua, slave_ua);
}
static ssize_t version_show(struct class *c, struct class_attribute *attr,
char *buf)
{
return snprintf(buf, PAGE_SIZE, "%d.%d\n",
DRV_MAJOR_VERSION, DRV_MINOR_VERSION);
}
/*************
* SLAVE PCT *
**************/
static ssize_t slave_pct_show(struct class *c, struct class_attribute *attr,
char *ubuf)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
return snprintf(ubuf, PAGE_SIZE, "%d\n", chip->slave_pct);
}
static ssize_t slave_pct_store(struct class *c, struct class_attribute *attr,
const char *ubuf, size_t count)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
unsigned long val;
if (kstrtoul(ubuf, 10, &val))
return -EINVAL;
chip->slave_pct = val;
rerun_election(chip->fcc_votable);
rerun_election(chip->fv_votable);
split_settled(chip);
return count;
}
/**********************
* RESTICTED CHARGIGNG *
***********************/
static ssize_t restrict_chg_show(struct class *c, struct class_attribute *attr,
char *ubuf)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
return snprintf(ubuf, PAGE_SIZE, "%d\n",
chip->restricted_charging_enabled);
}
static ssize_t restrict_chg_store(struct class *c, struct class_attribute *attr,
const char *ubuf, size_t count)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
unsigned long val;
if (kstrtoul(ubuf, 10, &val))
return -EINVAL;
if (chip->restricted_charging_enabled == !!val)
goto no_change;
chip->restricted_charging_enabled = !!val;
/* disable parallel charger in case of restricted charging */
vote(chip->pl_disable_votable, RESTRICT_CHG_VOTER,
chip->restricted_charging_enabled, 0);
vote(chip->fcc_votable, RESTRICT_CHG_VOTER,
chip->restricted_charging_enabled,
chip->restricted_current);
no_change:
return count;
}
static ssize_t restrict_cur_show(struct class *c, struct class_attribute *attr,
char *ubuf)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
return snprintf(ubuf, PAGE_SIZE, "%d\n", chip->restricted_current);
}
static ssize_t restrict_cur_store(struct class *c, struct class_attribute *attr,
const char *ubuf, size_t count)
{
struct pl_data *chip = container_of(c, struct pl_data,
qcom_batt_class);
unsigned long val;
if (kstrtoul(ubuf, 10, &val))
return -EINVAL;
chip->restricted_current = val;
vote(chip->fcc_votable, RESTRICT_CHG_VOTER,
chip->restricted_charging_enabled,
chip->restricted_current);
return count;
}
static struct class_attribute pl_attributes[] = {
[VER] = __ATTR_RO(version),
[SLAVE_PCT] = __ATTR(parallel_pct, S_IRUGO | S_IWUSR,
slave_pct_show, slave_pct_store),
[RESTRICT_CHG_ENABLE] = __ATTR(restricted_charging, S_IRUGO | S_IWUSR,
restrict_chg_show, restrict_chg_store),
[RESTRICT_CHG_CURRENT] = __ATTR(restricted_current, S_IRUGO | S_IWUSR,
restrict_cur_show, restrict_cur_store),
__ATTR_NULL,
};
/***********
* TAPER *
************/
#define MINIMUM_PARALLEL_FCC_UA 500000
#define PL_TAPER_WORK_DELAY_MS 500
#define TAPER_RESIDUAL_PCT 75
static void pl_taper_work(struct work_struct *work)
{
struct pl_data *chip = container_of(work, struct pl_data,
pl_taper_work.work);
union power_supply_propval pval = {0, };
int rc;
/* exit immediately if parallel is disabled */
if (get_effective_result(chip->pl_disable_votable)) {
pl_dbg(chip, PR_PARALLEL, "terminating parallel not in progress\n");
goto done;
}
pl_dbg(chip, PR_PARALLEL, "entering parallel taper work slave_fcc = %d\n",
chip->slave_fcc_ua);
if (chip->slave_fcc_ua < MINIMUM_PARALLEL_FCC_UA) {
pl_dbg(chip, PR_PARALLEL, "terminating parallel's share lower than 500mA\n");
vote(chip->pl_disable_votable, TAPER_END_VOTER, true, 0);
goto done;
}
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_CHARGE_TYPE, &pval);
if (rc < 0) {
pr_err("Couldn't get batt charge type rc=%d\n", rc);
goto done;
}
chip->charge_type = pval.intval;
if (pval.intval == POWER_SUPPLY_CHARGE_TYPE_TAPER) {
pl_dbg(chip, PR_PARALLEL, "master is taper charging; reducing slave FCC\n");
vote(chip->pl_awake_votable, TAPER_END_VOTER, true, 0);
/* Reduce the taper percent by 25 percent */
chip->taper_pct = chip->taper_pct * TAPER_RESIDUAL_PCT / 100;
rerun_election(chip->fcc_votable);
pl_dbg(chip, PR_PARALLEL, "taper entry scheduling work after %d ms\n",
PL_TAPER_WORK_DELAY_MS);
schedule_delayed_work(&chip->pl_taper_work,
msecs_to_jiffies(PL_TAPER_WORK_DELAY_MS));
return;
}
/*
* Master back to Fast Charge, get out of this round of taper reduction
*/
pl_dbg(chip, PR_PARALLEL, "master is fast charging; waiting for next taper\n");
done:
vote(chip->pl_awake_votable, TAPER_END_VOTER, false, 0);
}
/*********
* FCC *
**********/
#define EFFICIENCY_PCT 80
#define FCC_STEP_SIZE_UA 100000
#define FCC_STEP_UPDATE_DELAY_MS 1000
#define STEP_UP 1
#define STEP_DOWN -1
static void get_fcc_split(struct pl_data *chip, int total_ua,
int *master_ua, int *slave_ua)
{
int rc, effective_total_ua, slave_limited_ua, hw_cc_delta_ua = 0,
icl_ua, adapter_uv, bcl_ua;
union power_supply_propval pval = {0, };
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_FCC_DELTA, &pval);
if (rc < 0)
hw_cc_delta_ua = 0;
else
hw_cc_delta_ua = pval.intval;
bcl_ua = INT_MAX;
if (chip->pl_mode == POWER_SUPPLY_PL_USBMID_USBMID) {
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_INPUT_CURRENT_SETTLED, &pval);
if (rc < 0) {
pr_err("Couldn't get aicl settled value rc=%d\n", rc);
return;
}
icl_ua = pval.intval;
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_INPUT_VOLTAGE_SETTLED, &pval);
if (rc < 0) {
pr_err("Couldn't get adaptive voltage rc=%d\n", rc);
return;
}
adapter_uv = pval.intval;
bcl_ua = div64_s64((s64)icl_ua * adapter_uv * EFFICIENCY_PCT,
(s64)get_effective_result(chip->fv_votable) * 100);
}
effective_total_ua = max(0, total_ua + hw_cc_delta_ua);
slave_limited_ua = min(effective_total_ua, bcl_ua);
*slave_ua = (slave_limited_ua * chip->slave_pct) / 100;
/*
* In USBIN_USBIN configuration with internal rsense parallel
* charger's current goes through main charger's BATFET, keep
* the main charger's FCC to the votable result.
*/
if (chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN)
*master_ua = max(0, total_ua);
else
*master_ua = max(0, total_ua - *slave_ua);
*slave_ua = (*slave_ua * chip->taper_pct) / 100;
}
static void get_fcc_step_update_params(struct pl_data *chip, int main_fcc_ua,
int parallel_fcc_ua)
{
union power_supply_propval pval = {0, };
int rc;
/* Read current FCC of main charger */
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't get main charger current fcc, rc=%d\n", rc);
return;
}
chip->main_fcc_ua = pval.intval;
chip->main_step_fcc_dir = (main_fcc_ua > pval.intval) ?
STEP_UP : STEP_DOWN;
chip->main_step_fcc_count = abs((main_fcc_ua - pval.intval) /
FCC_STEP_SIZE_UA);
chip->main_step_fcc_residual = (main_fcc_ua - pval.intval) %
FCC_STEP_SIZE_UA;
chip->parallel_step_fcc_dir = (parallel_fcc_ua > chip->slave_fcc_ua) ?
STEP_UP : STEP_DOWN;
chip->parallel_step_fcc_count = abs((parallel_fcc_ua -
chip->slave_fcc_ua) / FCC_STEP_SIZE_UA);
chip->parallel_step_fcc_residual = (parallel_fcc_ua -
chip->slave_fcc_ua) % FCC_STEP_SIZE_UA;
pr_debug("Main FCC Stepper parameters: main_step_direction: %d, main_step_count: %d, main_residual_fcc: %d\n",
chip->main_step_fcc_dir, chip->main_step_fcc_count,
chip->main_step_fcc_residual);
pr_debug("Parallel FCC Stepper parameters: parallel_step_direction: %d, parallel_step_count: %d, parallel_residual_fcc: %d\n",
chip->parallel_step_fcc_dir, chip->parallel_step_fcc_count,
chip->parallel_step_fcc_residual);
}
static int pl_fcc_vote_callback(struct votable *votable, void *data,
int total_fcc_ua, const char *client)
{
struct pl_data *chip = data;
union power_supply_propval pval = {0, };
int rc, master_fcc_ua = total_fcc_ua, slave_fcc_ua = 0;
if (total_fcc_ua < 0)
return 0;
if (!chip->main_psy)
return 0;
if (!chip->batt_psy) {
chip->batt_psy = power_supply_get_by_name("battery");
if (!chip->batt_psy)
return 0;
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_FCC_STEPPER_ENABLE, &pval);
if (rc < 0) {
pr_err("Couldn't read FCC step update status, rc=%d\n",
rc);
return rc;
}
chip->fcc_step_update = pval.intval;
pr_debug("FCC Stepper %s\n",
pval.intval ? "enabled" : "disabled");
}
if (chip->fcc_step_update)
cancel_delayed_work_sync(&chip->fcc_step_update_work);
if (chip->pl_mode == POWER_SUPPLY_PL_NONE
|| get_effective_result_locked(chip->pl_disable_votable)) {
if (chip->fcc_step_update) {
vote(chip->pl_awake_votable, FCC_STEPPER_VOTER,
true, 0);
get_fcc_step_update_params(chip, total_fcc_ua, 0);
schedule_delayed_work(&chip->fcc_step_update_work, 0);
return 0;
}
pval.intval = total_fcc_ua;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0)
pr_err("Couldn't set main fcc, rc=%d\n", rc);
return rc;
}
if (chip->pl_mode != POWER_SUPPLY_PL_NONE) {
get_fcc_split(chip, total_fcc_ua,
&master_fcc_ua, &slave_fcc_ua);
if (chip->fcc_step_update) {
vote(chip->pl_awake_votable, FCC_STEPPER_VOTER,
true, 0);
get_fcc_step_update_params(chip, master_fcc_ua,
slave_fcc_ua);
schedule_delayed_work(&chip->fcc_step_update_work, 0);
} else {
/*
* If there is an increase in slave share
* (Also handles parallel enable case)
* Set Main ICL then slave FCC
* else
* (Also handles parallel disable case)
* Set slave ICL then main FCC.
*/
if (slave_fcc_ua > chip->slave_fcc_ua) {
pval.intval = master_fcc_ua;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Could not set main fcc, rc=%d\n",
rc);
return rc;
}
pval.intval = slave_fcc_ua;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set parallel fcc, rc=%d\n",
rc);
return rc;
}
chip->slave_fcc_ua = slave_fcc_ua;
} else {
pval.intval = slave_fcc_ua;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set parallel fcc, rc=%d\n",
rc);
return rc;
}
chip->slave_fcc_ua = slave_fcc_ua;
pval.intval = master_fcc_ua;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Could not set main fcc, rc=%d\n",
rc);
return rc;
}
}
}
}
pl_dbg(chip, PR_PARALLEL, "master_fcc=%d slave_fcc=%d distribution=(%d/%d)\n",
master_fcc_ua, slave_fcc_ua,
(master_fcc_ua * 100) / total_fcc_ua,
(slave_fcc_ua * 100) / total_fcc_ua);
return 0;
}
static void fcc_step_update_work(struct work_struct *work)
{
struct pl_data *chip = container_of(work,
struct pl_data, fcc_step_update_work.work);
union power_supply_propval pval = {0, };
int reschedule_ms = 0, rc = 0;
int main_fcc = chip->main_fcc_ua;
int parallel_fcc = chip->slave_fcc_ua;
if (!chip->usb_psy) {
chip->usb_psy = power_supply_get_by_name("usb");
if (!chip->usb_psy) {
pr_err("Couldn't get usb psy\n");
return;
}
}
/* Check whether USB is present or not */
rc = power_supply_get_property(chip->usb_psy,
POWER_SUPPLY_PROP_PRESENT, &pval);
if (rc < 0) {
pr_err("Couldn't get USB Present status, rc=%d\n", rc);
return;
}
/*
* If USB is not present, then disable parallel and
* Main FCC to the effective value of FCC votable and exit.
*/
if (!pval.intval) {
/* Disable parallel */
parallel_fcc = 0;
pval.intval = 1;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0)
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
main_fcc = get_effective_result_locked(chip->fcc_votable);
pval.intval = main_fcc;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set main charger fcc, rc=%d\n", rc);
return;
}
goto stepper_exit;
}
if (chip->main_step_fcc_count) {
main_fcc += (FCC_STEP_SIZE_UA * chip->main_step_fcc_dir);
chip->main_step_fcc_count--;
reschedule_ms = FCC_STEP_UPDATE_DELAY_MS;
} else if (chip->main_step_fcc_residual) {
main_fcc += chip->main_step_fcc_residual;
chip->main_step_fcc_residual = 0;
}
if (chip->parallel_step_fcc_count) {
parallel_fcc += (FCC_STEP_SIZE_UA *
chip->parallel_step_fcc_dir);
chip->parallel_step_fcc_count--;
reschedule_ms = FCC_STEP_UPDATE_DELAY_MS;
} else if (chip->parallel_step_fcc_residual) {
parallel_fcc += chip->parallel_step_fcc_residual;
chip->parallel_step_fcc_residual = 0;
}
if (chip->pl_mode == POWER_SUPPLY_PL_NONE ||
get_effective_result_locked(chip->pl_disable_votable)) {
/* Set Parallel FCC */
pval.intval = parallel_fcc;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set parallel charger fcc, rc=%d\n",
rc);
return;
}
/* Set main FCC */
pval.intval = main_fcc;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set main charger fcc, rc=%d\n", rc);
return;
}
if (parallel_fcc < MINIMUM_PARALLEL_FCC_UA) {
pval.intval = 1;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0) {
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
return;
}
}
} else {
if (parallel_fcc < chip->slave_fcc_ua) {
pval.intval = parallel_fcc;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set parallel charger fcc, rc=%d\n",
rc);
return;
}
pval.intval = main_fcc;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set main charger fcc, rc=%d\n",
rc);
return;
}
} else {
pval.intval = main_fcc;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set main charger fcc, rc=%d\n",
rc);
return;
}
pval.intval = parallel_fcc;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
&pval);
if (rc < 0) {
pr_err("Couldn't set parallel charger fcc, rc=%d\n",
rc);
return;
}
}
rc = power_supply_get_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0) {
pr_err("Couldn't get slave suspend status, rc=%d\n",
rc);
return;
}
/*
* Enable parallel charger only if it was disabled earlier and
* configured slave fcc is greater than or equal to 100mA.
*/
if (pval.intval == 1 && parallel_fcc >= 100000) {
pval.intval = 0;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0) {
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
return;
}
if ((chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN) ||
(chip->pl_mode ==
POWER_SUPPLY_PL_USBIN_USBIN_EXT))
split_settled(chip);
}
}
stepper_exit:
chip->main_fcc_ua = main_fcc;
chip->slave_fcc_ua = parallel_fcc;
if (reschedule_ms) {
schedule_delayed_work(&chip->fcc_step_update_work,
msecs_to_jiffies(reschedule_ms));
pr_debug("Rescheduling FCC_STEPPER work\n");
} else {
vote(chip->pl_awake_votable, FCC_STEPPER_VOTER, false, 0);
}
}
#define PARALLEL_FLOAT_VOLTAGE_DELTA_UV 50000
static int pl_fv_vote_callback(struct votable *votable, void *data,
int fv_uv, const char *client)
{
struct pl_data *chip = data;
union power_supply_propval pval = {0, };
int rc = 0;
if (fv_uv < 0)
return 0;
if (!chip->main_psy)
return 0;
pval.intval = fv_uv;
rc = power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_VOLTAGE_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set main fv, rc=%d\n", rc);
return rc;
}
if (chip->pl_mode != POWER_SUPPLY_PL_NONE) {
pval.intval += PARALLEL_FLOAT_VOLTAGE_DELTA_UV;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_VOLTAGE_MAX, &pval);
if (rc < 0) {
pr_err("Couldn't set float on parallel rc=%d\n", rc);
return rc;
}
}
return 0;
}
#define ICL_STEP_UA 25000
#define PL_DELAY_MS 3000
static int usb_icl_vote_callback(struct votable *votable, void *data,
int icl_ua, const char *client)
{
int rc;
struct pl_data *chip = data;
union power_supply_propval pval = {0, };
bool rerun_aicl = false;
if (!chip->main_psy)
return 0;
if (client == NULL)
icl_ua = INT_MAX;
/*
* Disable parallel for new ICL vote - the call to split_settled will
* ensure that all the input current limit gets assigned to the main
* charger.
*/
vote(chip->pl_disable_votable, ICL_CHANGE_VOTER, true, 0);
/*
* if (ICL < 1400)
* disable parallel charger using USBIN_I_VOTER
* else
* instead of re-enabling here rely on status_changed_work
* (triggered via AICL completed or scheduled from here to
* unvote USBIN_I_VOTER) the status_changed_work enables
* USBIN_I_VOTER based on settled current.
*/
if (icl_ua <= 1400000)
vote(chip->pl_enable_votable_indirect, USBIN_I_VOTER, false, 0);
else
schedule_delayed_work(&chip->status_change_work,
msecs_to_jiffies(PL_DELAY_MS));
/* rerun AICL */
/* get the settled current */
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_INPUT_CURRENT_SETTLED,
&pval);
if (rc < 0) {
pr_err("Couldn't get aicl settled value rc=%d\n", rc);
return rc;
}
/* rerun AICL if new ICL is above settled ICL */
if (icl_ua > pval.intval)
rerun_aicl = true;
if (rerun_aicl) {
/* set a lower ICL */
pval.intval = max(pval.intval - ICL_STEP_UA, ICL_STEP_UA);
power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CURRENT_MAX,
&pval);
}
/* set the effective ICL */
pval.intval = icl_ua;
power_supply_set_property(chip->main_psy,
POWER_SUPPLY_PROP_CURRENT_MAX,
&pval);
vote(chip->pl_disable_votable, ICL_CHANGE_VOTER, false, 0);
return 0;
}
static void pl_disable_forever_work(struct work_struct *work)
{
struct pl_data *chip = container_of(work,
struct pl_data, pl_disable_forever_work);
/* Disable Parallel charger forever */
vote(chip->pl_disable_votable, PL_HW_ABSENT_VOTER, true, 0);
/* Re-enable autonomous mode */
if (chip->hvdcp_hw_inov_dis_votable)
vote(chip->hvdcp_hw_inov_dis_votable, PL_VOTER, false, 0);
}
static void pl_awake_work(struct work_struct *work)
{
struct pl_data *chip = container_of(work,
struct pl_data, pl_awake_work.work);
vote(chip->pl_awake_votable, PL_VOTER, false, 0);
}
static int pl_disable_vote_callback(struct votable *votable,
void *data, int pl_disable, const char *client)
{
struct pl_data *chip = data;
union power_supply_propval pval = {0, };
int rc;
chip->taper_pct = 100;
chip->total_settled_ua = 0;
chip->pl_settled_ua = 0;
/* Cancel FCC step change work */
cancel_delayed_work_sync(&chip->fcc_step_update_work);
if (!pl_disable) { /* enable */
/* keep system awake to talk to slave charger through i2c */
cancel_delayed_work_sync(&chip->pl_awake_work);
if (chip->pl_awake_votable)
vote(chip->pl_awake_votable, PL_VOTER, true, 0);
rc = power_supply_get_property(chip->pl_psy,
POWER_SUPPLY_PROP_CHARGE_TYPE, &pval);
if (rc == -ENODEV) {
/*
* -ENODEV is returned only if parallel chip
* is not present in the system.
* Disable parallel charger forever.
*/
schedule_work(&chip->pl_disable_forever_work);
return rc;
}
rerun_election(chip->fv_votable);
rerun_election(chip->fcc_votable);
/*
* Enable will be called with a valid pl_psy always. The
* PARALLEL_PSY_VOTER keeps it disabled unless a pl_psy
* is seen.
*/
if (!chip->fcc_step_update) {
pval.intval = 0;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0)
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
if ((chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN) ||
(chip->pl_mode ==
POWER_SUPPLY_PL_USBIN_USBIN_EXT))
split_settled(chip);
}
/*
* we could have been enabled while in taper mode,
* start the taper work if so
*/
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_CHARGE_TYPE, &pval);
if (rc < 0) {
pr_err("Couldn't get batt charge type rc=%d\n", rc);
} else {
if (pval.intval == POWER_SUPPLY_CHARGE_TYPE_TAPER) {
pl_dbg(chip, PR_PARALLEL,
"pl enabled in Taper scheduing work\n");
schedule_delayed_work(&chip->pl_taper_work, 0);
}
}
} else {
if ((chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN)
|| (chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN_EXT))
split_settled(chip);
if (!chip->fcc_step_update) {
/* pl_psy may be NULL while in the disable branch */
if (chip->pl_psy) {
pval.intval = 1;
rc = power_supply_set_property(chip->pl_psy,
POWER_SUPPLY_PROP_INPUT_SUSPEND, &pval);
if (rc < 0)
pr_err("Couldn't change slave suspend state rc=%d\n",
rc);
}
}
rerun_election(chip->fcc_votable);
rerun_election(chip->fv_votable);
cancel_delayed_work_sync(&chip->pl_awake_work);
if (chip->pl_awake_votable)
schedule_delayed_work(&chip->pl_awake_work,
msecs_to_jiffies(5000));
}
pl_dbg(chip, PR_PARALLEL, "parallel charging %s\n",
pl_disable ? "disabled" : "enabled");
return 0;
}
static int pl_enable_indirect_vote_callback(struct votable *votable,
void *data, int pl_enable, const char *client)
{
struct pl_data *chip = data;
vote(chip->pl_disable_votable, PL_INDIRECT_VOTER, !pl_enable, 0);
return 0;
}
static int pl_awake_vote_callback(struct votable *votable,
void *data, int awake, const char *client)
{
struct pl_data *chip = data;
if (awake)
__pm_stay_awake(chip->pl_ws);
else
__pm_relax(chip->pl_ws);
pr_debug("client: %s awake: %d\n", client, awake);
return 0;
}
static bool is_main_available(struct pl_data *chip)
{
if (chip->main_psy)
return true;
chip->main_psy = power_supply_get_by_name("main");
return !!chip->main_psy;
}
static bool is_batt_available(struct pl_data *chip)
{
if (!chip->batt_psy)
chip->batt_psy = power_supply_get_by_name("battery");
if (!chip->batt_psy)
return false;
return true;
}
static bool is_parallel_available(struct pl_data *chip)
{
union power_supply_propval pval = {0, };
int rc;
if (chip->pl_psy)
return true;
chip->pl_psy = power_supply_get_by_name("parallel");
if (!chip->pl_psy)
return false;
rc = power_supply_get_property(chip->pl_psy,
POWER_SUPPLY_PROP_PARALLEL_MODE, &pval);
if (rc < 0) {
pr_err("Couldn't get parallel mode from parallel rc=%d\n",
rc);
return false;
}
/*
* Note that pl_mode will be updated to anything other than a _NONE
* only after pl_psy is found. IOW pl_mode != _NONE implies that
* pl_psy is present and valid.
*/
chip->pl_mode = pval.intval;
/* Disable autonomous votage increments for USBIN-USBIN */
if ((chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN)
|| (chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN_EXT)) {
if (!chip->hvdcp_hw_inov_dis_votable)
chip->hvdcp_hw_inov_dis_votable =
find_votable("HVDCP_HW_INOV_DIS");
if (chip->hvdcp_hw_inov_dis_votable)
/* Read current pulse count */
vote(chip->hvdcp_hw_inov_dis_votable, PL_VOTER,
true, 0);
else
return false;
}
vote(chip->pl_disable_votable, PARALLEL_PSY_VOTER, false, 0);
return true;
}
static void handle_main_charge_type(struct pl_data *chip)
{
union power_supply_propval pval = {0, };
int rc;
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_CHARGE_TYPE, &pval);
if (rc < 0) {
pr_err("Couldn't get batt charge type rc=%d\n", rc);
return;
}
/* not fast/not taper state to disables parallel */
if ((pval.intval != POWER_SUPPLY_CHARGE_TYPE_FAST)
&& (pval.intval != POWER_SUPPLY_CHARGE_TYPE_TAPER)) {
vote(chip->pl_disable_votable, CHG_STATE_VOTER, true, 0);
chip->taper_pct = 100;
vote(chip->pl_disable_votable, TAPER_END_VOTER, false, 0);
vote(chip->pl_disable_votable, PL_TAPER_EARLY_BAD_VOTER,
false, 0);
chip->charge_type = pval.intval;
return;
}
/* handle taper charge entry */
if (chip->charge_type == POWER_SUPPLY_CHARGE_TYPE_FAST
&& (pval.intval == POWER_SUPPLY_CHARGE_TYPE_TAPER)) {
chip->charge_type = pval.intval;
pl_dbg(chip, PR_PARALLEL, "taper entry scheduling work\n");
schedule_delayed_work(&chip->pl_taper_work, 0);
return;
}
/* handle fast/taper charge entry */
if (pval.intval == POWER_SUPPLY_CHARGE_TYPE_TAPER
|| pval.intval == POWER_SUPPLY_CHARGE_TYPE_FAST) {
pl_dbg(chip, PR_PARALLEL, "chg_state enabling parallel\n");
vote(chip->pl_disable_votable, CHG_STATE_VOTER, false, 0);
chip->charge_type = pval.intval;
return;
}
/* remember the new state only if it isn't any of the above */
chip->charge_type = pval.intval;
}
#define MIN_ICL_CHANGE_DELTA_UA 300000
static void handle_settled_icl_change(struct pl_data *chip)
{
union power_supply_propval pval = {0, };
int new_total_settled_ua;
int rc;
int main_settled_ua;
int main_limited;
int total_current_ua;
total_current_ua = get_effective_result_locked(chip->usb_icl_votable);
/*
* call aicl split only when USBIN_USBIN and enabled
* and if aicl changed
*/
rc = power_supply_get_property(chip->main_psy,
POWER_SUPPLY_PROP_INPUT_CURRENT_SETTLED,
&pval);
if (rc < 0) {
pr_err("Couldn't get aicl settled value rc=%d\n", rc);
return;
}
main_settled_ua = pval.intval;
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_INPUT_CURRENT_LIMITED,
&pval);
if (rc < 0) {
pr_err("Couldn't get aicl settled value rc=%d\n", rc);
return;
}
main_limited = pval.intval;
if ((main_limited && (main_settled_ua + chip->pl_settled_ua) < 1400000)
|| (main_settled_ua == 0)
|| ((total_current_ua >= 0) &&
(total_current_ua <= 1400000)))
vote(chip->pl_enable_votable_indirect, USBIN_I_VOTER, false, 0);
else
vote(chip->pl_enable_votable_indirect, USBIN_I_VOTER, true, 0);
if (get_effective_result(chip->pl_disable_votable))
return;
if (chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN
|| chip->pl_mode == POWER_SUPPLY_PL_USBIN_USBIN_EXT) {
/*
* call aicl split only when USBIN_USBIN and enabled
* and if settled current has changed by more than 300mA
*/
new_total_settled_ua = main_settled_ua + chip->pl_settled_ua;
pl_dbg(chip, PR_PARALLEL,
"total_settled_ua=%d settled_ua=%d new_total_settled_ua=%d\n",
chip->total_settled_ua, pval.intval,
new_total_settled_ua);
/* If ICL change is small skip splitting */
if (abs(new_total_settled_ua - chip->total_settled_ua)
> MIN_ICL_CHANGE_DELTA_UA)
split_settled(chip);
} else {
rerun_election(chip->fcc_votable);
}
}
static void handle_parallel_in_taper(struct pl_data *chip)
{
union power_supply_propval pval = {0, };
int rc;
if (get_effective_result_locked(chip->pl_disable_votable))
return;
if (!chip->pl_psy)
return;
rc = power_supply_get_property(chip->pl_psy,
POWER_SUPPLY_PROP_CHARGE_TYPE, &pval);
if (rc < 0) {
pr_err("Couldn't get pl charge type rc=%d\n", rc);
return;
}
/*
* if parallel is seen in taper mode ever, that is an anomaly and
* we disable parallel charger
*/
if (pval.intval == POWER_SUPPLY_CHARGE_TYPE_TAPER) {
vote(chip->pl_disable_votable, PL_TAPER_EARLY_BAD_VOTER,
true, 0);
return;
}
}
static void status_change_work(struct work_struct *work)
{
struct pl_data *chip = container_of(work,
struct pl_data, status_change_work.work);
if (!chip->main_psy && is_main_available(chip)) {
/*
* re-run election for FCC/FV/ICL once main_psy
* is available to ensure all votes are reflected
* on hardware
*/
rerun_election(chip->usb_icl_votable);
rerun_election(chip->fcc_votable);
rerun_election(chip->fv_votable);
}
if (!chip->main_psy)
return;
if (!is_batt_available(chip))
return;
is_parallel_available(chip);
handle_main_charge_type(chip);
handle_settled_icl_change(chip);
handle_parallel_in_taper(chip);
}
static int pl_notifier_call(struct notifier_block *nb,
unsigned long ev, void *v)
{
struct power_supply *psy = v;
struct pl_data *chip = container_of(nb, struct pl_data, nb);
if (ev != PSY_EVENT_PROP_CHANGED)
return NOTIFY_OK;
if ((strcmp(psy->desc->name, "parallel") == 0)
|| (strcmp(psy->desc->name, "battery") == 0)
|| (strcmp(psy->desc->name, "main") == 0))
schedule_delayed_work(&chip->status_change_work, 0);
return NOTIFY_OK;
}
static int pl_register_notifier(struct pl_data *chip)
{
int rc;
chip->nb.notifier_call = pl_notifier_call;
rc = power_supply_reg_notifier(&chip->nb);
if (rc < 0) {
pr_err("Couldn't register psy notifier rc = %d\n", rc);
return rc;
}
return 0;
}
static int pl_determine_initial_status(struct pl_data *chip)
{
status_change_work(&chip->status_change_work.work);
return 0;
}
#define DEFAULT_RESTRICTED_CURRENT_UA 1000000
int qcom_batt_init(void)
{
struct pl_data *chip;
int rc = 0;
/* initialize just once */
if (the_chip) {
pr_err("was initialized earlier Failing now\n");
return -EINVAL;
}
chip = kzalloc(sizeof(*chip), GFP_KERNEL);
if (!chip)
return -ENOMEM;
chip->slave_pct = 50;
chip->restricted_current = DEFAULT_RESTRICTED_CURRENT_UA;
chip->pl_ws = wakeup_source_register("qcom-battery");
if (!chip->pl_ws)
goto cleanup;
INIT_DELAYED_WORK(&chip->status_change_work, status_change_work);
INIT_DELAYED_WORK(&chip->pl_taper_work, pl_taper_work);
INIT_WORK(&chip->pl_disable_forever_work, pl_disable_forever_work);
INIT_DELAYED_WORK(&chip->pl_awake_work, pl_awake_work);
INIT_DELAYED_WORK(&chip->fcc_step_update_work, fcc_step_update_work);
chip->fcc_votable = create_votable("FCC", VOTE_MIN,
pl_fcc_vote_callback,
chip);
if (IS_ERR(chip->fcc_votable)) {
rc = PTR_ERR(chip->fcc_votable);
goto release_wakeup_source;
}
chip->fv_votable = create_votable("FV", VOTE_MIN,
pl_fv_vote_callback,
chip);
if (IS_ERR(chip->fv_votable)) {
rc = PTR_ERR(chip->fv_votable);
goto destroy_votable;
}
chip->usb_icl_votable = create_votable("USB_ICL", VOTE_MIN,
usb_icl_vote_callback,
chip);
if (IS_ERR(chip->usb_icl_votable)) {
rc = PTR_ERR(chip->usb_icl_votable);
goto destroy_votable;
}
chip->pl_disable_votable = create_votable("PL_DISABLE", VOTE_SET_ANY,
pl_disable_vote_callback,
chip);
if (IS_ERR(chip->pl_disable_votable)) {
rc = PTR_ERR(chip->pl_disable_votable);
goto destroy_votable;
}
vote(chip->pl_disable_votable, CHG_STATE_VOTER, true, 0);
vote(chip->pl_disable_votable, TAPER_END_VOTER, false, 0);
vote(chip->pl_disable_votable, PARALLEL_PSY_VOTER, true, 0);
chip->pl_awake_votable = create_votable("PL_AWAKE", VOTE_SET_ANY,
pl_awake_vote_callback,
chip);
if (IS_ERR(chip->pl_awake_votable)) {
rc = PTR_ERR(chip->pl_disable_votable);
goto destroy_votable;
}
chip->pl_enable_votable_indirect = create_votable("PL_ENABLE_INDIRECT",
VOTE_SET_ANY,
pl_enable_indirect_vote_callback,
chip);
if (IS_ERR(chip->pl_enable_votable_indirect)) {
rc = PTR_ERR(chip->pl_enable_votable_indirect);
return rc;
}
vote(chip->pl_disable_votable, PL_INDIRECT_VOTER, true, 0);
rc = pl_register_notifier(chip);
if (rc < 0) {
pr_err("Couldn't register psy notifier rc = %d\n", rc);
goto unreg_notifier;
}
rc = pl_determine_initial_status(chip);
if (rc < 0) {
pr_err("Couldn't determine initial status rc=%d\n", rc);
goto unreg_notifier;
}
chip->qcom_batt_class.name = "qcom-battery",
chip->qcom_batt_class.owner = THIS_MODULE,
chip->qcom_batt_class.class_attrs = pl_attributes;
rc = class_register(&chip->qcom_batt_class);
if (rc < 0) {
pr_err("couldn't register pl_data sysfs class rc = %d\n", rc);
goto unreg_notifier;
}
the_chip = chip;
return 0;
unreg_notifier:
power_supply_unreg_notifier(&chip->nb);
destroy_votable:
destroy_votable(chip->pl_enable_votable_indirect);
destroy_votable(chip->pl_awake_votable);
destroy_votable(chip->pl_disable_votable);
destroy_votable(chip->fv_votable);
destroy_votable(chip->fcc_votable);
destroy_votable(chip->usb_icl_votable);
release_wakeup_source:
wakeup_source_unregister(chip->pl_ws);
cleanup:
kfree(chip);
return rc;
}
void qcom_batt_deinit(void)
{
struct pl_data *chip = the_chip;
if (chip == NULL)
return;
cancel_delayed_work_sync(&chip->status_change_work);
cancel_delayed_work_sync(&chip->pl_taper_work);
cancel_work_sync(&chip->pl_disable_forever_work);
cancel_delayed_work_sync(&chip->pl_awake_work);
cancel_delayed_work_sync(&chip->fcc_step_update_work);
power_supply_unreg_notifier(&chip->nb);
destroy_votable(chip->pl_enable_votable_indirect);
destroy_votable(chip->pl_awake_votable);
destroy_votable(chip->pl_disable_votable);
destroy_votable(chip->fv_votable);
destroy_votable(chip->fcc_votable);
wakeup_source_unregister(chip->pl_ws);
the_chip = NULL;
kfree(chip);
}
|