Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • v5.1.0
    [5.1.0] 2025-07-02
    
    Added
    
    - New lowLatency parameter: When enabled, load requests have a latency of 1
      cycle. When disabled, load requests have a latency 2 cycles. This may improve
      the throughput on some access patterns because it reduces port conflicts
      between loads and stores.
    - New coalescing buffer for write misses. On write misses, the write data is
      stored in a dedicated buffer, and coalesced when the refill response arrives
      before writing it into the cache.
    - Heuristic mechanism to reduce the latency of flush operations. The cache
      stores both the min and max index of dirty cachelines and perform the flush
      only on within that boundary.
    
    Changed
    
    - Use RTAB to drain pipeline upon UC/AMO requests. On a UC/AMO request, the
      cache puts the request into the RTAB, and waits for all transactions into the
      pipeline to be completed before replaying the UC/AMO request.
    
    Fixed
    
    - Missing reset of some registers in the uncached requests handler.
  • v5.0.1 Release: v5.0.1
    Release v5.0.1 2025-01-30
    
    This releases include some bugfixes and optimizations.
    
    Added
    
    - Support responses for CMO operations when ``need_rsp`` in the request is set
    - Support not-power-of-two number of entries in the Flush controller
    
    Fixed
    
    - Fix implementation of the data merge logic in the write buffer to improve the area
    - Fix assertions syntax
    - Fix CMO flushes shall unset the dirty bit in the cache directory
    - Fix handling of bus errors on write misses
    - Fix prefetch requests shall update PLRU bits
    - Fix initialization of the CMO handler flush request valid register
  • v5.0.0
    e33209cf · Update the CHANGELOG ·
    Release: v5.0.0
    v5.0.0
    
    The major modification in this release is the support of the write-back (WB) policy (in
    addition to the write-through (WT) policy). The cache can either implement one of these
    policies or both in a per-cacheline basis.
    
    - Added
    
      - Support of the WB policy.
      - Configuration parameters to choose between WT or WB, or both, at synthesis time.
      - Validation testbench compatible to Verilator.
      - Add a write-policy hint field in the request to select between WT and WB, dinamically.
    
    - Removed
    
      - WbufSendFeedThrough parameter removed
    
    - Changed
    
      - Arbitration between cacheable and uncacheable memory requests is done inside the
        HPDcache. The memory interface implements 5 channels, instead of 10.
      - The CMO type is into the operation field of the request (instead of the size field).
      - Select the victim cacheline at cache miss time (before was done on refill time). The
        slot is pre-allocated and written by the miss handler when the refill response arrives.
  • v4.0.0
    afd63424 · Update the changelog file ·
    Release: v4.0.0
  • v3.1.0
  • v3.0.0
    tag: release version 3.0.0
    
    Added:
    
    - Add support for virtually-indexed addressing
    
    Fixed:
    
    - Fix forwarding logic of uncacheable Icache response in the cva6 cache subsystem.
    - Fix wrong mask signal when implementing the MSHR in registers
  • v2.1.0
    3d18366e · Update the changelog ·
    hpdcache: v2.1.0 release
    
    Added
    
    - Add additional configuration to implement MSHR in registers (when the number
      of entries is low)
    
    Fixed
    
    - Fix cache data SRAM chip-select generation when word width is different than
      64 bits (e.g. 32 bits)
  • v2.0.0
    9f745f78 · Update changelog ·
    Release version 2.0.0 of the HPDcache
    
    Added
    
    - Add parameters in the HPDcache module to define the types of interfaces to
      the memory
    - Add helper verilog header file with macros to ease the type definition of
      interfaces to the memory
    - Add new event signals in the HPDCache top module
    - Add generic single-port RAM macros with byte-enable signals
    - Add parameters in the package to choose between RAM macros implementing
      byte-enable or bitmask for the different RAMs instances
    - Add additional assertions to verify parameters
    - Add additional configuration signal to inhibit write coalescing in the write
      buffer
    
    Removed
    
    - Remove base_id ports in the HPDCache top module
    - Remove nettype (wire,var) in ports as it looks like is badly supported in
      some cases by some simulation tools
    
    Changed
    
    - Split the hpdcache_pkg into: (1) the hpdcache_pkg contains internally defined
      parameters; (2) a new hpdcache_params_pkg that defines user parameters
    - New selection policy of ready requests in the replay table. It gives priority
      to requests in the same linked list.
    - The write buffer now accepts writes from requesters in a pending slot when it
      is waiting for the internal arbiter to forward the data to the NoC.
    
    Fixed
    
    - Correctly support HPDCACHE_ACCESS_WORDS=1
    - Correctly support HPDCACHE_ACCESS_WORDS=HPDCACHE_CL_WORDS
    - Fix width of the nlines count register in the HW memory prefetcher.