2007-09-20 04:46:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-09-22 15:43:38 +00:00
|
|
|
* $Id$
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "power.h"
|
|
|
|
#include "pcf50606.h"
|
|
|
|
#include "backlight.h"
|
|
|
|
#include "backlight-target.h"
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
|
|
|
void power_init(void)
|
|
|
|
{
|
|
|
|
/* Initialize IDE power pin */
|
2007-09-25 01:44:57 +00:00
|
|
|
/* set GIO17 (ATA power) on and output */
|
2007-09-20 04:46:41 +00:00
|
|
|
ide_power_enable(true);
|
2007-09-25 01:44:57 +00:00
|
|
|
IO_GIO_DIR1&=~(1<<1);
|
2007-09-20 04:46:41 +00:00
|
|
|
/* Charger detect */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool charger_inserted(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns true if the unit is charging the batteries. */
|
|
|
|
bool charging_state(void) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
|
|
|
if (on)
|
2007-09-25 01:44:57 +00:00
|
|
|
IO_GIO_BITCLR1=(1<<1);
|
2007-09-20 04:46:41 +00:00
|
|
|
else
|
2007-09-25 01:44:57 +00:00
|
|
|
IO_GIO_BITSET1=(1<<1);
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
2007-09-25 01:44:57 +00:00
|
|
|
return !(IO_GIO_BITSET1&(1<<1));
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void power_off(void)
|
|
|
|
{
|
|
|
|
/* turn off backlight and wait for 1 second */
|
|
|
|
__backlight_off();
|
|
|
|
sleep(HZ);
|
2007-09-25 01:44:57 +00:00
|
|
|
/* Hard shutdown */
|
|
|
|
IO_GIO_BITSET1|=1<<10;
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* SIMULATOR */
|
|
|
|
|
|
|
|
bool charger_inserted(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void charger_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
void power_off(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|