Skip to content

Commit

Permalink
Merge pull request #80 from pulp-platform/fix-dm-addrs
Browse files Browse the repository at this point in the history
Fix dm addrs
  • Loading branch information
bluewww committed Apr 15, 2022
2 parents ee89f6a + 86b59c2 commit b71704c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [4.0.1] - 2022-04-15
### Fixed
- Fix debug module addresses

## [4.0.0] - 2022-04-08
### Changed
- Update RI5CY to CV32E40P
- Remove PULP_TRAINING references
### Fixed
- Wire up uart char and error events

## [3.3.0] - 2022-04-04
## Changed
- Update riscv-dbg to v0.5.0 (synchronous jtag reset and bus error signaling)

## [3.2.0] - 2022-04-01
## Changed
- Update bender dependency link for udma components, ibex, cv32e40p
- Update interface for udma_i2c with unconnected `nack`
## Fixed
- Fix ibex register file for FPGA

## [3.1.1] - 2022-03-11
### Fixed
- Fix cdc reset signal for cluster

## [3.1.0] - 2022-03-09
### Changed
- Added simulation stdout (replacing the hierarchical access in the tb hack)
Expand Down
6 changes: 4 additions & 2 deletions rtl/fc/fc_subsystem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.

`include "periph_bus_defines.sv"

module fc_subsystem import cv32e40p_apu_core_pkg::*; #(
parameter CORE_TYPE = 0,
parameter USE_XPULP = 1,
Expand Down Expand Up @@ -169,9 +171,9 @@ module fc_subsystem import cv32e40p_apu_core_pkg::*; #(
.scan_cg_en_i (test_en_i),
.boot_addr_i (boot_addr),
.mtvec_addr_i (32'h0),
.dm_halt_addr_i (32'h1A110800),
.dm_halt_addr_i (`DEBUG_START_ADDR + dm::HaltAddress[31:0]),
.hart_id_i (hart_id),
.dm_exception_addr_i (32'h1A11080C),
.dm_exception_addr_i (`DEBUG_START_ADDR + dm::ExceptionAddress[31:0]),

// Instruction memory interface
.instr_req_o (obi_instr_req),
Expand Down

0 comments on commit b71704c

Please sign in to comment.