2006-10-30 08:56:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
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.
|
2006-10-30 08:56:06 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "power.h"
|
|
|
|
#include "pcf50606.h"
|
2008-12-03 19:54:25 +00:00
|
|
|
#include "usb.h"
|
|
|
|
#include "logf.h"
|
2006-10-30 08:56:06 +00:00
|
|
|
|
|
|
|
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2007-07-14 11:20:31 +00:00
|
|
|
bool tuner_power(bool status)
|
2006-10-30 08:56:06 +00:00
|
|
|
{
|
2007-08-14 22:06:23 +00:00
|
|
|
(void)status;
|
|
|
|
return true;
|
2006-10-30 08:56:06 +00:00
|
|
|
}
|
2007-02-18 08:46:12 +00:00
|
|
|
#endif /* #if CONFIG_TUNER */
|
2006-10-30 08:56:06 +00:00
|
|
|
|
|
|
|
void power_init(void)
|
|
|
|
{
|
|
|
|
or_l(0x00080000, &GPIO1_OUT);
|
|
|
|
or_l(0x00080000, &GPIO1_ENABLE);
|
|
|
|
or_l(0x00080000, &GPIO1_FUNCTION);
|
|
|
|
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
/* The boot loader controls the power */
|
|
|
|
ide_power_enable(true);
|
|
|
|
#endif
|
|
|
|
or_l(0x80000000, &GPIO_ENABLE);
|
|
|
|
or_l(0x80000000, &GPIO_FUNCTION);
|
|
|
|
pcf50606_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2008-12-03 19:54:25 +00:00
|
|
|
unsigned int power_input_status(void)
|
|
|
|
{
|
|
|
|
unsigned int status = POWER_INPUT_NONE;
|
|
|
|
|
|
|
|
if (GPIO1_READ & 0x00400000)
|
|
|
|
status |= POWER_INPUT_MAIN_CHARGER;
|
|
|
|
|
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
if (usb_detect() == USB_INSERTED && pcf50606_usb_charging_enabled())
|
|
|
|
status |= POWER_INPUT_USB_CHARGER;
|
|
|
|
/* CHECK: Can the device be powered from USB w/o charging it? */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return status;
|
2006-10-30 08:56:06 +00:00
|
|
|
}
|
2008-12-03 19:54:25 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
bool usb_charging_enable(bool on)
|
|
|
|
{
|
|
|
|
bool rc = false;
|
|
|
|
int irqlevel;
|
|
|
|
logf("usb_charging_enable(%s)\n", on ? "on" : "off" );
|
|
|
|
irqlevel = disable_irq_save();
|
|
|
|
pcf50606_set_usb_charging(on);
|
|
|
|
rc = on;
|
|
|
|
restore_irq(irqlevel);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_USB_POWER */
|
|
|
|
|
2006-10-30 08:56:06 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
|
|
|
|
/* Returns true if the unit is charging the batteries. */
|
2008-12-03 19:54:25 +00:00
|
|
|
bool charging_state(void)
|
|
|
|
{
|
2006-10-30 08:56:06 +00:00
|
|
|
return (GPIO_READ & 0x00800000)?true:false;
|
|
|
|
}
|
|
|
|
|
2008-12-03 19:54:25 +00:00
|
|
|
bool usb_charging_enabled(void)
|
|
|
|
{
|
|
|
|
bool rc = false;
|
|
|
|
/* TODO: read the state of the GPOOD2 register...
|
|
|
|
* (this also means to set the irq level here) */
|
|
|
|
rc = pcf50606_usb_charging_enabled();
|
|
|
|
|
|
|
|
logf("usb charging %s", rc ? "enabled" : "disabled" );
|
|
|
|
return rc;
|
|
|
|
}
|
2006-10-30 08:56:06 +00:00
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
|
|
|
if(on)
|
|
|
|
and_l(~0x80000000, &GPIO_OUT);
|
|
|
|
else
|
|
|
|
or_l(0x80000000, &GPIO_OUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
|
|
|
return (GPIO_OUT & 0x80000000)?false:true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void power_off(void)
|
|
|
|
{
|
2007-03-07 06:23:02 +00:00
|
|
|
set_irq_level(DISABLE_INTERRUPTS);
|
2006-10-30 08:56:06 +00:00
|
|
|
and_l(~0x00080000, &GPIO1_OUT);
|
|
|
|
asm("halt");
|
2008-03-26 01:50:41 +00:00
|
|
|
while(1);
|
2006-10-30 08:56:06 +00:00
|
|
|
}
|