sec_board-mxc.c
12.8 KB
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
/*
* sec_board-mxc.c
* Samsung Mobile Battery Driver
*
* Copyright (C) 2012 Samsung Electronics
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/battery/sec_battery.h>
#if IS_ENABLED(CONFIG_FUELGAUGE_MAX17048)
#include <linux/battery/fuelgauge/max17048_fuelgauge.h>
#endif
#if IS_ENABLED(CONFIG_FUELGAUGE_MAX77823) || IS_ENABLED(CONFIG_FUELGAUGE_MAX77843)
#include <linux/battery/fuelgauge/max77823_fuelgauge.h>
#endif
//#include <linux/qpnp/pin.h>
//#include <linux/qpnp/qpnp-adc.h>
#include <linux/regulator/machine.h>
//#include <linux/regulator/krait-regulator.h>
#define SHORT_BATTERY_STANDARD 100
#if defined(CONFIG_EXTCON)
extern int get_jig_state(void);
#endif
int current_cable_type = POWER_SUPPLY_TYPE_BATTERY;
extern unsigned int system_rev;
#if defined(CONFIG_BATTERY_SAMSUNG_DATA)
#include CONFIG_BATTERY_SAMSUNG_DATA_FILE
#else //CONFIG_BATTERY_SAMSUNG_DATA
#if IS_ENABLED(CONFIG_FUELGAUGE_MAX17048)
static struct max17048_fuelgauge_battery_data_t max17048_battery_data[] = {
/* SDI battery data (High voltage 4.35V) */
{
.RCOMP0 = 0x5D,
.RCOMP_charging = 0x5D,
.temp_cohot = -175,
.temp_cocold = -5825,
.is_using_model_data = true,
.type_str = "SDI",
}
};
#endif
#if IS_ENABLED(CONFIG_FUELGAUGE_MAX77823) || IS_ENABLED(CONFIG_FUELGAUGE_MAX77843)
static struct max77823_fuelgauge_battery_data_t max77823_battery_data[] = {
/* SDI battery data (High voltage 4.4V) */
{
.Capacity = 26000, /* 2600 mAh * 10 mOhms = 26000 uVh */
.low_battery_comp_voltage = 2900000,
.low_battery_table = {
/* range, slope, offset */
{-5000000, 0, 0}, /* dummy for top limit */
{-1250000, 0, 3320},
{-750000, 97, 3451},
{-100000, 96, 3461},
{0, 0, 3456},
},
.temp_adjust_table = {
/* range, slope, offset */
{47000, 122, 8950},
{60000, 200, 51000},
{100000, 0, 0}, /* dummy for top limit */
},
.type_str = "SDI",
}
};
#endif
#define CAPACITY_MAX 990
#define CAPACITY_MAX_MARGIN 50
#define CAPACITY_MIN -7
static sec_bat_adc_table_data_t temp_table[] = {
{26009, 900},
{26280, 850},
{26600, 800},
{26950, 750},
{27325, 700},
{27737, 650},
{28180, 600},
{28699, 550},
{29360, 500},
{29970, 450},
{30995, 400},
{32046, 350},
{32985, 300},
{34050, 250},
{35139, 200},
{36179, 150},
{37208, 100},
{38237, 50},
{38414, 40},
{38598, 30},
{38776, 20},
{38866, 10},
{38956, 0},
{39102, -10},
{39247, -20},
{39393, -30},
{39538, -40},
{39684, -50},
{40490, -100},
{41187, -150},
{41652, -200},
{42030, -250},
{42327, -300},
};
static sec_bat_adc_table_data_t chg_temp_table[] = {
{0, 0},
};
#define TEMP_HIGH_THRESHOLD_EVENT 600 /* All temps in 1/10 C */
#define TEMP_HIGH_RECOVERY_EVENT 460
#define TEMP_LOW_THRESHOLD_EVENT -50
#define TEMP_LOW_RECOVERY_EVENT 0
#define TEMP_HIGH_THRESHOLD_NORMAL 600
#define TEMP_HIGH_RECOVERY_NORMAL 460
#define TEMP_LOW_THRESHOLD_NORMAL -50
#define TEMP_LOW_RECOVERY_NORMAL 0
#define TEMP_HIGH_THRESHOLD_LPM 600
#define TEMP_HIGH_RECOVERY_LPM 460
#define TEMP_LOW_THRESHOLD_LPM -50
#define TEMP_LOW_RECOVERY_LPM 0
#endif
static void sec_bat_adc_ap_init(struct platform_device *pdev,
struct sec_battery_info *battery)
{
}
static int sec_bat_adc_ap_read(struct sec_battery_info *battery, int channel)
{
int data = -1;
switch (channel)
{
case SEC_BAT_ADC_CHANNEL_TEMP :
case SEC_BAT_ADC_CHANNEL_TEMP_AMBIENT:
data = 33000;
break;
default :
break;
}
pr_debug("%s: data(%d)\n", __func__, data);
return data;
}
static void sec_bat_adc_ap_exit(void)
{
}
static void sec_bat_adc_none_init(struct platform_device *pdev,
struct sec_battery_info *battery)
{
}
static int sec_bat_adc_none_read(struct sec_battery_info *battery, int channel)
{
return 0;
}
static void sec_bat_adc_none_exit(void)
{
}
static void sec_bat_adc_ic_init(struct platform_device *pdev,
struct sec_battery_info *battery)
{
}
static int sec_bat_adc_ic_read(struct sec_battery_info *battery, int channel)
{
return 0;
}
static void sec_bat_adc_ic_exit(void)
{
}
static int adc_read_type(struct sec_battery_info *battery, int channel)
{
int adc = 0;
switch (battery->pdata->temp_adc_type)
{
case SEC_BATTERY_ADC_TYPE_NONE :
adc = sec_bat_adc_none_read(battery, channel);
break;
case SEC_BATTERY_ADC_TYPE_AP :
adc = sec_bat_adc_ap_read(battery, channel);
break;
case SEC_BATTERY_ADC_TYPE_IC :
adc = sec_bat_adc_ic_read(battery, channel);
break;
case SEC_BATTERY_ADC_TYPE_NUM :
break;
default :
break;
}
pr_debug("[%s] ADC = %d\n", __func__, adc);
return adc;
}
static void adc_init_type(struct platform_device *pdev,
struct sec_battery_info *battery)
{
switch (battery->pdata->temp_adc_type)
{
case SEC_BATTERY_ADC_TYPE_NONE :
sec_bat_adc_none_init(pdev, battery);
break;
case SEC_BATTERY_ADC_TYPE_AP :
sec_bat_adc_ap_init(pdev, battery);
break;
case SEC_BATTERY_ADC_TYPE_IC :
sec_bat_adc_ic_init(pdev, battery);
break;
case SEC_BATTERY_ADC_TYPE_NUM :
break;
default :
break;
}
}
static void adc_exit_type(struct sec_battery_info *battery)
{
switch (battery->pdata->temp_adc_type)
{
case SEC_BATTERY_ADC_TYPE_NONE :
sec_bat_adc_none_exit();
break;
case SEC_BATTERY_ADC_TYPE_AP :
sec_bat_adc_ap_exit();
break;
case SEC_BATTERY_ADC_TYPE_IC :
sec_bat_adc_ic_exit();
break;
case SEC_BATTERY_ADC_TYPE_NUM :
break;
default :
break;
}
}
int adc_read(struct sec_battery_info *battery, int channel)
{
int adc = 0;
adc = adc_read_type(battery, channel);
pr_debug("[%s]adc = %d\n", __func__, adc);
return adc;
}
void adc_exit(struct sec_battery_info *battery)
{
adc_exit_type(battery);
}
bool sec_bat_check_jig_status(void)
{
#if defined(CONFIG_SEC_LENTIS_PROJECT) || defined(CONFIG_SEC_TRLTE_PROJECT) || defined(CONFIG_SEC_TBLTE_PROJECT) || \
defined(CONFIG_SEC_KCCAT6_PROJECT)
#if defined(CONFIG_EXTCON)
return get_jig_state();
#else
return false;
#endif
#else
#if 0
if (!sec_fuelgauge) {
pr_err("%s: sec_fuelgauge is empty\n", __func__);
return false;
}
if (sec_fuelgauge->pdata->jig_irq >= 0) {
if (gpio_get_value_cansleep(sec_fuelgauge->pdata->jig_irq))
return true;
else
return false;
} else {
pr_err("%s: jig_irq is invalid\n", __func__);
return false;
}
#endif
return false;
#endif
}
/* callback for battery check
* return : bool
* true - battery detected, false battery NOT detected
*/
bool sec_bat_check_callback(struct sec_battery_info *battery)
{
struct power_supply *psy;
union power_supply_propval value;
pr_debug("%s: battery->pdata->bat_irq_gpio(%d)\n",
__func__, battery->pdata->bat_irq_gpio);
psy = get_power_supply_by_name(battery->pdata->charger_name);
if (!psy) {
pr_err("%s: Failed to get psy (%s)\n",
__func__, battery->pdata->charger_name);
value.intval = 1;
} else {
int ret;
ret = psy->get_property(psy, POWER_SUPPLY_PROP_PRESENT, &(value));
if (ret < 0) {
pr_err("%s: Fail to sec-charger get_property (%d=>%d)\n",
__func__, POWER_SUPPLY_PROP_PRESENT, ret);
value.intval = 1;
}
}
return value.intval;
}
void sec_bat_check_cable_result_callback(struct device *dev,
int cable_type)
{
struct regulator *pma8084_lvs2;
int rc = 0;
current_cable_type = cable_type;
if (current_cable_type == POWER_SUPPLY_TYPE_BATTERY)
{
pr_info("%s set lvs2 off\n", __func__);
pma8084_lvs2 = regulator_get(dev, "8084_lvs2");
if (IS_ERR(pma8084_lvs2)) {
pr_err("%s: pma8084_lvs2 regulator_get fail\n", __func__);
return;
} else {
rc = regulator_disable(pma8084_lvs2);
if (rc) {
pr_err("%s: error for disabling regulator VF_1P8\n", __func__);
}
}
}
else
{
pr_info("%s set lvs2 on\n", __func__);
pma8084_lvs2 = regulator_get(dev, "8084_lvs2");
if (IS_ERR(pma8084_lvs2)) {
pr_err("%s: pma8084_lvs2 regulator_get fail\n", __func__);
return;
} else {
if (!regulator_is_enabled(pma8084_lvs2)) {
rc = regulator_enable(pma8084_lvs2);
if (rc) {
pr_err("%s: error for enabling regulator VF_1P8\n", __func__);
}
}
}
}
regulator_put(pma8084_lvs2);
}
int sec_bat_check_cable_callback(struct sec_battery_info *battery)
{
union power_supply_propval value;
msleep(750);
if (battery->pdata->ta_irq_gpio == 0) {
pr_err("%s: ta_int_gpio is 0 or not assigned yet(cable_type(%d))\n",
__func__, current_cable_type);
} else {
if (battery->cable_type == POWER_SUPPLY_TYPE_BATTERY &&
!gpio_get_value_cansleep(battery->pdata->ta_irq_gpio)) {
pr_info("%s : VBUS IN\n", __func__);
value.intval = POWER_SUPPLY_TYPE_UARTOFF;
psy_do_property("battery", set, POWER_SUPPLY_PROP_ONLINE, value);
current_cable_type = POWER_SUPPLY_TYPE_UARTOFF;
return POWER_SUPPLY_TYPE_UARTOFF;
}
if ((battery->cable_type == POWER_SUPPLY_TYPE_UARTOFF ||
battery->cable_type == POWER_SUPPLY_TYPE_CARDOCK) &&
gpio_get_value_cansleep(battery->pdata->ta_irq_gpio)) {
pr_info("%s : VBUS OUT\n", __func__);
value.intval = POWER_SUPPLY_TYPE_BATTERY;
psy_do_property("battery", set, POWER_SUPPLY_PROP_ONLINE, value);
current_cable_type = POWER_SUPPLY_TYPE_BATTERY;
return POWER_SUPPLY_TYPE_BATTERY;
}
}
return current_cable_type;
}
void board_battery_init(struct platform_device *pdev, struct sec_battery_info *battery)
{
if ((!battery->pdata->temp_adc_table) &&
(battery->pdata->thermal_source == SEC_BATTERY_THERMAL_SOURCE_ADC)) {
pr_info("%s : assign temp adc table\n", __func__);
battery->pdata->temp_adc_table = temp_table;
battery->pdata->temp_amb_adc_table = temp_table;
battery->pdata->temp_adc_table_size = sizeof(temp_table)/sizeof(sec_bat_adc_table_data_t);
battery->pdata->temp_amb_adc_table_size = sizeof(temp_table)/sizeof(sec_bat_adc_table_data_t);
}
if ((!battery->pdata->chg_temp_adc_table) &&
(battery->pdata->chg_temp_check)) {
pr_info("%s : assign chg temp adc table\n", __func__);
battery->pdata->chg_temp_adc_table = chg_temp_table;
battery->pdata->chg_temp_adc_table_size = sizeof(chg_temp_table)/sizeof(sec_bat_adc_table_data_t);
}
battery->pdata->event_check = true;
battery->pdata->temp_high_threshold_event = TEMP_HIGH_THRESHOLD_EVENT;
battery->pdata->temp_high_recovery_event = TEMP_HIGH_RECOVERY_EVENT;
battery->pdata->temp_low_threshold_event = TEMP_LOW_THRESHOLD_EVENT;
battery->pdata->temp_low_recovery_event = TEMP_LOW_RECOVERY_EVENT;
battery->pdata->temp_high_threshold_normal = TEMP_HIGH_THRESHOLD_NORMAL;
battery->pdata->temp_high_recovery_normal = TEMP_HIGH_RECOVERY_NORMAL;
battery->pdata->temp_low_threshold_normal = TEMP_LOW_THRESHOLD_NORMAL;
battery->pdata->temp_low_recovery_normal = TEMP_LOW_RECOVERY_NORMAL;
battery->pdata->temp_high_threshold_lpm = TEMP_HIGH_THRESHOLD_LPM;
battery->pdata->temp_high_recovery_lpm = TEMP_HIGH_RECOVERY_LPM;
battery->pdata->temp_low_threshold_lpm = TEMP_LOW_THRESHOLD_LPM;
battery->pdata->temp_low_recovery_lpm = TEMP_LOW_RECOVERY_LPM;
adc_init_type(pdev, battery);
}
void board_fuelgauge_init(void *data)
{
#if IS_ENABLED(CONFIG_FUELGAUGE_MAX17048)
#if defined(CONFIG_SEC_LENTIS_PROJECT)
if (system_rev >= 0x06) {
#endif
struct max17048_fuelgauge_data *fuelgauge =
(struct max17048_fuelgauge_data *)data;
if (!fuelgauge->battery_data) {
pr_info("%s : assign battery data\n", __func__);
fuelgauge->battery_data = max17048_battery_data;
pr_info("%s: RCOMP0: 0x%x, RCOMP_charging: 0x%x, "
"temp_cohot: %d, temp_cocold: %d, "
"is_using_model_data: %d, type_str: %s\n", __func__ ,
fuelgauge->battery_data->RCOMP0,
fuelgauge->battery_data->RCOMP_charging,
fuelgauge->battery_data->temp_cohot,
fuelgauge->battery_data->temp_cocold,
fuelgauge->battery_data->is_using_model_data,
fuelgauge->battery_data->type_str
);
}
#if defined(CONFIG_SEC_LENTIS_PROJECT)
} else {
struct max77823_fuelgauge_data *fuelgauge =
(struct max77823_fuelgauge_data *)data;
if (!fuelgauge->battery_data) {
pr_info("%s : assign battery data\n", __func__);
fuelgauge->battery_data = max77823_battery_data;
}
}
#endif
#elif IS_ENABLED(CONFIG_FUELGAUGE_MAX77823) || IS_ENABLED(CONFIG_FUELGAUGE_MAX77843)
struct max77823_fuelgauge_data *fuelgauge =
(struct max77823_fuelgauge_data *)data;
if (!fuelgauge->battery_data) {
pr_info("%s : assign battery data\n", __func__);
fuelgauge->battery_data = max77823_battery_data;
}
#endif
}
EXPORT_SYMBOL_GPL(board_fuelgauge_init);
void cable_initial_check(struct sec_battery_info *battery)
{
union power_supply_propval value;
pr_info("%s : current_cable_type : (%d)\n", __func__, current_cable_type);
if (POWER_SUPPLY_TYPE_BATTERY != current_cable_type) {
value.intval = current_cable_type;
psy_do_property("battery", set,
POWER_SUPPLY_PROP_ONLINE, value);
} else {
psy_do_property(battery->pdata->charger_name, get,
POWER_SUPPLY_PROP_ONLINE, value);
if (value.intval == POWER_SUPPLY_TYPE_WIRELESS) {
value.intval = 1;
psy_do_property("wireless", set,
POWER_SUPPLY_PROP_ONLINE, value);
}
}
}
EXPORT_SYMBOL_GPL(cable_initial_check);