Skip to content

Commit

Permalink
Depthcharge 0.3.0 Release ("Danny Nadelko")
Browse files Browse the repository at this point in the history
  • Loading branch information
jynik committed Aug 2, 2021
1 parent a24046e commit 6faf4e2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
2021-08-01: Depthcharge Release 0.3.0 ("Danny Nadelko")
----------------------------------------------------------------------------

Summary:

* Introduced AARCH64 support (#3)
* Added `Depthcharge.register_payload()` API function (#23)
* Added icache/dcache flush upon payload deployment (#24)
* Fixed ARM DataAbort parsing issue when in Thumb mode (#79)
* Fixed issue displaying multiple DRAM bank info (#81)
* Documentation updates and fixes
* Removal of RETURN_REGISTER payload.

Versions:

Python module (`depthcharge`): 0.3.0
Companion Firmware: 0.1.0

Details:

**Introduced AARCH64 support**

The depthcharge.arch.AARCH64 class has been introduced to support
aarch64 system. A number of fixes and changes throughout the codebase
have been made to accommodate use on 64-bit systems.

There remains a known limitation on ARMv8 devices operating in AARCH32 bit
mode, where we do not necessary have a generic means to trigger data aborts.

The RETURN_REGISTER builtin payload and associated GoRegisterReader
have been removed, as they ultimately provided little value, while being
annoying to add AARCH64-bit support for. The RETURN_MEMORY payload (with no
argument) can be used instead to return a gd pointer, if needed.


2020-12-01: Depthcharge Release 0.2.0 ("Clatter and Hiss")
----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/depthcharge/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Depthcharge Python module version
"""
__version__ = '0.3.0.dev0'
__version__ = '0.3.0'

0 comments on commit 6faf4e2

Please sign in to comment.