summaryrefslogtreecommitdiffstats
path: root/firmware/asm/mips/thread-mips32.c
AgeCommit message (Collapse)AuthorFilesLines
2020-09-02mips: use .set push/pop in asm codeSolomon Peachy1-7/+6
Change-Id: I3e7bc7ffb8d6d0c5d18a6ab38b1a270559a62fb9
2018-09-07mips: Update the MIPS threading codeSolomon Peachy1-37/+46
Taken from Amaury Pouly's Fiio X1 patches in gerrit. Xduoo X3 no longer panics on startup Change-Id: I4c2dee832306755b9e496084cb47fb61f804af20
2018-06-12Fix MIPS threading code to compile with older compilerMarcin Bukat1-34/+34
Official rockbox mips gcc is old and doesn't support symbolic register names in inline assembly Change-Id: If67230d06e28ccf31b0f8f8e1b622275fed3f6ff
2018-06-12Agptek Rocker: Initial commitMarcin Bukat1-35/+36
Change-Id: I26b51106c7b1c36a603fba6d521e917d79b5a95b
2012-01-22Create fimrware/asm directory for assembly optimized stuff.Thomas Martitz1-0/+111
This dir is suitable for stuff that doesn't fit the target tree, e.g. because it also builds on hosted or otherwise. It also has a generic subfolder for fallback C implementations so that not all archs need to provide asm files. SOURCES should only contain "foo.c" where foo.c includes the specific <arch>/foo.c files from the subdirs using the preprocessor. This way automatic selection of asm versions or generic C verion is possible. For the start, the thread support files are moved, since ASM threads can be used on hosted platforms as well. Since core_sleep() remains platform specific it's moved to the corresponding system.h headers. Change-Id: Iebff272f3407a6eaafeb7656ceb0ae9eca3f7cb9