Skip to content

Commit

Permalink
Add missing PITON_ARIANE in wt_cache_subsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
msfschaffner authored and zarubaf committed Mar 19, 2019
1 parent 48be94f commit 2c701ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/cache_subsystem/wt_cache_subsystem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ wt_cache_pkg::dcache_req_t dcache_adapter;
wt_cache_pkg::dcache_rtrn_t adapter_dcache;

wt_icache #(
`ifdef PITON_ARIANE
.Axi64BitCompliant ( 1'b0 ),
`else
.Axi64BitCompliant ( 1'b1 ),
`endif
// use ID 0 for icache reads
.RdTxId ( 0 ),
.CachedAddrBeg ( CachedAddrBeg ),
Expand Down Expand Up @@ -103,7 +107,11 @@ wt_icache #(
// they have equal prio and are RR arbited
// Port 2 is write only and goes into the merging write buffer
wt_dcache #(
.Axi64BitCompliant ( 1'b1 ),
`ifdef PITON_ARIANE
.Axi64BitCompliant ( 1'b0 ),
`else
.Axi64BitCompliant ( 1'b1 ),
`endif
// use ID 1 for dcache reads and amos. note that the writebuffer
// uses all IDs up to DCACHE_MAX_TX-1 for write transactions.
.RdAmoTxId ( 1 ),
Expand Down

0 comments on commit 2c701ed

Please sign in to comment.