2007-09-21 15:51:53 +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.
|
2007-09-21 15:51:53 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "system.h"
|
2008-12-21 18:10:36 +00:00
|
|
|
#include "usb.h"
|
|
|
|
#include "usb_core.h"
|
2007-09-21 15:51:53 +00:00
|
|
|
#include "power.h"
|
2008-07-18 23:28:54 +00:00
|
|
|
#include "power-imx31.h"
|
2007-09-21 15:51:53 +00:00
|
|
|
#include "backlight.h"
|
|
|
|
#include "backlight-target.h"
|
2008-04-12 16:56:45 +00:00
|
|
|
#include "avic-imx31.h"
|
|
|
|
#include "mc13783.h"
|
2008-12-21 19:39:11 +00:00
|
|
|
#if CONFIG_TUNER
|
|
|
|
#include "fmradio_i2c.h"
|
|
|
|
#endif
|
2008-12-09 20:48:04 +00:00
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
static unsigned int power_status = POWER_INPUT_NONE;
|
2007-09-21 15:51:53 +00:00
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
/* Detect which power sources are present. */
|
2008-12-03 19:54:25 +00:00
|
|
|
unsigned int power_input_status(void)
|
2007-09-21 15:51:53 +00:00
|
|
|
{
|
2008-12-21 18:10:36 +00:00
|
|
|
unsigned int status = power_status;
|
2008-12-03 19:54:25 +00:00
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
if (GPIO3_DR & (1 << 20))
|
2008-12-03 19:54:25 +00:00
|
|
|
status |= POWER_INPUT_BATTERY;
|
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
if (usb_allowed_current() < 500)
|
|
|
|
{
|
|
|
|
/* ACK that USB is connected but NOT chargeable */
|
|
|
|
status &= ~(POWER_INPUT_USB_CHARGER & POWER_INPUT_CHARGER);
|
|
|
|
}
|
2008-12-03 19:54:25 +00:00
|
|
|
|
|
|
|
return status;
|
2007-09-21 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
/* Detect changes in presence of the AC adaptor. */
|
|
|
|
void charger_main_detect_event(void)
|
2008-05-08 14:11:26 +00:00
|
|
|
{
|
2008-12-21 18:10:36 +00:00
|
|
|
if (mc13783_read(MC13783_INTERRUPT_SENSE0) & MC13783_SE1S)
|
|
|
|
power_status |= POWER_INPUT_MAIN_CHARGER;
|
|
|
|
else
|
|
|
|
power_status &= ~POWER_INPUT_MAIN_CHARGER;
|
2007-09-21 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-12-21 18:10:36 +00:00
|
|
|
/* Detect changes in USB bus power. Called from usb connect event handler. */
|
|
|
|
void charger_usb_detect_event(int status)
|
|
|
|
{
|
|
|
|
/* USB plugged does not imply charging is possible or even
|
|
|
|
* powering the device to maintain the battery. */
|
|
|
|
if (status == USB_INSERTED)
|
|
|
|
power_status |= POWER_INPUT_USB_CHARGER;
|
|
|
|
else
|
|
|
|
power_status &= ~POWER_INPUT_USB_CHARGER;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* charging_state is implemented in powermgmt-imx31.c */
|
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
void ide_power_enable(bool on)
|
|
|
|
{
|
2008-05-08 08:03:08 +00:00
|
|
|
if (!on)
|
|
|
|
{
|
|
|
|
/* Bus must be isolated before power off */
|
2008-12-19 15:30:30 +00:00
|
|
|
imx31_regset32(&GPIO2_DR, (1 << 16));
|
2008-05-08 08:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* HD power switch */
|
|
|
|
imx31_regmod32(&GPIO3_DR, on ? (1 << 5) : 0, (1 << 5));
|
|
|
|
|
|
|
|
if (on)
|
|
|
|
{
|
|
|
|
/* Bus switch may be turned on after powerup */
|
|
|
|
sleep(HZ/10);
|
2008-12-19 15:30:30 +00:00
|
|
|
imx31_regclr32(&GPIO2_DR, (1 << 16));
|
2008-05-08 08:03:08 +00:00
|
|
|
}
|
2007-09-21 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ide_powered(void)
|
|
|
|
{
|
2008-05-08 14:11:26 +00:00
|
|
|
return (GPIO3_DR & (1 << 5)) != 0;
|
2007-09-21 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 20:48:04 +00:00
|
|
|
#if CONFIG_TUNER
|
|
|
|
bool tuner_power(bool status)
|
|
|
|
{
|
2008-12-21 19:39:11 +00:00
|
|
|
static bool tuner_powered = false;
|
|
|
|
|
|
|
|
if (status == tuner_powered)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
tuner_powered = status;
|
|
|
|
|
2008-12-09 20:48:04 +00:00
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
/* the si4700 is the only thing connected to i2c2 so
|
|
|
|
we can diable the i2c module when not in use */
|
2008-12-21 19:39:11 +00:00
|
|
|
fmradio_i2c_enable(true);
|
2008-12-09 20:48:04 +00:00
|
|
|
/* enable the fm chip */
|
2008-12-19 15:30:30 +00:00
|
|
|
imx31_regset32(&GPIO1_DR, (1 << 26));
|
2008-12-09 20:48:04 +00:00
|
|
|
/* enable CLK32KMCU clock */
|
|
|
|
mc13783_set(MC13783_POWER_CONTROL0, MC13783_CLK32KMCUEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* the si4700 is the only thing connected to i2c2 so
|
|
|
|
we can diable the i2c module when not in use */
|
2008-12-21 19:39:11 +00:00
|
|
|
fmradio_i2c_enable(false);
|
2008-12-09 20:48:04 +00:00
|
|
|
/* disable the fm chip */
|
2008-12-19 15:30:30 +00:00
|
|
|
imx31_regclr32(&GPIO1_DR, (1 << 26));
|
2008-12-09 20:48:04 +00:00
|
|
|
/* disable CLK32KMCU clock */
|
|
|
|
mc13783_clear(MC13783_POWER_CONTROL0, MC13783_CLK32KMCUEN);
|
|
|
|
}
|
2008-12-21 19:39:11 +00:00
|
|
|
|
|
|
|
return !status;
|
2008-12-09 20:48:04 +00:00
|
|
|
}
|
|
|
|
#endif /* #if CONFIG_TUNER */
|
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
void power_off(void)
|
|
|
|
{
|
2008-12-04 04:16:53 +00:00
|
|
|
/* Cut backlight */
|
|
|
|
_backlight_off();
|
|
|
|
|
|
|
|
/* Let it fade */
|
|
|
|
sleep(5*HZ/4);
|
|
|
|
|
|
|
|
/* Set user off mode */
|
2008-04-12 16:56:45 +00:00
|
|
|
mc13783_set(MC13783_POWER_CONTROL0, MC13783_USEROFFSPI);
|
|
|
|
|
2008-12-04 04:16:53 +00:00
|
|
|
/* Wait for power cut */
|
2008-04-12 16:56:45 +00:00
|
|
|
disable_interrupt(IRQ_FIQ_STATUS);
|
2008-12-04 04:16:53 +00:00
|
|
|
|
2008-04-12 16:56:45 +00:00
|
|
|
while (1);
|
2007-09-21 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-05-21 08:42:11 +00:00
|
|
|
void power_init(void)
|
|
|
|
{
|
|
|
|
/* Poll initial state */
|
2008-12-21 18:10:36 +00:00
|
|
|
charger_main_detect_event();
|
2008-05-21 08:42:11 +00:00
|
|
|
|
|
|
|
/* Enable detect event */
|
2008-12-21 18:10:36 +00:00
|
|
|
mc13783_enable_event(MC13783_SE1_EVENT);
|
2008-05-21 08:42:11 +00:00
|
|
|
}
|