summaryrefslogtreecommitdiffstats
path: root/firmware/thread.c
AgeCommit message (Expand)AuthorFilesLines
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
2007-10-05Stabilize PP5020 targets - tested on H10 5/20GB and iPod Color. Use no interr...Michael Sevakis1-1/+0
2007-10-01Watch out for uninitialized threads[] in init_threads() which can cause big h...Catalin Patulea1-0/+7
2007-09-29Compile Portal Player bootloaders as single core. Cleanup the startup code fo...Michael Sevakis1-20/+2
2007-09-28Oops. Can't wait for COP init in the bootloader because it is kept asleep unt...Michael Sevakis1-0/+3
2007-09-28Anti-red: No need for COP initialization in the bootloaders nor idle stacks.Michael Sevakis1-3/+12
2007-09-28Commit a subset of the dual core changes that have to do with cache handling,...Michael Sevakis1-210/+294
2007-09-20Beginning of an M:Robe 500i port. Currently only in the bootloader stage. N...Karl Kurbjun1-1/+6
2007-08-05Perform writeback before starting thread on another core or stack munging may...Michael Sevakis1-0/+4
2007-07-30Trim a little bulk off the scheduler for dual core. Shouldn't change bin size...Michael Sevakis1-44/+50
2007-06-05Apply FS#7183. Also change to use documented ways to avoid inlining of functi...Magnus Holmgren1-8/+6
2007-05-12Messages queues must be guarded on both ends or else it's a race between dete...Michael Sevakis1-35/+81
2007-04-13Hrmph. Forgot the other instance of cache hacking.Michael Sevakis1-1/+1
2007-04-13Portal Player: Add invalidate_icache and flush_icache. Flush the cache on the...Michael Sevakis1-6/+41
2007-04-01Accidentally enabled core locking mechanism. Now disabled again because it st...Miika Pekkarinen1-3/+3
2007-04-01remove_thread(NULL) contained a null pointer bug causing a crash.Miika Pekkarinen1-4/+4
2007-03-27A temporary fix to crashing on some dual core targets.Miika Pekkarinen1-0/+6
2007-03-26Make scheduler functions thread safe core wise. A big step towards playback r...Miika Pekkarinen1-61/+143
2007-03-26Fix a hole in the scheduler where collisions between waking blocked threads i...Michael Sevakis1-5/+62
2007-03-09Put an end to priority inversion in the ata driver. Gave up trying to have fu...Michael Sevakis1-17/+26
2007-03-06Fix problem with recording screen creep and bag a bigfoot. Voice clips aren't...Michael Sevakis1-0/+5
2007-03-04Dual core support for PP502x players (iPod G4 and later, iriver h10, Sansa - ...Daniel Ankers1-22/+56
2007-02-26Turns out I don't have a magic DAP. :( I didn't get the problem because I RoL...Michael Sevakis1-2/+0
2007-02-25Add CPU-model-specific init to newborn threads. Add default %macsr for each t...Michael Sevakis1-0/+18
2006-12-29add missing variable declarationMarcoen Hirschberg1-0/+3
2006-12-29fix idle mode for the gigabeatMarcoen Hirschberg1-1/+3
2006-12-16Add queue_send synchronous message sending. Right now only for SWCODEC. Actua...Michael Sevakis1-0/+35
2006-11-11Fix my warnings with explicit blocking on platforms w/o cpu_boost()Brandon Low1-0/+6
2006-11-11Thread API enhancements.Brandon Low1-94/+119
2006-11-10Removed the Gmini 120 and Gmini SP code. These ports are dead, unfortunately.Jens Arnold1-64/+0
2006-11-06Big Patch adds primarily: Samplerate and format selection to recording for SW...Michael Sevakis1-0/+8
2006-10-15Removed ugly boosting solutions from playback code and let schedulerMiika Pekkarinen1-1/+31
2006-09-23Fix profiling builds.Magnus Holmgren1-7/+7
2006-09-16Don't remove the thread twice.Miika Pekkarinen1-2/+2
2006-09-16New scheduler, with priorities for swcodec platforms. Frequent taskMiika Pekkarinen1-88/+397
2006-09-02Cleanup threads.c by moving declarations inside structs.Miika Pekkarinen1-88/+49
2006-08-24Fix profile buildsDaniel Ankers1-3/+3
2006-08-21Threading changes in preparation for multiple core supportDaniel Ankers1-59/+111