2007-09-22 23:17:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2007-09-30 16:29:21 +00:00
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
2007-09-22 23:17:52 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-09-22 23:17:52 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2007-09-30 16:29:21 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "powermgmt.h"
|
2007-10-22 15:28:40 +00:00
|
|
|
#include "tsc2100.h"
|
|
|
|
#include "kernel.h"
|
2007-09-22 23:17:52 +00:00
|
|
|
|
2010-04-25 16:11:49 +00:00
|
|
|
unsigned short current_bat2 = 4100;
|
|
|
|
unsigned short current_aux = 4100;
|
|
|
|
static unsigned short current_voltage = 4100;
|
|
|
|
|
|
|
|
/* This specifies the battery level that writes are still safe */
|
2007-09-30 16:29:21 +00:00
|
|
|
const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
|
|
|
|
{
|
2010-04-25 16:11:49 +00:00
|
|
|
3600
|
2007-09-30 16:29:21 +00:00
|
|
|
};
|
2007-09-22 23:17:52 +00:00
|
|
|
|
2010-04-25 16:11:49 +00:00
|
|
|
/* Below this the player cannot be considered to operate reliably */
|
2007-09-30 16:29:21 +00:00
|
|
|
const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] =
|
|
|
|
{
|
2010-04-25 16:11:49 +00:00
|
|
|
3580
|
2007-09-30 16:29:21 +00:00
|
|
|
};
|
|
|
|
|
2009-05-04 04:14:52 +00:00
|
|
|
/* Right now these are linear translations, it would be good to model them
|
|
|
|
* appropriate to the actual battery curve.
|
|
|
|
*/
|
|
|
|
|
2009-05-02 23:25:55 +00:00
|
|
|
/* 6.10 format */
|
|
|
|
|
2007-09-30 16:29:21 +00:00
|
|
|
/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
|
|
|
|
const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
|
|
|
|
{
|
2010-04-25 16:11:49 +00:00
|
|
|
{ 3600, 3650, 3700, 3750, 3800, 3850, 3900, 3950, 4000, 4090, 4150 },
|
2007-09-30 16:29:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
|
|
|
|
const unsigned short percent_to_volt_charge[11] =
|
|
|
|
{
|
2009-05-04 04:14:52 +00:00
|
|
|
4000, 4105, 4210, 4315, 4420, 4525, 4630, 4735, 4840, 4945, 5050,
|
2007-09-30 16:29:21 +00:00
|
|
|
};
|
2007-10-22 15:28:40 +00:00
|
|
|
|
2007-09-30 16:29:21 +00:00
|
|
|
/* Returns battery voltage from ADC [millivolts] */
|
|
|
|
unsigned int battery_adc_voltage(void)
|
|
|
|
{
|
2009-05-02 23:25:55 +00:00
|
|
|
short bat1, bat2, aux;
|
2007-10-22 15:28:40 +00:00
|
|
|
static unsigned last_tick = 0;
|
2009-05-02 23:25:55 +00:00
|
|
|
short tsadc;
|
|
|
|
|
2009-12-12 18:36:52 +00:00
|
|
|
tsadc=tsc2100_readreg(TSADC_PAGE, TSADC_ADDRESS);
|
|
|
|
|
|
|
|
/* Set the TSC2100 to read voltages if not busy with pen */
|
|
|
|
if(!(tsadc & TSADC_PSTCM))
|
2007-10-22 15:28:40 +00:00
|
|
|
{
|
2009-12-12 18:36:52 +00:00
|
|
|
tsc2100_set_mode(true, 0x0B);
|
|
|
|
last_tick = current_tick;
|
2007-10-22 15:28:40 +00:00
|
|
|
}
|
2010-04-25 16:11:49 +00:00
|
|
|
|
|
|
|
if(tsc2100_read_volt(&bat1, &bat2, &aux))
|
|
|
|
{
|
|
|
|
/* Calculation was:
|
|
|
|
* (val << 10) / 4096 * 6 * 2.5
|
|
|
|
*/
|
|
|
|
current_voltage = (short)( (int) (bat1 * 15) >> 2 );
|
|
|
|
current_bat2 = (short)( (bat2 * 15) >> 2 );
|
|
|
|
current_aux = (short)( (aux * 15) >> 2 );
|
|
|
|
}
|
2009-04-28 05:07:25 +00:00
|
|
|
|
2007-10-22 15:28:40 +00:00
|
|
|
return current_voltage;
|
2007-09-30 16:29:21 +00:00
|
|
|
}
|
2007-09-22 23:17:52 +00:00
|
|
|
|