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"
|
|
|
|
|
|
|
|
|
2007-02-18 08:46:12 +00:00
|
|
|
#if CONFIG_TUNER
|
2006-10-30 08:56:06 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
|
|
|
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
|
2006-10-30 08:56:06 +00:00
|
|
|
bool charger_inserted(void)
|
|
|
|
{
|
|
|
|
return (GPIO1_READ & 0x00400000)?true:false;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
|
|
|
|
/* Returns true if the unit is charging the batteries. */
|
|
|
|
bool charging_state(void) {
|
|
|
|
return (GPIO_READ & 0x00800000)?true:false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SIMULATOR */
|