Skip to content

Commit 1ff0dfc

Browse files
nazar-codethinkJoseph Baker
andauthored
Fix typos (#3041)
Co-authored-by: Joseph Baker <joseph.baker@codethink.co.uk>
1 parent 2ac5563 commit 1ff0dfc

14 files changed

Lines changed: 22 additions & 22 deletions

File tree

core/amo_buffer.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Author: Florian Zaruba, ETH Zurich
1212
// Date: 20.09.2018
1313
// Description: Buffers AMO requests
14-
// This unit buffers an atomic memory operations for the cache subsystem.
14+
// This unit buffers an atomic memory operation for the cache subsystem.
1515
// Furthermore it handles interfacing with the commit stage
1616

1717
module amo_buffer #(

core/cache_subsystem/wt_cache_subsystem.sv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module wt_cache_subsystem
9191
logic [CVA6Cfg.XLEN-1:0] data; // word width of processor (no block stores at the moment)
9292
logic [CVA6Cfg.DCACHE_USER_WIDTH-1:0] user; // user width of processor (no block stores at the moment)
9393
logic nc; // noncacheable
94-
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // threadi id (used as transaction id in Ariane)
94+
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // thread id (used as transaction id in Ariane)
9595
ariane_pkg::amo_t amo_op; // amo opcode
9696
};
9797

@@ -100,7 +100,7 @@ module wt_cache_subsystem
100100
logic [CVA6Cfg.DCACHE_LINE_WIDTH-1:0] data; // full cache line width
101101
logic [CVA6Cfg.DCACHE_USER_LINE_WIDTH-1:0] user; // user bits
102102
dcache_inval_t inv; // invalidation vector
103-
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // threadi id (used as transaction id in Ariane)
103+
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // thread id (used as transaction id in Ariane)
104104
};
105105

106106
logic icache_adapter_data_req, adapter_icache_data_ack, adapter_icache_rtrn_vld;

core/cache_subsystem/wt_dcache_missunit.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module wt_dcache_missunit
5353
output logic [NumPorts-1:0] miss_replay_o,
5454
// signals response from memory
5555
output logic [NumPorts-1:0] miss_rtrn_vld_o,
56-
output logic [CVA6Cfg.MEM_TID_WIDTH-1:0] miss_rtrn_id_o, // only used for writes, set to zero fro reads
56+
output logic [CVA6Cfg.MEM_TID_WIDTH-1:0] miss_rtrn_id_o, // only used for writes, set to zero for reads
5757
// from writebuffer
5858
input logic [CVA6Cfg.DCACHE_MAX_TX-1:0][CVA6Cfg.PLEN-1:0] tx_paddr_i, // used to check for address collisions with read operations
5959
input logic [CVA6Cfg.DCACHE_MAX_TX-1:0] tx_vld_i, // used to check for address collisions with read operations

core/commit_stage.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module commit_stage
7272
output logic [CVA6Cfg.TRANS_ID_BITS-1:0] commit_tran_id_o,
7373
// Valid AMO in commit stage - EX_STAGE
7474
output logic amo_valid_commit_o,
75-
// no store is pending - EX_STAGE
75+
// No store is pending - EX_STAGE
7676
input logic no_st_pending_i,
7777
// Commit the pending CSR instruction - EX_STAGE
7878
output logic commit_csr_o,

core/cva6.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ module cva6
191191
logic [CVA6Cfg.ICACHE_INDEX_WIDTH-1:0] idx; // physical address to invalidate
192192
logic [CVA6Cfg.ICACHE_SET_ASSOC_WIDTH-1:0] way; // way to invalidate
193193
} inv; // invalidation vector
194-
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // threadi id (used as transaction id in Ariane)
194+
logic [CVA6Cfg.MEM_TID_WIDTH-1:0] tid; // thread id (used as transaction id in Ariane)
195195
},
196196

197197
// D$ data requests

core/ex_stage.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ module ex_stage
214214
input icache_arsp_t icache_areq_i,
215215
// icache translation request - CACHE
216216
output icache_areq_t icache_areq_o,
217-
// Data cache request ouput - CACHE
217+
// Data cache request output - CACHE
218218
input dcache_req_o_t [2:0] dcache_req_ports_i,
219219
// Data cache request input - CACHE
220220
output dcache_req_i_t [2:0] dcache_req_ports_o,

core/frontend/instr_queue.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module instr_queue
7676
input logic [CVA6Cfg.VLEN-1:0] predict_address_i,
7777
// Instruction predict address - FRONTEND
7878
input ariane_pkg::cf_t [CVA6Cfg.INSTR_PER_FETCH-1:0] cf_type_i,
79-
// Replay instruction because one of the FIFO was full - FRONTEND
79+
// Replay instruction because one of the FIFO was full - FRONTEND
8080
output logic replay_o,
8181
// Address at which to replay the fetch - FRONTEND
8282
output logic [CVA6Cfg.VLEN-1:0] replay_addr_o,

core/id_stage.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module id_stage #(
9191
input x_compressed_resp_t compressed_resp_i,
9292
output logic compressed_valid_o,
9393
output x_compressed_req_t compressed_req_o,
94-
// Data cache request ouput - CACHE
94+
// Data cache request output - CACHE
9595
input dcache_req_o_t dcache_req_ports_i,
9696
// Data cache request input - CACHE
9797
output dcache_req_i_t dcache_req_ports_o

core/include/wt_cache_pkg.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
package wt_cache_pkg;
2424

25-
// these parames need to coincide with the
25+
// these parameters need to coincide with the
2626
// L1.5 parameterization, do not change
2727
`ifdef PITON_ARIANE
2828

core/issue_read_operands.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ module issue_read_operands
746746
end
747747
end
748748
// FU select, assert the correct valid out signal (in the next cycle)
749-
// This needs to be like this to make verilator happy. I know its ugly.
749+
// This needs to be like this to make verilator happy. I know it's ugly.
750750
always_ff @(posedge clk_i or negedge rst_ni) begin
751751
if (!rst_ni) begin
752752
alu_valid_q <= '0;

0 commit comments

Comments
 (0)