2022-05-04 18:22:58 +02:00
|
|
|
gint 2.8 image things:
|
|
|
|
* Design the new image formats, inspired from libimg
|
|
|
|
* Replace the [profile] attribute with [format]
|
|
|
|
|
2020-06-01 12:11:59 +02:00
|
|
|
Extensions on existing code:
|
2021-12-21 19:01:00 +01:00
|
|
|
* usb: add PC->calc reading, and interrupt pipes
|
|
|
|
* fs: support RAM files
|
|
|
|
* fs: support USB streams as generic file descriptors
|
2021-12-30 18:17:13 +01:00
|
|
|
* fugue: support glob() to abstract away BFile entirely
|
|
|
|
* fugue/fs: offer a primitive to remove recursively, which is native in Fugue
|
2021-04-20 12:19:24 +02:00
|
|
|
* bfile: implement the optimization-restart as realized by Kbd2
|
2021-02-15 09:39:14 +01:00
|
|
|
* kernel: better restore to userspace before panic (ensure BL=0 IMASK=0)
|
2020-10-05 16:20:01 +02:00
|
|
|
* project: add license file
|
kernel: dynamic loading of GMAPPED functions to user RAM
This commit introduces a large architectural change. Unlike previous
models of the fx-9860G series, the G-III models have a new user RAM
address different from 8801c000. The purpose of this change is to
dynamically load GMAPPED functions to this address by querying the TLB,
and call them through a function pointer whose address is determined
when loading.
Because of the overhead of using a function pointer in both assembly and
C code, changes have been made to avoid GMAPPED functions altogether.
Current, only cpu_setVBR() and gint_inth_callback() are left, the second
being used specifically to enable TLB misses when needed.
* Add a .gint.mappedrel section for the function pointers holding
addresses to GMAPPED functions; add function pointers for
cpu_setVBR() and gint_inth_callback()
* Move rram to address 0 instead of the hardcoded 0x8801c000
* Load GMAPPED functions at their linked address + the physical address
user RAM is mapped, to and compute their function pointers
* Remove the GMAPPED macro since no user function needs it anymore
* Add section flags "ax" (code) or "aw" (data) to every custom .section
in assembler code, as they default to unpredictable values that can
cause the section to be marked NOLOAD by the linker
* Update the main kernel, TMU, ETMU and RTC interrupt handlers to use
the new indirect calling method
This is made possible by new MMU functions giving direct access to the
physical area behind any virtualized page.
* Add an mmu_translate() function to query the TLB
* Add an mmu_uram() function to access user RAM from P1
The exception catching mechanism has been modified to avoid the use of
GMAPPED functions altogether.
* Set SR.BL=0 and SR.IMASK=15 before calling exception catchers
* Move gint_exc_skip() to normal text ROM
* Also fix registers not being popped off the stack before a panic
The timer drivers have also been modified to avoid GMAPPED functions.
* Invoke timer_stop() through gint_inth_callback() and move it to ROM
* Move and expand the ETMU driver to span 3 blocks at 0xd00 (ETMU4)
* Remove the timer_clear() function by inlining it into the ETMU handler
(TCR is provided within the storage block of each timer)
* Also split src/timer/inth.s into src/timer/inth-{tmu,etmu}.s
Additionally, VBR addresses are now determined at runtime to further
reduce hardcoded memory layout addresses in the linker script.
* Determine fx-9860G VBR addresses dynamically from mmu_uram()
* Determine fx-CG 50 VBR addresses dynamically from mmu_uram()
* Remove linker symbols for VBR addresses
Comments and documentation have been updated throughout the code to
reflect the changes.
2020-09-17 14:48:54 +02:00
|
|
|
* kernel: group linker script symbols in a single header file
|
2019-09-19 15:59:38 +02:00
|
|
|
* core: try to leave add-in without reset in case of panic
|
2019-03-06 14:32:51 +01:00
|
|
|
* core: use cmp/str for memchr()
|
2019-07-17 00:34:10 +02:00
|
|
|
* r61524: brightness control and clean the file
|
2020-06-01 12:11:59 +02:00
|
|
|
* core: review forgotten globals and MPU addresses not in <gint/mpu/*.h>
|
2019-07-20 18:31:46 +02:00
|
|
|
* core: run destructors when a task-switch results in leaving the app
|
2019-03-06 14:32:51 +01:00
|
|
|
|
2021-12-21 19:01:00 +01:00
|
|
|
Future directions:
|
2019-03-06 14:32:51 +01:00
|
|
|
* Integrate overclock management
|
2020-06-01 12:11:59 +02:00
|
|
|
* Audio playback using TSWilliamson's libsnd method
|
|
|
|
* Serial communication
|
2020-05-10 16:36:21 +02:00
|
|
|
* Make fx9860g projects work out of the box on fxcg50
|
2021-01-31 15:11:13 +01:00
|
|
|
* Base for Yatis' threads library
|