rockbox/firmware/target/arm/sandisk/sansa-e200/power-e200.c
Michael Sevakis dc051248be e200: Tuner driver needs to yield alot and also be mutexed. FM debug screen got broken again and was ignoring cancellation and not drawing the lines.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13896 a1c6a512-1295-4272-9138-f99709370657
2007-07-14 22:00:50 +00:00

132 lines
3.1 KiB
C

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2006 by Daniel Ankers
*
* 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 <stdbool.h>
#include "system.h"
#include "cpu.h"
#include "i2c-pp.h"
#include "tuner.h"
void power_init(void)
{
}
void power_off(void)
{
char byte;
/* Disable interrupts on this core */
set_interrupt_status(IRQ_FIQ_DISABLED, IRQ_FIQ_STATUS);
/* Mask them on both cores */
CPU_INT_CLR = -1;
COP_INT_CLR = -1;
/* Send shutdown command to PMU */
byte = i2c_readbyte(0x46, 0x20);
byte &= ~0x1;
pp_i2c_send(0x46, 0x20, byte);
/* Halt everything and wait for device to power off */
while (1)
{
CPU_CTL = PROC_SLEEP;
COP_CTL = PROC_SLEEP;
}
}
bool charger_inserted(void)
{
if(GPIOB_INPUT_VAL & 0x10)
return true;
return false;
}
void ide_power_enable(bool on)
{
(void)on;
}
/** Tuner **/
static bool powered = false;
bool tuner_power_nolock(bool status)
{
bool old_status;
old_status = powered;
if (status != old_status)
{
if (status)
{
/* init mystery amplification device */
outl(inl(0x70000084) | 0x1, 0x70000084);
udelay(5);
/* When power up, host should initialize the 3-wire bus
in host read mode: */
/* 1. Set direction of the DATA-line to input-mode. */
GPIOH_OUTPUT_EN &= ~(1 << 5);
GPIOH_ENABLE |= (1 << 5);
/* 2. Drive NR_W low */
GPIOH_OUTPUT_VAL &= ~(1 << 3);
GPIOH_OUTPUT_EN |= (1 << 3);
GPIOH_ENABLE |= (1 << 3);
/* 3. Drive CLOCK high */
GPIOH_OUTPUT_VAL |= (1 << 4);
GPIOH_OUTPUT_EN |= (1 << 4);
GPIOH_ENABLE |= (1 << 4);
lv24020lp_power(true);
}
else
{
lv24020lp_power(false);
/* set all as inputs */
GPIOH_OUTPUT_EN &= ~((1 << 5) | (1 << 3) | (1 << 4));
GPIOH_ENABLE &= ~((1 << 5) | (1 << 3) | (1 << 4));
/* turn off mystery amplification device */
outl(inl(0x70000084) & ~0x1, 0x70000084);
}
powered = status;
}
return old_status;
}
bool tuner_power(bool status)
{
bool old_status;
lv24020lp_lock();
old_status = tuner_power_nolock(status);
lv24020lp_unlock();
return old_status;
}
bool tuner_powered(void)
{
return powered;
}