Mark Arigo | 22e7bf3 | 2008-06-27 18:40:25 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese |
| 11 | * Revisions copyright (C) 2005 by Gerald Van Baren |
| 12 | * |
Daniel Stenberg | 2acc0ac | 2008-06-28 18:10:04 +0000 | [diff] [blame^] | 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License |
| 15 | * as published by the Free Software Foundation; either version 2 |
| 16 | * of the License, or (at your option) any later version. |
Mark Arigo | 22e7bf3 | 2008-06-27 18:40:25 +0000 | [diff] [blame] | 17 | * |
| 18 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 19 | * KIND, either express or implied. |
| 20 | * |
| 21 | ****************************************************************************/ |
| 22 | |
| 23 | #include "config.h" |
| 24 | #include "adc.h" |
| 25 | #include "powermgmt.h" |
| 26 | |
| 27 | const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = |
| 28 | { |
| 29 | 3450 |
| 30 | }; |
| 31 | |
| 32 | const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] = |
| 33 | { |
| 34 | 3400 |
| 35 | }; |
| 36 | |
| 37 | /* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */ |
| 38 | const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] = |
| 39 | { |
| 40 | { 3480, 3550, 3590, 3610, 3630, 3650, 3700, 3760, 3800, 3910, 3990 }, |
| 41 | }; |
| 42 | |
| 43 | #if CONFIG_CHARGING |
| 44 | /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ |
| 45 | const unsigned short percent_to_volt_charge[11] = |
| 46 | { |
| 47 | 3480, 3550, 3590, 3610, 3630, 3650, 3700, 3760, 3800, 3910, 3990 |
| 48 | }; |
| 49 | #endif /* CONFIG_CHARGING */ |
| 50 | |
| 51 | #define BATTERY_SCALE_FACTOR 6003 |
| 52 | /* full-scale ADC readout (2^10) in millivolt */ |
| 53 | |
| 54 | /* adc readout |
| 55 | * max with charger connected: 690 |
| 56 | * max fully charged: 682 |
| 57 | * min just before shutdown: 570 |
| 58 | */ |
| 59 | |
| 60 | /* Returns battery voltage from ADC [millivolts] */ |
| 61 | unsigned int battery_adc_voltage(void) |
| 62 | { |
| 63 | return (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) >> 10; |
| 64 | } |