summaryrefslogtreecommitdiffstats
path: root/firmware/thread.c
AgeCommit message (Expand)AuthorFilesLines
2009-02-11s3c2440 can use the generic ARM WFI which is much simpler. If there's any adv...Michael Sevakis1-38/+5
2009-02-11Make basic cache functions into calls, and get rid of CACHE_FUNCTION_WRAPPERS...Michael Sevakis1-30/+30
2008-12-19Enable sleep() on MIPS targetsMaurus Cuelenaere1-0/+1
2008-12-14Place some LIKELY and UNLIKELY hints in kernel where I can definitively say a...Michael Sevakis1-19/+19
2008-12-10Fix a wrong comment in thread.c and mention an alternative approach to inits....Michael Sevakis1-2/+4
2008-12-10Use cookies for thread identification instead of pointers directly which give...Michael Sevakis1-43/+97
2008-11-09core_sleep(): only write once the same implementation, and add as3525 to the ...Rafaël Carré1-22/+3
2008-11-04Onda VX747:Maurus Cuelenaere1-1/+1
2008-10-07Fix TABs and get rid of HAVE_BUTTON_HOLDMaurus Cuelenaere1-9/+2
2008-09-16Commit fs#9404 (iAudio 7 updates by vitja). Also fixes play/pause behaviour o...Rob Purchase1-7/+1
2008-09-14Forgot this..Maurus Cuelenaere1-2/+0
2008-09-14Onda VX747:Maurus Cuelenaere1-108/+72
2008-08-06* Add basic (non-working) support for NAND flashMaurus Cuelenaere1-3/+11
2008-07-171) Set svn:keywords where they should've been setMaurus Cuelenaere1-1/+12
2008-07-14Add preliminary support for the Onda VX747 (MIPS target)Maurus Cuelenaere1-0/+147
2008-06-28Updated our source code header to explicitly mention that we are GPL v2 orDaniel Stenberg1-2/+4
2008-06-03Reinstate the awful ATA hack that has no proper reason to exist for iPod 5.5g...Michael Sevakis1-2/+12
2008-05-17Actually remove the ata lock hack code for that had been used for iPod Video ...Michael Sevakis1-12/+2
2008-05-11Disable the ata locking hack since a recent test strongly suggests it has bee...Michael Sevakis1-1/+1
2008-05-03Made source files #include the header file that they implement to make sure t...Bertrik Sikken1-1/+1
2008-04-24Commit whole Creative Zen Vision:M target tree + all related firmware/ Maurus Cuelenaere1-0/+10
2008-04-20Fix freezing of some builds on PP5002. The PP5002 needs the not-sleep-at 0xNN...Jens Arnold1-29/+11
2008-04-11iPod Video 30Gig doesn't seem to need the ata locking hack so we'll just atte...Michael Sevakis1-1/+1
2008-04-06Get device-specific code out of init_threads and add core_thread_init to be i...Michael Sevakis1-14/+37
2008-04-06Shorten the uncontended (expected) corelock_(try_)lock return path. Squeeze d...Michael Sevakis1-17/+17
2008-04-06Enable nocache sections using the linker. PP5022/4 must use SW_CORELOCK now w...Michael Sevakis1-2/+2
2008-03-28Go back to the ata lock hack for 5g until whatever is going on there is disco...Michael Sevakis1-2/+12
2008-03-26Do core interrupt masking in a less general fashion and save some instruction...Michael Sevakis1-48/+34
2008-03-25Add a complete priority inheritance implementation to the scheduler (all mute...Michael Sevakis1-1099/+1436
2008-03-22Implement core_sleep() for TCC780x (single core).Rob Purchase1-0/+13
2008-03-07Fix the PP5002 crash bug affecting iPod 1st, 2nd and 3rd Gen. Yet another of ...Jens Arnold1-3/+11
2008-02-28Fix a very subtle bug that would cause a yielding thread to be scheduled twic...Michael Sevakis1-6/+11
2008-02-05Oops. Dump some testing stuff that got left in.Michael Sevakis1-3/+0
2008-02-05Gigabeat S mixer: Make some progress. Get the tick and core sleep working usi...Michael Sevakis1-0/+15
2008-02-02Fix a minor ;) problem that would keep other threads from running during prio...Michael Sevakis1-2/+2
2008-01-19Fix warnings. Remove a now unneeded parameter macro from run_blocking_ops.Michael Sevakis1-3/+5
2008-01-19Do some simplification in switch_thread regarding interrupt enabling which si...Michael Sevakis1-153/+65
2007-11-27Enable dualcore for the pp5002 processor by adding the needed cache handling ...Michael Sevakis1-18/+152
2007-11-20Fix warnings.Michael Sevakis1-0/+1
2007-11-20Make threads responsible for explicit cancellation of their own boosted statu...Michael Sevakis1-39/+20
2007-10-28Initial work on a port to the Logik DAX 1GB MP3/DAB player. The bootloader b...Dave Chapman1-0/+5
2007-10-21The interrupt disable is only relevant on multicore targets.Michael Sevakis1-0/+2
2007-10-21Don't keep interrupts disabled when waking a frozen thread. Fixes frozen UI o...Jens Arnold1-0/+1
2007-10-19Save a little space and only initialize the minimum for initial threads at st...Michael Sevakis1-27/+22
2007-10-19Reverse some logic with Peterson's algorithm and cut an instruction. Make C-r...Michael Sevakis1-22/+24
2007-10-18PP502x: Get switch_thread back out of IRAM and devise a better core wakeup sy...Michael Sevakis1-43/+88
2007-10-17Turns out you can boot the main build by copying apps/rockbox.bin to /rockbox...Karl Kurbjun1-1/+2
2007-10-17Fix core_sleep for targets that have not implemented it yetKarl Kurbjun1-1/+1
2007-10-16Take out some NOCACHEBSS_ATTR's that were accidentally left. Put some threadi...Michael Sevakis1-2/+9
2007-10-16Finally full multicore support for PortalPlayer 502x targets with an eye towa...Michael Sevakis1-451/+1872