2002-07-04 16:09:23 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
2004-12-20 00:45:23 +00:00
|
|
|
#include "cpu.h"
|
|
|
|
#include <stdbool.h>
|
2002-07-04 16:09:23 +00:00
|
|
|
#include "adc.h"
|
2002-09-25 19:28:01 +00:00
|
|
|
#include "kernel.h"
|
2003-11-06 01:34:50 +00:00
|
|
|
#include "system.h"
|
2002-07-04 16:09:23 +00:00
|
|
|
#include "power.h"
|
2004-11-20 14:34:17 +00:00
|
|
|
#include "hwcompat.h"
|
2005-11-14 20:49:21 +00:00
|
|
|
#include "logf.h"
|
2005-12-21 23:32:19 +00:00
|
|
|
#include "pcf50605.h"
|
2005-11-14 20:49:21 +00:00
|
|
|
#include "pcf50606.h"
|
2006-01-27 01:19:14 +00:00
|
|
|
#include "usb.h"
|
2002-07-04 16:09:23 +00:00
|
|
|
|
2006-06-06 22:23:52 +00:00
|
|
|
#if CONFIG_CHARGING == CHARGING_CONTROL
|
2003-08-25 08:57:49 +00:00
|
|
|
bool charger_enabled;
|
2002-08-06 10:50:50 +00:00
|
|
|
#endif
|
|
|
|
|
2004-10-17 08:53:18 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_TUNER
|
|
|
|
|
2005-11-19 19:23:44 +00:00
|
|
|
static bool powered = false;
|
2004-10-17 08:53:18 +00:00
|
|
|
|
2006-08-28 22:38:41 +00:00
|
|
|
bool radio_powered(void)
|
2004-10-17 08:53:18 +00:00
|
|
|
{
|
2005-11-19 19:23:44 +00:00
|
|
|
return powered;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool radio_power(bool status)
|
|
|
|
{
|
|
|
|
bool old_status = powered;
|
|
|
|
powered = status;
|
2004-10-17 08:53:18 +00:00
|
|
|
#ifdef HAVE_TUNER_PWR_CTRL
|
|
|
|
if (status)
|
|
|
|
{
|
2004-10-17 09:58:05 +00:00
|
|
|
and_b(~0x04, &PADRL); /* drive PA2 low for tuner enable */
|
2004-10-17 08:53:18 +00:00
|
|
|
sleep(1); /* let the voltage settle */
|
|
|
|
}
|
|
|
|
else
|
2004-10-17 09:58:05 +00:00
|
|
|
or_b(0x04, &PADRL); /* drive PA2 high for tuner disable */
|
2004-10-17 08:53:18 +00:00
|
|
|
#endif
|
2005-11-19 19:23:44 +00:00
|
|
|
return old_status;
|
2004-10-17 08:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef CONFIG_TUNER */
|
|
|
|
|
2002-07-04 16:09:23 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
2003-08-25 08:57:49 +00:00
|
|
|
void power_init(void)
|
|
|
|
{
|
2005-05-07 22:29:35 +00:00
|
|
|
#ifdef HAVE_POWEROFF_ON_PB5
|
|
|
|
PBCR2 &= ~0x0c00; /* GPIO for PB5 */
|
|
|
|
or_b(0x20, &PBIORL);
|
|
|
|
or_b(0x20, &PBDRL); /* hold power */
|
|
|
|
#endif
|
2006-06-06 22:23:52 +00:00
|
|
|
#if CONFIG_CHARGING == CHARGING_CONTROL
|
2005-05-07 22:29:35 +00:00
|
|
|
PBCR2 &= ~0x0c00; /* GPIO for PB5 */
|
2003-11-07 12:15:24 +00:00
|
|
|
or_b(0x20, &PBIORL); /* Set charging control bit to output */
|
2003-11-06 01:34:50 +00:00
|
|
|
charger_enable(false); /* Default to charger OFF */
|
2003-08-25 08:57:49 +00:00
|
|
|
#endif
|
2004-10-17 08:53:18 +00:00
|
|
|
#ifdef HAVE_TUNER_PWR_CTRL
|
2004-10-17 09:58:05 +00:00
|
|
|
PACR2 &= ~0x0030; /* GPIO for PA2 */
|
|
|
|
or_b(0x04, &PADRL); /* drive PA2 high for tuner disable */
|
|
|
|
or_b(0x04, &PAIORL); /* output for PA2 */
|
2004-10-17 08:53:18 +00:00
|
|
|
#endif
|
2003-08-25 08:57:49 +00:00
|
|
|
}
|
|
|
|
|
2006-02-07 14:46:03 +00:00
|
|
|
|
2006-06-06 22:23:52 +00:00
|
|
|
#ifdef CONFIG_CHARGING
|
2002-07-04 16:09:23 +00:00
|
|
|
bool charger_inserted(void)
|
2004-10-13 23:21:57 +00:00
|
|
|
{
|
2006-11-10 20:26:01 +00:00
|
|
|
#if CONFIG_CHARGING == CHARGING_CONTROL
|
2003-02-13 21:45:19 +00:00
|
|
|
/* Recorder */
|
|
|
|
return adc_read(ADC_EXT_POWER) > 0x100;
|
2006-01-19 19:39:51 +00:00
|
|
|
#elif defined (HAVE_FMADC)
|
2004-02-05 13:44:04 +00:00
|
|
|
/* FM or V2, can also charge from the USB port */
|
2006-03-02 13:37:51 +00:00
|
|
|
return (adc_read(ADC_CHARGE_REGULATOR) < 0x1FF);
|
2006-02-24 15:42:52 +00:00
|
|
|
#elif defined(TOSHIBA_GIGABEAT_F)
|
|
|
|
return false;
|
2006-10-05 11:17:00 +00:00
|
|
|
#else
|
2003-02-13 21:45:19 +00:00
|
|
|
/* Player */
|
2002-07-04 16:09:23 +00:00
|
|
|
return (PADR & 1) == 0;
|
2004-12-20 00:45:23 +00:00
|
|
|
#endif
|
2002-07-04 16:09:23 +00:00
|
|
|
}
|
2006-06-06 22:23:52 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
2002-07-04 16:09:23 +00:00
|
|
|
|
2006-06-06 22:23:52 +00:00
|
|
|
#if CONFIG_CHARGING == CHARGING_CONTROL
|
2002-07-04 16:09:23 +00:00
|
|
|
void charger_enable(bool on)
|
|
|
|
{
|
2005-05-08 12:56:48 +00:00
|
|
|
if(on)
|
2003-11-06 01:34:50 +00:00
|
|
|
{
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x20, &PBDRL);
|
2002-08-06 10:50:50 +00:00
|
|
|
charger_enabled = 1;
|
2003-11-06 01:34:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-11-07 12:15:24 +00:00
|
|
|
or_b(0x20, &PBDRL);
|
2002-08-06 10:50:50 +00:00
|
|
|
charger_enabled = 0;
|
|
|
|
}
|
2002-07-04 16:09:23 +00:00
|
|
|
}
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif
|
2002-07-04 16:09:23 +00:00
|
|
|
|
2006-06-06 22:23:52 +00:00
|
|
|
#if CONFIG_CHARGING == CHARGING_MONITOR
|
2006-03-13 16:11:30 +00:00
|
|
|
/* Returns true if the unit is charging the batteries. */
|
2006-01-19 07:47:34 +00:00
|
|
|
bool charging_state(void) {
|
2006-06-06 22:23:52 +00:00
|
|
|
#if CONFIG_BATTERY == BATT_LIION2200
|
|
|
|
/* We use the information from the ADC_EXT_POWER ADC channel, which
|
|
|
|
tells us the charging current from the LTC1734. When DC is
|
|
|
|
connected (either via the external adapter, or via USB), we try
|
|
|
|
to determine if it is actively charging or only maintaining the
|
|
|
|
charge. My tests show that ADC readings below about 0x80 means
|
|
|
|
that the LTC1734 is only maintaining the charge. */
|
|
|
|
return adc_read(ADC_EXT_POWER) >= 0x80;
|
2005-07-12 04:53:14 +00:00
|
|
|
#endif
|
2005-04-11 11:17:31 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-10-13 23:21:57 +00:00
|
|
|
#ifndef HAVE_MMC
|
2002-07-04 16:09:23 +00:00
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
2003-12-03 01:03:54 +00:00
|
|
|
(void)on;
|
|
|
|
|
2006-11-10 20:26:01 +00:00
|
|
|
#if defined(TOSHIBA_GIGABEAT_F)
|
2006-02-24 15:42:52 +00:00
|
|
|
/* Gigabeat TODO */
|
2005-05-08 12:56:48 +00:00
|
|
|
#else /* SH1 based archos */
|
2004-12-20 00:45:23 +00:00
|
|
|
bool touched = false;
|
2003-12-03 01:03:54 +00:00
|
|
|
#ifdef NEEDS_ATA_POWER_ON
|
2003-07-17 20:15:57 +00:00
|
|
|
if(on)
|
2003-12-03 01:03:54 +00:00
|
|
|
{
|
2004-11-20 14:17:43 +00:00
|
|
|
#ifdef ATA_POWER_PLAYERSTYLE
|
2004-12-16 22:29:01 +00:00
|
|
|
or_b(0x10, &PBDRL);
|
2004-11-20 14:17:43 +00:00
|
|
|
#else
|
2003-11-07 12:15:24 +00:00
|
|
|
or_b(0x20, &PADRL);
|
2004-11-20 14:17:43 +00:00
|
|
|
#endif
|
2004-12-16 22:29:01 +00:00
|
|
|
touched = true;
|
2003-12-03 01:03:54 +00:00
|
|
|
}
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif /* NEEDS_ATA_POWER_ON */
|
2003-12-03 01:03:54 +00:00
|
|
|
#ifdef HAVE_ATA_POWER_OFF
|
|
|
|
if(!on)
|
|
|
|
{
|
2004-11-20 14:17:43 +00:00
|
|
|
#ifdef ATA_POWER_PLAYERSTYLE
|
2004-12-16 22:29:01 +00:00
|
|
|
and_b(~0x10, &PBDRL);
|
2004-11-20 14:17:43 +00:00
|
|
|
#else
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x20, &PADRL);
|
2004-11-20 14:17:43 +00:00
|
|
|
#endif
|
2004-12-16 22:29:01 +00:00
|
|
|
touched = true;
|
2003-12-03 01:03:54 +00:00
|
|
|
}
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif /* HAVE_ATA_POWER_OFF */
|
2003-12-03 01:03:54 +00:00
|
|
|
|
|
|
|
/* late port preparation, else problems with read/modify/write
|
|
|
|
of other bits on same port, while input and floating high */
|
|
|
|
if (touched)
|
|
|
|
{
|
2004-11-20 14:17:43 +00:00
|
|
|
#ifdef ATA_POWER_PLAYERSTYLE
|
|
|
|
or_b(0x10, &PBIORL); /* PB4 is an output */
|
|
|
|
PBCR2 &= ~0x0300; /* GPIO for PB4 */
|
|
|
|
#else
|
2003-12-03 01:03:54 +00:00
|
|
|
or_b(0x20, &PAIORL); /* PA5 is an output */
|
|
|
|
PACR2 &= 0xFBFF; /* GPIO for PA5 */
|
2004-11-20 14:17:43 +00:00
|
|
|
#endif
|
2003-12-03 01:03:54 +00:00
|
|
|
}
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif /* SH1 based archos */
|
2003-12-03 01:03:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
2006-11-10 20:26:01 +00:00
|
|
|
#if defined(TOSHIBA_GIGABEAT_F)
|
2006-02-24 15:42:52 +00:00
|
|
|
return false;
|
2005-05-08 12:56:48 +00:00
|
|
|
#else /* SH1 based archos */
|
2003-12-03 01:03:54 +00:00
|
|
|
#if defined(NEEDS_ATA_POWER_ON) || defined(HAVE_ATA_POWER_OFF)
|
2004-11-20 14:17:43 +00:00
|
|
|
#ifdef ATA_POWER_PLAYERSTYLE
|
2004-12-16 22:29:01 +00:00
|
|
|
/* This is not correct for very old players, since these are unable to
|
|
|
|
* control hd power. However, driving the pin doesn't hurt, because it
|
|
|
|
* is not connected anywhere */
|
|
|
|
if ((PBCR2 & 0x0300) || !(PBIORL & 0x10)) /* not configured for output */
|
|
|
|
return false; /* would be floating low, disk off */
|
2004-11-20 14:17:43 +00:00
|
|
|
else
|
2004-12-16 22:29:01 +00:00
|
|
|
return (PBDRL & 0x10) != 0;
|
2005-05-08 12:56:48 +00:00
|
|
|
#else /* !ATA_POWER_PLAYERSTYLE */
|
2004-12-16 22:29:01 +00:00
|
|
|
if ((PACR2 & 0x0400) || !(PAIORL & 0x20)) /* not configured for output */
|
2003-12-03 18:50:19 +00:00
|
|
|
return true; /* would be floating high, disk on */
|
2003-12-03 01:03:54 +00:00
|
|
|
else
|
2004-12-16 22:29:01 +00:00
|
|
|
return (PADRL & 0x20) != 0;
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif /* !ATA_POWER_PLAYERSTYLE */
|
|
|
|
#else /* !defined(NEEDS_ATA_POWER_ON) && !defined(HAVE_ATA_POWER_OFF) */
|
2003-12-03 18:50:19 +00:00
|
|
|
return true; /* pretend always powered if not controlable */
|
2002-07-04 16:09:23 +00:00
|
|
|
#endif
|
2004-12-20 00:45:23 +00:00
|
|
|
#endif
|
2002-07-04 16:09:23 +00:00
|
|
|
}
|
2005-05-08 12:56:48 +00:00
|
|
|
#endif /* !HAVE_MMC */
|
2002-07-04 16:09:23 +00:00
|
|
|
|
2003-12-03 01:03:54 +00:00
|
|
|
|
2002-07-05 07:10:22 +00:00
|
|
|
void power_off(void)
|
|
|
|
{
|
2004-03-02 11:32:59 +00:00
|
|
|
set_irq_level(HIGHEST_IRQ_LEVEL);
|
2006-11-10 20:26:01 +00:00
|
|
|
#if defined(TOSHIBA_GIGABEAT_F)
|
2006-02-24 15:42:52 +00:00
|
|
|
/* FIXME: Can we turn the device off, or only enter sleep mode? */
|
2004-12-20 00:45:23 +00:00
|
|
|
#else
|
2003-01-21 19:37:29 +00:00
|
|
|
#ifdef HAVE_POWEROFF_ON_PBDR
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x10, &PBDRL);
|
|
|
|
or_b(0x10, &PBIORL);
|
2003-02-21 01:12:00 +00:00
|
|
|
#elif defined(HAVE_POWEROFF_ON_PB5)
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x20, &PBDRL);
|
|
|
|
or_b(0x20, &PBIORL);
|
2002-07-05 07:10:22 +00:00
|
|
|
#else
|
2004-07-14 10:06:02 +00:00
|
|
|
/* Disable the backlight */
|
|
|
|
and_b(~0x40, &PAIORH);
|
|
|
|
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x08, &PADRH);
|
|
|
|
or_b(0x08, &PAIORH);
|
2004-12-20 00:45:23 +00:00
|
|
|
#endif
|
2002-07-05 07:10:22 +00:00
|
|
|
#endif
|
2005-11-23 20:12:33 +00:00
|
|
|
while(1)
|
|
|
|
yield();
|
2002-07-05 07:10:22 +00:00
|
|
|
}
|
|
|
|
|
2002-07-04 16:09:23 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
bool charger_inserted(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void charger_enable(bool on)
|
|
|
|
{
|
2004-10-13 23:21:57 +00:00
|
|
|
(void)on;
|
2002-07-04 16:09:23 +00:00
|
|
|
}
|
|
|
|
|
2002-07-05 07:10:22 +00:00
|
|
|
void power_off(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-07-20 00:08:47 +00:00
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
2004-10-13 23:21:57 +00:00
|
|
|
(void)on;
|
2003-07-20 00:08:47 +00:00
|
|
|
}
|
|
|
|
|
2005-04-11 11:17:31 +00:00
|
|
|
#ifdef HAVE_SPDIF_POWER
|
|
|
|
void spdif_power_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-07-04 16:09:23 +00:00
|
|
|
#endif /* SIMULATOR */
|