| /* Copyright (c) 2011-2012, Code Aurora Forum. 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. |
| */ |
| |
| #include <linux/mfd/pm8xxx/pm8921-bms.h> |
| |
| static struct single_row_lut palladium_1500_fcc_temp = { |
| .x = {-30, -20, -10, 0, 10, 25, 40, 60}, |
| .y = {1103, 1179, 1284, 1330, 1420, 1511, 1541, 1571}, |
| .cols = 8, |
| }; |
| |
| static struct single_row_lut palladium_1500_fcc_sf = { |
| .x = {100, 200, 300, 400, 500}, |
| .y = {97, 93, 93, 90, 87}, |
| .cols = 5, |
| }; |
| |
| static struct pc_sf_lut palladium_1500_pc_sf = { |
| .rows = 10, |
| .cols = 5, |
| .cycles = {100, 200, 300, 400, 500}, |
| .percent = {100, 90, 80, 70, 60, 50, 40, 30, 20, 10}, |
| .sf = { |
| {97, 93, 93, 90, 87}, |
| {97, 93, 93, 90, 87}, |
| {98, 94, 92, 89, 86}, |
| {98, 94, 92, 89, 86}, |
| {99, 94, 92, 88, 86}, |
| {99, 95, 92, 88, 87}, |
| {99, 95, 92, 88, 87}, |
| {99, 95, 92, 88, 87}, |
| {99, 95, 92, 88, 87}, |
| {99, 95, 92, 88, 87} |
| }, |
| }; |
| |
| static struct pc_temp_ocv_lut palladium_1500_pc_temp_ocv = { |
| .rows = 29, |
| .cols = 8, |
| .temp = {-30, -20, -10, 0, 10, 25, 40, 60}, |
| .percent = {100, 95, 90, 85, 80, 75, 70, 65, 60, 55, |
| 50, 45, 40, 35, 30, 25, 20, 15, 10, 9, |
| 8, 7, 6, 5, 4, 3, 2, 1, 0 |
| }, |
| .ocv = { |
| {3673, 3814, 3945, 4025, 4106, 4176, 4218, 4260}, |
| {3613, 3751, 3880, 3959, 4038, 4107, 4149, 4190}, |
| {3573, 3710, 3837, 3916, 3994, 4062, 4103, 4144}, |
| {3534, 3670, 3796, 3873, 3951, 4019, 4059, 4099}, |
| {3491, 3625, 3749, 3826, 3902, 3969, 4009, 4049}, |
| {3464, 3597, 3721, 3796, 3872, 3939, 3978, 4018}, |
| {3436, 3568, 3691, 3766, 3841, 3907, 3946, 3985}, |
| {3407, 3537, 3659, 3733, 3808, 3873, 3912, 3951}, |
| {3377, 3507, 3627, 3701, 3775, 3840, 3878, 3917}, |
| {3355, 3484, 3604, 3677, 3751, 3815, 3853, 3891}, |
| {3339, 3467, 3586, 3659, 3732, 3796, 3834, 3872}, |
| {3324, 3452, 3570, 3643, 3716, 3780, 3818, 3855}, |
| {3312, 3440, 3558, 3630, 3703, 3766, 3804, 3842}, |
| {3303, 3430, 3548, 3620, 3692, 3756, 3793, 3831}, |
| {3297, 3424, 3541, 3614, 3686, 3749, 3787, 3824}, |
| {3288, 3414, 3531, 3603, 3675, 3738, 3776, 3813}, |
| {3272, 3398, 3514, 3586, 3658, 3720, 3757, 3795}, |
| {3240, 3365, 3480, 3551, 3622, 3684, 3721, 3758}, |
| {3224, 3348, 3463, 3533, 3604, 3666, 3702, 3739}, |
| {3221, 3344, 3459, 3530, 3600, 3662, 3695, 3728}, |
| {3216, 3340, 3454, 3525, 3595, 3657, 3686, 3715}, |
| {3212, 3335, 3449, 3520, 3590, 3652, 3677, 3703}, |
| {3203, 3326, 3440, 3510, 3580, 3642, 3664, 3686}, |
| {3185, 3307, 3420, 3490, 3560, 3621, 3639, 3657}, |
| {3176, 3298, 3411, 3481, 3550, 3611, 3626, 3640}, |
| {3151, 3272, 3384, 3453, 3522, 3583, 3593, 3604}, |
| {3106, 3225, 3335, 3446, 3472, 3531, 3538, 3545}, |
| {3021, 3217, 3245, 3417, 3429, 3435, 3439, 3442}, |
| {3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000} |
| }, |
| }; |
| |
| struct pm8921_bms_battery_data palladium_1500_data = { |
| .fcc = 1500, |
| .fcc_temp_lut = &palladium_1500_fcc_temp, |
| .fcc_sf_lut = &palladium_1500_fcc_sf, |
| .pc_temp_ocv_lut = &palladium_1500_pc_temp_ocv, |
| .pc_sf_lut = &palladium_1500_pc_sf, |
| }; |
| |
| static struct single_row_lut desay_5200_fcc_temp = { |
| .x = {-20, 0, 25, 40}, |
| .y = {5690, 5722, 5722, 5727}, |
| .cols = 4 |
| }; |
| |
| static struct single_row_lut desay_5200_fcc_sf = { |
| .x = {0}, |
| .y = {100}, |
| .cols = 1 |
| }; |
| |
| static struct pc_temp_ocv_lut desay_5200_pc_temp_ocv = { |
| .rows = 29, |
| .cols = 4, |
| .temp = {-20, 0, 25, 40}, |
| .percent = {100, 95, 90, 85, 80, 75, 70, 65, 60, 55, |
| 50, 45, 40, 35, 30, 25, 20, 15, 10, 9, 8, |
| 7, 6, 5, 4, 3, 2, 1, 0 |
| }, |
| .ocv = { |
| {4185, 4184, 4181, 4178}, |
| {4103, 4117, 4120, 4119}, |
| {4044, 4067, 4074, 4073}, |
| {3987, 4019, 4031, 4030}, |
| {3941, 3974, 3992, 3992}, |
| {3902, 3936, 3958, 3957}, |
| {3866, 3901, 3926, 3926}, |
| {3835, 3870, 3891, 3896}, |
| {3811, 3842, 3855, 3858}, |
| {3792, 3818, 3827, 3827}, |
| {3776, 3795, 3806, 3806}, |
| {3762, 3778, 3789, 3790}, |
| {3748, 3765, 3777, 3777}, |
| {3735, 3752, 3767, 3765}, |
| {3720, 3739, 3756, 3754}, |
| {3704, 3726, 3743, 3736}, |
| {3685, 3712, 3723, 3716}, |
| {3664, 3697, 3695, 3689}, |
| {3623, 3672, 3669, 3664}, |
| {3611, 3666, 3666, 3661}, |
| {3597, 3659, 3662, 3658}, |
| {3579, 3648, 3657, 3653}, |
| {3559, 3630, 3644, 3639}, |
| {3532, 3600, 3612, 3606}, |
| {3497, 3558, 3565, 3559}, |
| {3450, 3500, 3504, 3498}, |
| {3380, 3417, 3421, 3416}, |
| {3265, 3287, 3296, 3293}, |
| {3000, 3000, 3000, 3000} |
| }, |
| }; |
| |
| static struct pc_sf_lut desay_5200_pc_sf = { |
| .rows = 1, |
| .cols = 1, |
| .cycles = {0}, |
| .percent = {100}, |
| .sf = { |
| {100} |
| }, |
| }; |
| |
| struct pm8921_bms_battery_data desay_5200_data = { |
| .fcc = 5200, |
| .fcc_temp_lut = &desay_5200_fcc_temp, |
| .fcc_sf_lut = &desay_5200_fcc_sf, |
| .pc_temp_ocv_lut = &desay_5200_pc_temp_ocv, |
| .pc_sf_lut = &desay_5200_pc_sf, |
| }; |