2005-12-11 10:52:17 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2005-12-19 14:30:52 +00:00
|
|
|
* Driver for pcf50605 PMU and RTC
|
2005-12-11 10:52:17 +00:00
|
|
|
*
|
2005-12-19 14:30:52 +00:00
|
|
|
* Based on code from the ipodlinux project - http://ipodlinux.org/
|
|
|
|
* Adapted for Rockbox in December 2005
|
|
|
|
*
|
|
|
|
* Original file: linux/arch/armnommu/mach-ipod/pcf50605.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
|
2005-12-11 10:52:17 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2006-03-09 19:47:12 +00:00
|
|
|
#include "system.h"
|
2005-12-11 10:52:17 +00:00
|
|
|
#include "config.h"
|
2007-01-27 20:39:09 +00:00
|
|
|
#if CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
|
|
|
|
#include "i2c-pp.h"
|
2006-02-05 17:16:34 +00:00
|
|
|
#endif
|
2005-12-11 10:52:17 +00:00
|
|
|
#include "rtc.h"
|
2008-04-04 20:24:08 +00:00
|
|
|
#include "pcf5060x.h"
|
2006-05-02 08:08:10 +00:00
|
|
|
|
2007-09-28 15:09:54 +00:00
|
|
|
unsigned char pcf50605_wakeup_flags = 0;
|
2005-12-21 23:32:19 +00:00
|
|
|
|
2005-12-11 10:52:17 +00:00
|
|
|
int pcf50605_read(int address)
|
|
|
|
{
|
|
|
|
return i2c_readbyte(0x8,address);
|
|
|
|
}
|
|
|
|
|
|
|
|
int pcf50605_read_multiple(int address, unsigned char* buf, int count)
|
|
|
|
{
|
2006-03-09 19:47:12 +00:00
|
|
|
int read = i2c_readbytes(0x08, address, count, buf);
|
|
|
|
return read - count;
|
2005-12-11 10:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int pcf50605_write(int address, unsigned char val)
|
|
|
|
{
|
2006-10-27 11:24:23 +00:00
|
|
|
pp_i2c_send(0x8, address, val);
|
2005-12-11 10:52:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pcf50605_write_multiple(int address, const unsigned char* buf, int count)
|
|
|
|
{
|
2007-02-28 21:55:11 +00:00
|
|
|
int i;
|
2007-11-26 07:59:42 +00:00
|
|
|
|
|
|
|
i2c_lock();
|
|
|
|
|
2007-02-28 21:55:11 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
pp_i2c_send(0x8, address + i, buf[i]);
|
2007-11-26 07:59:42 +00:00
|
|
|
|
|
|
|
i2c_unlock();
|
|
|
|
|
2005-12-11 10:52:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-12-21 23:32:19 +00:00
|
|
|
/* The following command puts the iPod into a deep sleep. Warning
|
|
|
|
from the good people of ipodlinux - never issue this command
|
|
|
|
without setting CHGWAK or EXTONWAK if you ever want to be able to
|
|
|
|
power on your iPod again. */
|
|
|
|
void pcf50605_standby_mode(void)
|
|
|
|
{
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_OOCC1,
|
|
|
|
GOSTDBY | CHGWAK | EXTONWAK | pcf50605_wakeup_flags);
|
2005-12-21 23:32:19 +00:00
|
|
|
}
|
|
|
|
|
2006-05-02 08:08:10 +00:00
|
|
|
void pcf50605_init(void)
|
|
|
|
{
|
2008-02-10 05:39:20 +00:00
|
|
|
#if defined (IPOD_VIDEO)
|
|
|
|
/* I/O and GPO voltage supply (default: 0xf8 = 3.3V ON) */
|
|
|
|
/* ECO not allowed regarding data sheet */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_IOREGC, 0xf8); /* 3.3V ON */
|
2008-02-10 05:39:20 +00:00
|
|
|
|
|
|
|
/* core voltage supply (default DCDC1/DCDC2: 0xec = 1.2V ON) */
|
|
|
|
/* ECO not stable, assumed due to less precision of voltage in ECO mode */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_DCDC1, 0xec); /* 1.2V ON */
|
|
|
|
pcf50605_write(PCF5060X_DCDC2, 0x0c); /* OFF */
|
2008-02-10 05:39:20 +00:00
|
|
|
|
|
|
|
/* unknown (default: 0xe3 = 1.8V ON) */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_DCUDC1, 0xe3); /* 1.8V ON */
|
2008-02-10 05:39:20 +00:00
|
|
|
|
|
|
|
/* WM8758 voltage supply (default: 0xf5 = 3.0V ON) */
|
|
|
|
/* ECO not allowed as max. current of 5mA is not sufficient */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_D1REGC1, 0xf0); /* 2.5V ON */
|
2008-02-10 05:39:20 +00:00
|
|
|
|
|
|
|
/* LCD voltage supply (default: 0xf5 = 3.0V ON) */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_D3REGC1, 0xf1); /* 2.6V ON */
|
2008-02-10 05:39:20 +00:00
|
|
|
#else
|
|
|
|
/* keep initialization from svn for other iPods */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_D1REGC1, 0xf5); /* 3.0V ON */
|
|
|
|
pcf50605_write(PCF5060X_D3REGC1, 0xf5); /* 3.0V ON */
|
2008-02-10 05:39:20 +00:00
|
|
|
/* Dock Connector pin 17 (default: OFF) */
|
2008-04-04 20:24:08 +00:00
|
|
|
pcf50605_write(PCF5060X_D2REGC1, 0xf8); /* 3.3V ON */
|
2008-04-13 12:24:41 +00:00
|
|
|
#endif
|
2006-05-02 08:08:10 +00:00
|
|
|
}
|