Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Rockbox Ports are now being developed for various digital audio players!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Hardware
| | |-+  80GB Ipod Video won't shut down.
« previous next »
  • Print
Pages: [1]

Author Topic: 80GB Ipod Video won't shut down.  (Read 9819 times)

Offline Logjammer

  • Member
  • *
  • Posts: 4
80GB Ipod Video won't shut down.
« on: December 07, 2008, 12:59:21 AM »
I installed rockbox 3.0 on my 80GB Ipod Video recently and it's been having the same problem the previous version did.  I hold the play button to shut down the Ipod and it doesn't shut down, it just reboots back into Rockbox.  Also, another problem I've recently been having is that the battery won't charge when the USB is plugged in (despite the fact that I have selected "yes" to that option.)

Any patches i can load that can fix all this?  I don't want my battery to get drained. :(
Logged

Offline bluebrother

  • Developer
  • Member
  • *
  • Posts: 3421
  • creature
Re: 80GB Ipod Video won't shut down.
« Reply #1 on: December 07, 2008, 04:38:43 AM »
Quote from: Logjammer on December 07, 2008, 12:59:21 AM
I hold the play button to shut down the Ipod and it doesn't shut down, it just reboots back into Rockbox.
Is the player connected to a charger?
Logged
Rockbox Utility development binaries (updated infrequently) · How to ask questions the smart way · We do not estimate timeframes.

Offline Logjammer

  • Member
  • *
  • Posts: 4
Re: 80GB Ipod Video won't shut down.
« Reply #2 on: December 07, 2008, 11:08:48 AM »
Quote from: bluebrother on December 07, 2008, 04:38:43 AM
Is the player connected to a charger?
no, it does that even when it's not connected to anything.

but yeah even when it's connected to a charger it won't read the battery or something.
« Last Edit: December 07, 2008, 11:21:33 AM by Logjammer »
Logged

Offline bluebrother

  • Developer
  • Member
  • *
  • Posts: 3421
  • creature
Re: 80GB Ipod Video won't shut down.
« Reply #3 on: December 07, 2008, 12:13:50 PM »
Sounds like your player is wrongly detecting a charger. Can you check in the Apple firmware if it detects a charger even if none is detected? The hardware can't shut down while a charger is connected, so if it wrongly detects one this behaviour will occur. Plus, in that case it's a hardware issue.
Logged
Rockbox Utility development binaries (updated infrequently) · How to ask questions the smart way · We do not estimate timeframes.

Offline dreamlayers

  • Developer
  • Member
  • *
  • Posts: 425
  • Boris Gjenero
    • My Blog
Re: 80GB Ipod Video won't shut down.
« Reply #4 on: December 07, 2008, 03:36:27 PM »
This is probably the same problem that my iPod has:

The USB power section of the LTC4066 IC on the motherboard is defective.  Instead of accepting power, it outputs power back into the USB +5V input.  Because of this, some voltage is present there, and the iPod thinks USB is connected.  (This voltage can actually be measured at the end of the USB cable.)  This causes the iPod to turn on as soon as it is turned off.  This has nothing to do with Rockbox.

Your iPod can probably still charge via FireWire.  There are cables with both USB and FireWire which can be used to charge via FireWire while accessing the iPod via USB.

As for the inability to turn off, you have several alternatives:
- Use the original firmware.  Its off is sleep, and sleep is still possible.
- Cut the trace leading to the IN pin of the LTC4066.  This is what I did.
- Replace the LTC4066.  I thought this was too hard because there is a large solder tab under the chip for heat sinking and there are very tiny parts very close to the chip.
- Replace the motherboard
- Short the USB +5V input to ground when not using USB, eg. via a modified dock connector.  It should be easy, but would waste power.  I didn't try this.
« Last Edit: December 07, 2008, 03:38:05 PM by dreamlayers »
Logged

Offline Logjammer

  • Member
  • *
  • Posts: 4
Re: 80GB Ipod Video won't shut down.
« Reply #5 on: December 07, 2008, 05:27:29 PM »
Quote from: dreamlayers on December 07, 2008, 03:36:27 PM
- Use the original firmware.  Its off is sleep, and sleep is still possible.
yeah that's what i do to turn off.  i always have to boot into the apple firmware and then hold the play button.

where would such cables be located that will allow my ipod to charge via firewire?
Logged

Offline dreamlayers

  • Developer
  • Member
  • *
  • Posts: 425
  • Boris Gjenero
    • My Blog
Re: 80GB Ipod Video won't shut down.
« Reply #6 on: December 07, 2008, 05:41:32 PM »
Quote from: Logjammer on December 07, 2008, 05:27:29 PM
Quote from: dreamlayers on December 07, 2008, 03:36:27 PM
- Use the original firmware.  Its off is sleep, and sleep is still possible.
yeah that's what i do to turn off.  i always have to boot into the apple firmware and then hold the play button.
I'm glad I cut that trace.  I just wrote a bit about it on my blog.  The key part is the image showing the defective IC and what to cut.

Quote from: Logjammer on December 07, 2008, 05:27:29 PM
where would such cables be located that will allow my ipod to charge via firewire?
They're for older iPods but they're still available, for example via Amazon search or overpriced at Best Buy.

I have an idea for a purely software workaround which allows Rockbox to shut down the iPod.  In firmware/drivers/pcf50605.c, pcf50605_standby_mode() sets conditions which turn on the iPod.  Removing the condition relating to USB charging, probably CHGWAK,  would allow the iPod to stay off, though FireWire charging might not turn it on either.  But be careful, because according to the comment, it might be possible to turn off the iPod in a way that requires disconnecting the battery or waiting for it to self-discharge (a month or more I guess).
« Last Edit: December 08, 2008, 11:44:06 AM by dreamlayers »
Logged

Offline Logjammer

  • Member
  • *
  • Posts: 4
Re: 80GB Ipod Video won't shut down.
« Reply #7 on: December 12, 2008, 06:39:38 AM »
Ok so what's the best way to open up the ipod and what should I use to cut the trace?
Logged

Offline dreamlayers

  • Developer
  • Member
  • *
  • Posts: 425
  • Boris Gjenero
    • My Blog
Re: 80GB Ipod Video won't shut down.
« Reply #8 on: December 12, 2008, 10:22:31 AM »
There are special tools for opening iPods (eg. eBay search).  I used a piece of plastic I filed down.

For cutting the trace I used a utility knife.  Instead of using force and trying to cut in one pass, I carefully made multiple passes until the trace was cut.
Logged

Offline Mikgerdan1991

  • Member
  • *
  • Posts: 10
Re: 80GB Ipod Video won't shut down.
« Reply #9 on: June 25, 2009, 10:09:47 PM »
I was searching the forum, and found this to be the exact problem my iPod is having. It's actually a 2G Classic; I bought it on eBay, just because I wanted to have a little piece of history. When I hold the Play/Pause to shut down, it boots back up, just like Logjammer's. If I wanted to try the "software workaround," where do I put that pcf50605.c file? Do I create firmware/drivers in the .rockbox folder?
Logged

Offline yapper

  • Rockbox Expert
  • Member
  • *
  • Posts: 794
Re: 80GB Ipod Video won't shut down.
« Reply #10 on: June 25, 2009, 11:02:54 PM »
For a second generation iPods (ones with a firewire connector) the only way to shutdown from Rockbox is to press play/pause until "Shutting down" appears on the display, then flip the hold switch on. The unit will then boot into the Apple firmware, and then it can be shutdown.
Logged
G2 iPod 20GB / Sansa c240 v1 + 2GB microSD / Sansa c250 v1 / Sansa e250 v1 + 8GB microSDHC / Sansa Fuze v2 + 32GB microSDHC

Offline Mikgerdan1991

  • Member
  • *
  • Posts: 10
Re: 80GB Ipod Video won't shut down.
« Reply #11 on: June 26, 2009, 12:09:20 AM »
Thanks for the quick response.  :)

Oh, really? That's the shortest way of shutting it down? That's what I have been doing, I just can't see waiting for it to shut down and boot into the Apple firmware to make it sleep every time I want to turn off my iPod. Then after doing that, rebooting it again so that it goes back into Rockbox. Is there no shortcut? If not, that'd be alright. Rockbox is worth it. (Great stuff by the way.  ;)) But, is there something I can edit in the firmware that will stop it from starting up again, like the guy with the 80GB iPod?
Logged

Offline yapper

  • Rockbox Expert
  • Member
  • *
  • Posts: 794
Re: 80GB Ipod Video won't shut down.
« Reply #12 on: June 26, 2009, 12:23:00 AM »
The older iPods don't actually shutdown even under the Apple OF, they just go into a very lower power state ("sleeping"). Rockbox doesn't know how to set the hardware into this state, so the only way is to use the Apple firmware.

The newer iPods can be shutdown by Rockbox, unless the iPod is connected to a charger or has a hardware fault (as described earlier in this thread)
Logged
G2 iPod 20GB / Sansa c240 v1 + 2GB microSD / Sansa c250 v1 / Sansa e250 v1 + 8GB microSDHC / Sansa Fuze v2 + 32GB microSDHC

Offline Mikgerdan1991

  • Member
  • *
  • Posts: 10
Re: 80GB Ipod Video won't shut down.
« Reply #13 on: June 26, 2009, 02:34:49 PM »
Oh, I see, good point. Is there any chance that Rockbox, um, people, will come back to trying to figure that out, or am I going to have to do what you said before to turn it off?

If so, I have a separate, but related question; I'm converting all my music to WMA. (It just seems, at least to me, the best sounding at 64kbps, which is what I need the bit rate at to have all my music on the iPod.) Would the WMA's play in the original Apple firmware, or would I have to be in Rockbox? I would assume not, but I just wanted to make sure.
« Last Edit: June 26, 2009, 03:20:42 PM by Mikgerdan1991 »
Logged

Offline Chronon

  • Rockbox Expert
  • Member
  • *
  • Posts: 4379
Re: 80GB Ipod Video won't shut down.
« Reply #14 on: June 26, 2009, 04:49:28 PM »
No.  Apple's firmware does not play WMA.
Logged
Sansa e280, Gigabeat F40, Gigabeat S60, Sansa Clip+, iPod Mini 2g

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Hardware
| | |-+  80GB Ipod Video won't shut down.
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.104 seconds with 14 queries.