| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| module otbn_loop_controller |
| import otbn_pkg::*; |
| #( |
| parameter int ImemAddrWidth = 12 |
| ) ( |
| input clk_i, |
| input rst_ni, |
| |
| input insn_valid_i, |
| input [ImemAddrWidth-1:0] insn_addr_i, |
| input [ImemAddrWidth-1:0] next_insn_addr_i, |
| |
| input loop_start_req_i, |
| input loop_start_commit_i, |
| input [11:0] loop_bodysize_i, |
| input [31:0] loop_iterations_i, |
| |
| output loop_jump_o, |
| output [ImemAddrWidth-1:0] loop_jump_addr_o, |
| output loop_err_o, |
| |
| input branch_taken_i, |
| input otbn_stall_i |
| ); |
| // The loop controller has a current loop and then a stack of outer loops, this sets the size of |
| // the stack so maximum loop nesting depth is LoopStackDepth + 1. |
| localparam int unsigned LoopStackDepth = 7; |
| // ISA has a fixed 12 bits for loop_bodysize. When IMEM size is less than 16 kB (ImemAddrWidth |
| // < 14) some of these bits are ignored as a loop body cannot be greater than the IMEM size. |
| localparam int unsigned LoopEndAddrWidth = ImemAddrWidth < 14 ? 14 : ImemAddrWidth; |
| |
| typedef struct packed { |
| logic [ImemAddrWidth-1:0] loop_start; |
| logic [ImemAddrWidth:0] loop_end; |
| logic [31:0] loop_iterations; |
| } loop_info_t; |
| |
| logic loop_active_q, loop_active_d; |
| loop_info_t current_loop_q, current_loop_d; |
| |
| logic at_current_loop_end_insn; |
| logic current_loop_finish; |
| |
| loop_info_t next_loop; |
| logic next_loop_valid; |
| |
| loop_info_t new_loop; |
| logic [LoopEndAddrWidth:0] new_loop_end_addr_full; |
| logic [ImemAddrWidth:0] new_loop_end_addr_imem; |
| |
| logic loop_stack_push_req; |
| logic loop_stack_push; |
| logic loop_stack_full; |
| logic loop_stack_pop; |
| |
| logic loop_iteration_err; |
| logic loop_branch_err; |
| logic loop_stack_overflow_err; |
| logic loop_at_end_err; |
| |
| // The loop controller maintains a current loop and a loop stack. The current loop is the |
| // innermost loop and is valid when loop_active_q is set. The loop controller tracks the current |
| // address vs the current loop end address. When the current loop is active and the end address is |
| // reached a jump is performed (via loop_jump_o) back to the top of the loop if iterations of the |
| // loop remain. When a new loop is started if a current loop exists it is pushed to the loop |
| // stack. When the current loop ends a loop is popped off the loop stack to become the current |
| // loop if the loop stack isn't empty. |
| |
| // Determine end address of incoming loop from LOOP instruction (valid on loop_start_req_i and |
| // specified by loop_bodysize_i and loop_iterations_i). |
| if (ImemAddrWidth <= LoopEndAddrWidth) begin : g_new_loop_end_addr_small_imem |
| // Where the Imem address width is small enough that `loop_bodysize` could cause overflow when |
| // calculating the end the address then first calculate the 'full' address using sufficient |
| // width to avoid overflow. |
| assign new_loop_end_addr_full = {{(LoopEndAddrWidth-ImemAddrWidth){1'b0}}, insn_addr_i} + |
| {loop_bodysize_i, 2'b00} + 'd4; |
| |
| // Truncate the full address to get an Imem address. |
| assign new_loop_end_addr_imem[ImemAddrWidth-1:0] = new_loop_end_addr_full[ImemAddrWidth-1:0]; |
| |
| // If the end address calculation did overflow Imem bounds set top bit of stored end address to |
| // indicate this. |
| assign new_loop_end_addr_imem[ImemAddrWidth] = |
| |new_loop_end_addr_full[LoopEndAddrWidth:ImemAddrWidth]; |
| end else begin : g_new_loop_end_addr_big_imem |
| // Where Imem address width is large enough that `loop_bodysize` won't cause overflow when |
| // calculating the end address pass 'full' address straight through as Imem address. |
| assign new_loop_end_addr_full = insn_addr_i + {{(ImemAddrWidth-LoopEndAddrWidth){1'b0}}, |
| loop_bodysize_i, 2'b00} + 'd4; |
| |
| assign new_loop_end_addr_imem = new_loop_end_addr_full; |
| end |
| |
| assign new_loop = '{ |
| loop_start: next_insn_addr_i, |
| loop_end: new_loop_end_addr_imem, |
| loop_iterations: loop_iterations_i |
| }; |
| |
| // `loop_end` has one more bit than Imem width; this is set when the end address calculation |
| // overflows. When this is the case the end instruction is never reached. |
| assign at_current_loop_end_insn = |
| loop_active_q & (current_loop_q.loop_end == {1'b0, insn_addr_i}) & insn_valid_i; |
| |
| // The iteration decrement happens at loop end. So when execution reaches the end instruction of |
| // the current loop with 1 iteration that is the end of the final iteration and the current loop |
| // finishes. |
| assign current_loop_finish = at_current_loop_end_insn & (current_loop_q.loop_iterations == 1) |
| & ~otbn_stall_i; |
| |
| // Jump to top of current loop when execution reaches the end instruction of the current loop it |
| // isn't finished. |
| assign loop_jump_o = at_current_loop_end_insn & ~current_loop_finish; |
| assign loop_jump_addr_o = current_loop_q.loop_start; |
| |
| assign loop_iteration_err = (loop_iterations_i == '0) & loop_start_req_i; |
| assign loop_branch_err = at_current_loop_end_insn & branch_taken_i; |
| assign loop_stack_overflow_err = loop_stack_push_req & loop_stack_full; |
| assign loop_at_end_err = at_current_loop_end_insn & loop_start_req_i; |
| |
| assign loop_err_o = loop_iteration_err | |
| loop_branch_err | |
| loop_stack_overflow_err | |
| loop_at_end_err; |
| |
| always_comb begin |
| loop_active_d = loop_active_q; |
| current_loop_d = current_loop_q; |
| |
| // Do not take any state altering actions whilst OTBN is stalled. |
| if (!otbn_stall_i) begin |
| if (loop_start_req_i && loop_start_commit_i) begin |
| // A new loop is starting (executing LOOP instruction), so incoming loop becomes the current |
| // loop. |
| loop_active_d = 1'b1; |
| current_loop_d = new_loop; |
| end else if (current_loop_finish) begin |
| // Current loop has finished, check to see if another loop is available on the loop stack. |
| if (next_loop_valid) begin |
| // Loop at top of loop stack (if it exists) becomes the current loop. |
| current_loop_d = next_loop; |
| end else begin |
| // Otherwise (loop stack empty) no loop is active. |
| loop_active_d = 1'b0; |
| end |
| end else if (at_current_loop_end_insn) begin |
| // Reached end of the current loop so decrement the iteration counter for the current loop. |
| current_loop_d.loop_iterations = current_loop_q.loop_iterations - 1'b1; |
| end |
| end |
| end |
| |
| // The OTBN controller must not commit a loop request if it sees a loop error. |
| `ASSERT(NoStartCommitIfLoopErr, loop_start_req_i && loop_start_commit_i |-> !loop_err_o); |
| |
| always_ff @(posedge clk_i or negedge rst_ni) begin |
| if (!rst_ni) begin |
| loop_active_q <= 1'b0; |
| end else begin |
| loop_active_q <= loop_active_d; |
| end |
| end |
| |
| always_ff @(posedge clk_i) begin |
| current_loop_q <= current_loop_d; |
| end |
| |
| // Push current loop to the loop stack when a new loop starts (LOOP instruction executed) and |
| // there is an active loop. loop_stack_push_req indicates a push is requested and loop_stack_push |
| // commands it to happen (when the loop start is committed). |
| assign loop_stack_push_req = loop_start_req_i & loop_active_q; |
| assign loop_stack_push = loop_start_commit_i & loop_stack_push_req; |
| |
| // Pop from the loop stack when the current loop finishes. Stack internally checks to see if it's |
| // empty when asked to pop so no need to factor that in here. |
| assign loop_stack_pop = current_loop_finish; |
| |
| otbn_stack #( |
| .StackWidth($bits(loop_info_t)), |
| .StackDepth(LoopStackDepth) |
| ) loop_info_stack ( |
| .clk_i, |
| .rst_ni, |
| |
| .full_o (loop_stack_full), |
| .push_data_i (current_loop_q), |
| .push_i (loop_stack_push), |
| |
| .pop_i (loop_stack_pop), |
| .top_data_o (next_loop), |
| .top_valid_o (next_loop_valid) |
| ); |
| |
| `ASSERT(NoLoopStackPushAndPop, !(loop_stack_push && loop_stack_pop)) |
| endmodule |