2008-06-21 15:18:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2008-06-21 16:07:59 +00:00
|
|
|
* $Id$
|
2008-06-21 15:18:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Dave Chapman
|
|
|
|
*
|
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.
|
2008-06-21 15:18:36 +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"
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
|
|
|
void power_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void power_off(void)
|
|
|
|
{
|
2008-07-06 21:32:59 +00:00
|
|
|
|
|
|
|
//sleep(HZ/1000); /* 10ms */
|
|
|
|
//lcd_send_command(0x02);
|
|
|
|
|
|
|
|
//sleep(HZ/1000); /* 10ms */
|
|
|
|
//lcd_send_command(0x00);
|
|
|
|
|
|
|
|
//sleep(HZ/1000); /* 10ms */
|
|
|
|
sleep(HZ/1000); /* 10ms */
|
|
|
|
|
|
|
|
// From MAIN.c
|
|
|
|
GPIOB &= ~(0x04);
|
|
|
|
//GPIOD &= ~(0x80|0x40);
|
|
|
|
|
|
|
|
|
2008-06-21 15:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* SIMULATOR */
|
|
|
|
|
|
|
|
bool charger_inserted(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void charger_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SIMULATOR */
|