Today the sbaccess16 and sbaccess8 fields in the debug module's sbcs register are fixed to 0:
|
sbcs_d.sbaccess16 = 1'b0; |
This prevents memory reads and writes of smaller that 32 bits from being completed using the SBA interface, and particularly blocks the ability to implement software breakpoints, as that requires reading/writing 16 bit instructions. While hardware supported breakpoints are available, they are limited in quantity, so we would like to verify that software breakpoints work as an alternative.
Is it possible to enable these smaller SBA access sizes?
Today the
sbaccess16andsbaccess8fields in the debug module'ssbcsregister are fixed to 0:sonata-system/vendor/cheriot_debug_module/src/dm_csrs.sv
Line 525 in 5683774
This prevents memory reads and writes of smaller that 32 bits from being completed using the SBA interface, and particularly blocks the ability to implement software breakpoints, as that requires reading/writing 16 bit instructions. While hardware supported breakpoints are available, they are limited in quantity, so we would like to verify that software breakpoints work as an alternative.
Is it possible to enable these smaller SBA access sizes?