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"
|
|
|
|
#include "pcf50606.h"
|
2002-07-04 16:09:23 +00:00
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
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
|
|
|
|
|
|
|
|
static int fmstatus = 0;
|
|
|
|
|
|
|
|
void radio_set_status(int status)
|
|
|
|
{
|
|
|
|
fmstatus = status;
|
|
|
|
#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
|
|
|
|
}
|
|
|
|
|
|
|
|
int radio_get_status(void)
|
|
|
|
{
|
|
|
|
return fmstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-06-18 21:16:51 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2005-11-16 23:42:19 +00:00
|
|
|
#if IRIVER_H100_SERIES
|
|
|
|
or_l(0x00080000, &GPIO1_OUT);
|
|
|
|
or_l(0x00080000, &GPIO1_ENABLE);
|
|
|
|
or_l(0x00080000, &GPIO1_FUNCTION);
|
2005-06-02 21:40:52 +00:00
|
|
|
|
2005-07-19 07:04:40 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
/* The boot loader controls the power */
|
2005-11-16 23:42:19 +00:00
|
|
|
ide_power_enable(true);
|
2005-06-04 23:42:02 +00:00
|
|
|
#endif
|
2005-07-12 07:25:01 +00:00
|
|
|
or_l(0x80000000, &GPIO_ENABLE);
|
|
|
|
or_l(0x80000000, &GPIO_FUNCTION);
|
2005-04-11 11:17:31 +00:00
|
|
|
#ifdef HAVE_SPDIF_POWER
|
2005-07-01 09:42:39 +00:00
|
|
|
spdif_power_enable(false);
|
2005-04-11 11:17:31 +00:00
|
|
|
#endif
|
2005-11-16 23:42:19 +00:00
|
|
|
#elif defined(IRIVER_H300_SERIES)
|
2005-11-14 20:49:21 +00:00
|
|
|
pcf50606_init();
|
|
|
|
#endif
|
2005-11-07 23:07:19 +00:00
|
|
|
#elif CONFIG_CPU == PP5020
|
2005-11-11 17:51:35 +00:00
|
|
|
/* TODO: Implement power_init() */
|
2004-12-20 00:45:23 +00:00
|
|
|
#else
|
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
|
2003-08-25 08:57:49 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
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
|
2004-12-20 00:45:23 +00:00
|
|
|
#endif
|
2003-08-25 08:57:49 +00:00
|
|
|
}
|
|
|
|
|
2002-07-04 16:09:23 +00:00
|
|
|
bool charger_inserted(void)
|
2004-10-13 23:21:57 +00:00
|
|
|
{
|
2005-06-18 21:16:51 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2004-12-20 00:45:23 +00:00
|
|
|
return (GPIO1_READ & 0x00400000)?true:false;
|
2005-02-03 23:10:01 +00:00
|
|
|
#elif defined(GMINI_ARCH)
|
|
|
|
return (P7 & 0x80) == 0;
|
2004-12-20 00:45:23 +00:00
|
|
|
#else
|
2004-10-13 23:21:57 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2003-01-16 15:11:29 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2003-02-13 21:45:19 +00:00
|
|
|
/* Recorder */
|
|
|
|
return adc_read(ADC_EXT_POWER) > 0x100;
|
|
|
|
#else
|
2003-01-16 15:11:29 +00:00
|
|
|
#ifdef HAVE_FMADC
|
2004-02-05 13:44:04 +00:00
|
|
|
/* FM or V2, can also charge from the USB port */
|
|
|
|
return (adc_read(ADC_CHARGE_REGULATOR) < 0x1FF) ||
|
|
|
|
(adc_read(ADC_USB_POWER) < 0x1FF);
|
2003-01-16 15:11:29 +00:00
|
|
|
#else
|
2003-02-13 21:45:19 +00:00
|
|
|
/* Player */
|
2002-07-04 16:09:23 +00:00
|
|
|
return (PADR & 1) == 0;
|
2003-02-13 21:45:19 +00:00
|
|
|
#endif /* HAVE_FMADC */
|
|
|
|
#endif /* HAVE_CHARGE_CTRL */
|
2004-10-13 23:21:57 +00:00
|
|
|
#else
|
|
|
|
/* Ondio */
|
|
|
|
return false;
|
|
|
|
#endif /* HAVE_CHARGING */
|
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
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
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
|
|
|
|
2005-04-11 11:17:31 +00:00
|
|
|
#ifdef HAVE_SPDIF_POWER
|
|
|
|
void spdif_power_enable(bool on)
|
|
|
|
{
|
2005-07-12 07:25:01 +00:00
|
|
|
or_l(0x01000000, &GPIO1_FUNCTION);
|
|
|
|
or_l(0x01000000, &GPIO1_ENABLE);
|
2005-07-12 04:53:14 +00:00
|
|
|
|
|
|
|
#ifdef SPDIF_POWER_INVERTED
|
|
|
|
if(!on)
|
|
|
|
#else
|
2005-04-11 11:17:31 +00:00
|
|
|
if(on)
|
2005-07-12 04:53:14 +00:00
|
|
|
#endif
|
2005-07-12 07:25:01 +00:00
|
|
|
and_l(~0x01000000, &GPIO1_OUT);
|
2005-04-11 11:17:31 +00:00
|
|
|
else
|
2005-07-12 07:25:01 +00:00
|
|
|
or_l(0x01000000, &GPIO1_OUT);
|
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;
|
|
|
|
|
2005-06-18 21:16:51 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2004-12-20 00:45:23 +00:00
|
|
|
if(on)
|
2005-07-12 07:25:01 +00:00
|
|
|
and_l(~0x80000000, &GPIO_OUT);
|
2004-12-20 00:45:23 +00:00
|
|
|
else
|
2005-07-12 07:25:01 +00:00
|
|
|
or_l(0x80000000, &GPIO_OUT);
|
2005-11-07 23:07:19 +00:00
|
|
|
#elif CONFIG_CPU == PP5020
|
2005-11-11 17:51:35 +00:00
|
|
|
/* TODO: Implement ide_power_enable() */
|
2005-02-03 23:10:01 +00:00
|
|
|
#elif defined(GMINI_ARCH)
|
2005-02-22 09:55:40 +00:00
|
|
|
if(on)
|
|
|
|
P1 |= 0x08;
|
2005-02-03 23:10:01 +00:00
|
|
|
else
|
2005-02-22 09:55:40 +00:00
|
|
|
P1 &= ~0x08;
|
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)
|
|
|
|
{
|
2005-06-18 21:16:51 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2004-12-20 01:34:45 +00:00
|
|
|
return (GPIO_OUT & 0x80000000)?false:true;
|
2005-11-07 23:07:19 +00:00
|
|
|
#elif CONFIG_CPU == PP5020
|
2005-11-11 17:51:35 +00:00
|
|
|
/* TODO: Implement ide_powered() */
|
2005-11-07 23:07:19 +00:00
|
|
|
return true;
|
2005-02-03 23:10:01 +00:00
|
|
|
#elif defined(GMINI_ARCH)
|
2005-02-22 09:55:40 +00:00
|
|
|
return (P1 & 0x08?true: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);
|
2005-06-18 21:16:51 +00:00
|
|
|
#if CONFIG_CPU == MCF5249
|
2005-07-12 07:25:01 +00:00
|
|
|
and_l(~0x00080000, &GPIO1_OUT);
|
2005-11-07 23:07:19 +00:00
|
|
|
#elif CONFIG_CPU == PP5020
|
2005-11-11 17:51:35 +00:00
|
|
|
/* TODO: Implement power_off() */
|
2005-02-03 23:10:01 +00:00
|
|
|
#elif defined(GMINI_ARCH)
|
|
|
|
P1 &= ~1;
|
|
|
|
P1CON &= ~1;
|
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
|
2002-09-25 19:28:01 +00:00
|
|
|
while(1);
|
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 */
|