2006-02-23 15:24:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 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-02-23 15:24:04 +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"
|
2006-09-17 09:19:50 +00:00
|
|
|
#include "lcd-remote-target.h"
|
2006-02-23 15:24:04 +00:00
|
|
|
|
|
|
|
void power_init(void)
|
|
|
|
{
|
|
|
|
/* Charger detect */
|
|
|
|
and_l(~0x01000000, &GPIO1_ENABLE);
|
|
|
|
or_l(0x01000000, &GPIO1_FUNCTION);
|
|
|
|
|
|
|
|
pcf50606_init();
|
|
|
|
}
|
|
|
|
|
2008-12-03 19:54:25 +00:00
|
|
|
unsigned int power_input_status(void)
|
|
|
|
{
|
|
|
|
return (GPIO1_READ & 0x01000000) ?
|
|
|
|
POWER_INPUT_MAIN_CHARGER : POWER_INPUT_NONE;
|
2006-02-23 15:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
2006-02-27 08:47:18 +00:00
|
|
|
/* GPOOD3 */
|
2008-03-26 01:50:41 +00:00
|
|
|
int level = disable_irq_save();
|
2008-03-17 23:47:38 +00:00
|
|
|
pcf50606_write(0x3c, on ? 0x07 : 0x00);
|
2008-03-26 01:50:41 +00:00
|
|
|
restore_irq(level);
|
2006-02-23 15:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
2008-03-26 01:50:41 +00:00
|
|
|
int level = disable_irq_save();
|
2008-03-17 23:47:38 +00:00
|
|
|
int value = pcf50606_read(0x3c);
|
2008-03-26 01:50:41 +00:00
|
|
|
restore_irq(level);
|
2008-03-17 23:47:38 +00:00
|
|
|
return (value & 0x07) != 0;
|
2006-02-23 15:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void power_off(void)
|
|
|
|
{
|
2006-09-17 09:19:50 +00:00
|
|
|
lcd_remote_poweroff();
|
2007-03-07 06:23:02 +00:00
|
|
|
set_irq_level(DISABLE_INTERRUPTS);
|
2006-08-10 13:47:22 +00:00
|
|
|
and_l(~0x00000008, &GPIO_OUT); /* Set KEEPACT low */
|
|
|
|
asm("halt");
|
2006-02-23 15:24:04 +00:00
|
|
|
}
|
|
|
|
|
2007-07-14 11:20:31 +00:00
|
|
|
bool tuner_power(bool status)
|
2006-07-21 09:24:17 +00:00
|
|
|
{
|
2007-08-14 22:06:23 +00:00
|
|
|
(void)status;
|
|
|
|
return true;
|
2006-07-21 09:24:17 +00:00
|
|
|
}
|