summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/arm/imx31/gigabeat-s/power-gigabeat-s.c8
-rw-r--r--firmware/target/arm/s5l8700/ipodnano2g/power-nano2g.c9
-rw-r--r--firmware/target/coldfire/iriver/h300/power-h300.c17
3 files changed, 11 insertions, 23 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/power-gigabeat-s.c b/firmware/target/arm/imx31/gigabeat-s/power-gigabeat-s.c
index d7fe87f168..4540be671a 100644
--- a/firmware/target/arm/imx31/gigabeat-s/power-gigabeat-s.c
+++ b/firmware/target/arm/imx31/gigabeat-s/power-gigabeat-s.c
@@ -43,7 +43,7 @@ unsigned int power_input_status(void)
43 if (GPIO3_DR & (1 << 20)) 43 if (GPIO3_DR & (1 << 20))
44 status |= POWER_INPUT_BATTERY; 44 status |= POWER_INPUT_BATTERY;
45 45
46 if (usb_allowed_current() < 500) 46 if (usb_charging_maxcurrent() < 500)
47 { 47 {
48 /* ACK that USB is connected but NOT chargeable */ 48 /* ACK that USB is connected but NOT chargeable */
49 status &= ~(POWER_INPUT_USB_CHARGER & POWER_INPUT_CHARGER); 49 status &= ~(POWER_INPUT_USB_CHARGER & POWER_INPUT_CHARGER);
@@ -52,6 +52,12 @@ unsigned int power_input_status(void)
52 return status; 52 return status;
53} 53}
54 54
55void usb_charging_maxcurrent_change(int maxcurrent)
56{
57 (void)maxcurrent;
58 /* Nothing to do */
59}
60
55/* Detect changes in presence of the AC adaptor. */ 61/* Detect changes in presence of the AC adaptor. */
56void charger_main_detect_event(void) 62void charger_main_detect_event(void)
57{ 63{
diff --git a/firmware/target/arm/s5l8700/ipodnano2g/power-nano2g.c b/firmware/target/arm/s5l8700/ipodnano2g/power-nano2g.c
index 5164f0fa1a..a75cb39729 100644
--- a/firmware/target/arm/s5l8700/ipodnano2g/power-nano2g.c
+++ b/firmware/target/arm/s5l8700/ipodnano2g/power-nano2g.c
@@ -54,15 +54,10 @@ void power_init(void)
54#if CONFIG_CHARGING 54#if CONFIG_CHARGING
55 55
56#ifdef HAVE_USB_CHARGING_ENABLE 56#ifdef HAVE_USB_CHARGING_ENABLE
57bool usb_charging_enable(bool on) 57void usb_charging_maxcurrent_change(int maxcurrent)
58{ 58{
59 bool on = (maxcurrent >= 500);
59 PDAT11 = (PDAT11 & ~1) | (on ? 1 : 0); 60 PDAT11 = (PDAT11 & ~1) | (on ? 1 : 0);
60 return on;
61}
62
63bool usb_charging_enabled(void)
64{
65 return PDAT11 & 1;
66} 61}
67#endif 62#endif
68 63
diff --git a/firmware/target/coldfire/iriver/h300/power-h300.c b/firmware/target/coldfire/iriver/h300/power-h300.c
index 400dc02526..202e1d68ed 100644
--- a/firmware/target/coldfire/iriver/h300/power-h300.c
+++ b/firmware/target/coldfire/iriver/h300/power-h300.c
@@ -71,16 +71,14 @@ unsigned int power_input_status(void)
71} 71}
72 72
73#ifdef HAVE_USB_POWER 73#ifdef HAVE_USB_POWER
74bool usb_charging_enable(bool on) 74void usb_charging_enable(int state)
75{ 75{
76 bool rc = false; 76 bool on = (state != USB_CHARGING_DISABLE);
77 int irqlevel; 77 int irqlevel;
78 logf("usb_charging_enable(%s)\n", on ? "on" : "off" ); 78 logf("usb_charging_enable(%s)\n", on ? "on" : "off" );
79 irqlevel = disable_irq_save(); 79 irqlevel = disable_irq_save();
80 pcf50606_set_usb_charging(on); 80 pcf50606_set_usb_charging(on);
81 rc = on;
82 restore_irq(irqlevel); 81 restore_irq(irqlevel);
83 return rc;
84} 82}
85#endif /* HAVE_USB_POWER */ 83#endif /* HAVE_USB_POWER */
86 84
@@ -92,17 +90,6 @@ bool charging_state(void)
92 return (GPIO_READ & 0x00800000)?true:false; 90 return (GPIO_READ & 0x00800000)?true:false;
93} 91}
94 92
95bool usb_charging_enabled(void)
96{
97 bool rc = false;
98 /* TODO: read the state of the GPOOD2 register...
99 * (this also means to set the irq level here) */
100 rc = pcf50606_usb_charging_enabled();
101
102 logf("usb charging %s", rc ? "enabled" : "disabled" );
103 return rc;
104}
105
106void ide_power_enable(bool on) 93void ide_power_enable(bool on)
107{ 94{
108 if(on) 95 if(on)