diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2008-01-20 23:03:23 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-01-20 23:03:23 +0000 |
| commit | 31b6eb57b01b4e46120ea311d8d32bcebb15ecb1 (patch) | |
| tree | b2b8cbb880ca039af3dce2ce042ba932d9fd12ca | |
| parent | c1791a540ec3599de0f3e03cc24c669970d1fa51 (diff) | |
| download | rockbox-31b6eb57b01b4e46120ea311d8d32bcebb15ecb1.zip rockbox-31b6eb57b01b4e46120ea311d8d32bcebb15ecb1.tar.gz rockbox-31b6eb57b01b4e46120ea311d8d32bcebb15ecb1.tar.bz2 rockbox-31b6eb57b01b4e46120ea311d8d32bcebb15ecb1.tar.xz | |
Commit FS#8387 by Adam Gashlin. Enables detection of firewire devices for charging on various Ipods. Note that charging itself is not yet implemented on these devices.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16124 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-ipod4g.h | 4 | ||||
| -rw-r--r-- | firmware/export/config-ipodcolor.h | 4 | ||||
| -rw-r--r-- | firmware/export/config-ipodmini.h | 4 | ||||
| -rw-r--r-- | firmware/export/config-ipodmini2g.h | 4 | ||||
| -rw-r--r-- | firmware/target/arm/ipod/power-ipod.c | 6 |
5 files changed, 13 insertions, 9 deletions
diff --git a/firmware/export/config-ipod4g.h b/firmware/export/config-ipod4g.h index ff15d20..ce2831f 100644 --- a/firmware/export/config-ipod4g.h +++ b/firmware/export/config-ipod4g.h @@ -102,8 +102,8 @@ #define BATTERY_CAPACITY_INC 10 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ -/* Hardware controlled charging? FIXME */ -//#define CONFIG_CHARGING CHARGING_SIMPLE +/* Hardware controlled charging? */ +#define CONFIG_CHARGING CHARGING_MONITOR /* define this if the unit can be powered or charged via USB */ #define HAVE_USB_POWER diff --git a/firmware/export/config-ipodcolor.h b/firmware/export/config-ipodcolor.h index 3cd6d76..3a9303a 100644 --- a/firmware/export/config-ipodcolor.h +++ b/firmware/export/config-ipodcolor.h @@ -89,8 +89,8 @@ #define BATTERY_CAPACITY_INC 10 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ -/* Hardware controlled charging? FIXME */ -//#define CONFIG_CHARGING CHARGING_SIMPLE +/* Hardware controlled charging? */ +#define CONFIG_CHARGING CHARGING_MONITOR /* define this if the unit can be powered or charged via USB */ #define HAVE_USB_POWER diff --git a/firmware/export/config-ipodmini.h b/firmware/export/config-ipodmini.h index 061b15a..f38de3e 100644 --- a/firmware/export/config-ipodmini.h +++ b/firmware/export/config-ipodmini.h @@ -92,8 +92,8 @@ #define BATTERY_CAPACITY_INC 10 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ -/* Hardware controlled charging? FIXME */ -//#define CONFIG_CHARGING CHARGING_SIMPLE +/* Hardware controlled charging? */ +#define CONFIG_CHARGING CHARGING_MONITOR /* define this if the unit can be powered or charged via USB */ #define HAVE_USB_POWER diff --git a/firmware/export/config-ipodmini2g.h b/firmware/export/config-ipodmini2g.h index c3f4e97..567ee0b 100644 --- a/firmware/export/config-ipodmini2g.h +++ b/firmware/export/config-ipodmini2g.h @@ -99,8 +99,8 @@ #define BATTERY_CAPACITY_INC 50 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ -/* Hardware controlled charging? FIXME */ -//#define CONFIG_CHARGING CHARGING_SIMPLE +/* Hardware controlled charging? */ +#define CONFIG_CHARGING CHARGING_MONITOR /* define this if the unit can be powered or charged via USB */ #define HAVE_USB_POWER diff --git a/firmware/target/arm/ipod/power-ipod.c b/firmware/target/arm/ipod/power-ipod.c index ae663d1..4c6f6a8 100644 --- a/firmware/target/arm/ipod/power-ipod.c +++ b/firmware/target/arm/ipod/power-ipod.c @@ -42,8 +42,12 @@ void power_init(void) bool charger_inserted(void) { -#ifdef IPOD_VIDEO +#if defined(IPOD_VIDEO) return (GPIOL_INPUT_VAL & 0x08)?false:true; +#elif defined(IPOD_4G) || defined(IPOD_COLOR) \ + || defined(IPOD_MINI) || defined(IPOD_MINI2G) + /* C2 is firewire power */ + return (GPIOC_INPUT_VAL & 0x04)?false:true; #else /* This needs filling in for other ipods. */ return false; |