summaryrefslogtreecommitdiffstats
path: root/firmware/target/coldfire/iaudio/x5/power-x5.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2009-06-12 18:53:44 +0000
committerJens Arnold <amiconn@rockbox.org>2009-06-12 18:53:44 +0000
commit81b87fe13d6b5f0e8bafd0810f5f8aca2a57bde3 (patch)
tree3372bcdbc512e2fd79350bf679fb89736e51e78a /firmware/target/coldfire/iaudio/x5/power-x5.c
parent94823c65ac7555a7ed19521184064255902ff615 (diff)
downloadrockbox-81b87fe13d6b5f0e8bafd0810f5f8aca2a57bde3.tar.gz
rockbox-81b87fe13d6b5f0e8bafd0810f5f8aca2a57bde3.zip
Add iAudio M5 FM radio mod to the advanced build options. * Unify iAudio audio driver, fmradio i2c driver, and power driver (M5 + X5 only).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21264 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire/iaudio/x5/power-x5.c')
-rw-r--r--firmware/target/coldfire/iaudio/x5/power-x5.c73
1 files changed, 0 insertions, 73 deletions
diff --git a/firmware/target/coldfire/iaudio/x5/power-x5.c b/firmware/target/coldfire/iaudio/x5/power-x5.c
deleted file mode 100644
index 4feb9c15d0..0000000000
--- a/firmware/target/coldfire/iaudio/x5/power-x5.c
+++ /dev/null
@@ -1,73 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2006 by Linus Nielsen Feltzing
- *
- * 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.
- *
- * 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 "lcd-remote-target.h"
-
-void power_init(void)
-{
- /* Charger detect */
- and_l(~0x01000000, &GPIO1_ENABLE);
- or_l(0x01000000, &GPIO1_FUNCTION);
-
- pcf50606_init();
-}
-
-unsigned int power_input_status(void)
-{
- return (GPIO1_READ & 0x01000000) ?
- POWER_INPUT_MAIN_CHARGER : POWER_INPUT_NONE;
-}
-
-void ide_power_enable(bool on)
-{
- /* GPOOD3 */
- int level = disable_irq_save();
- pcf50606_write(0x3c, on ? 0x07 : 0x00);
- restore_irq(level);
-}
-
-bool ide_powered(void)
-{
- int level = disable_irq_save();
- int value = pcf50606_read(0x3c);
- restore_irq(level);
- return (value & 0x07) != 0;
-}
-
-void power_off(void)
-{
- lcd_remote_poweroff();
- set_irq_level(DISABLE_INTERRUPTS);
- and_l(~0x00000008, &GPIO_OUT); /* Set KEEPACT low */
- asm("halt");
-}
-
-bool tuner_power(bool status)
-{
- (void)status;
- return true;
-}