corrections, clash fetch_action and self.fetch_action
[rv32.git] / cpu_fetch_stage.py
1 """
2 /*
3 * Copyright 2018 Jacob Lifshay
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 */
24 """
25
26 from migen import *
27 from migen.fhdl import verilog
28
29 #from riscvdefs import *
30 from cpudefs import *
31
32 reset_vector = 0x0 #32'hXXXXXXXX;
33 mtvec = 0x0 # 32'hXXXXXXXX;
34
35 class CPUFetchStage(Module):
36 def __init__(self):
37 self.clk = ClockSignal()
38 self.reset = ResetSignal()
39 #output [31:2] memory_interface_fetch_address,
40 self.memory_interface_fetch_address = Signal(32)[2:]
41 #input [31:0] memory_interface_fetch_data,
42 self.memory_interface_fetch_data = Signal(32)
43 self.memory_interface_fetch_valid = Signal()
44 self.fetch_action = Signal(fetch_action)
45 self.target_pc = Signal(32)
46 self.output_pc = Signal(32, reset=reset_vector)
47 self.output_instruction = Signal(32)
48 self.output_state = Signal(fetch_output_state,
49 reset=fetch_output_state_empty)
50
51 #self.comb += [
52 # self.cd_sys.clk.eq(self.clk),
53 # self.cd_sys.rst.eq(self.reset)
54 #]
55
56 fetch_pc = Signal(32, reset=reset_vector)
57
58 self.sync += If(self.fetch_action != fetch_action_wait,
59 self.output_pc.eq(fetch_pc))
60
61 self.memory_interface_fetch_address = fetch_pc[2:]
62
63 #initial output_pc <= reset_vector;
64 #initial output_state <= `fetch_output_state_empty;
65
66 delayed_instruction = Signal(32, reset=0)
67 delayed_instruction_valid = Signal(reset=0)
68
69 self.sync += delayed_instruction.eq(self.output_instruction)
70 self.sync += self.output_state.eq(fetch_output_state_empty)
71
72 self.comb += If(delayed_instruction_valid,
73 self.output_instruction.eq(delayed_instruction)
74 ).Else(
75 self.output_instruction.eq(self.memory_interface_fetch_data)
76 )
77
78 self.sync += delayed_instruction_valid.eq(self.fetch_action ==
79 fetch_action_wait)
80
81 fc = {
82 fetch_action_ack_trap:
83 If(self.memory_interface_fetch_valid,
84 [fetch_pc.eq(fetch_pc + 4),
85 self.output_state.eq(fetch_output_state_valid)]
86 ).Else(
87 [fetch_pc.eq(mtvec),
88 self.output_state.eq(fetch_output_state_trap)]
89 ),
90 fetch_action_fence:
91 [ fetch_pc.eq(self.output_pc + 4),
92 self.output_state.eq(fetch_output_state_empty)
93 ],
94 fetch_action_jump:
95 [ fetch_pc.eq(self.target_pc),
96 self.output_state.eq(fetch_output_state_empty)
97 ],
98 fetch_action_error_trap:
99 [fetch_pc.eq(mtvec),
100 self.output_state.eq(fetch_output_state_empty)
101 ],
102 fetch_action_wait:
103 [fetch_pc.eq(fetch_pc),
104 self.output_state.eq(fetch_output_state_valid)
105 ]
106 }
107 fc[fetch_action_default] = fc[fetch_action_ack_trap]
108 fc[fetch_action_noerror_trap] = fc[fetch_action_error_trap]
109 self.sync += Case(self.fetch_action,
110 fc).makedefault(fetch_action_default)
111
112 if __name__ == "__main__":
113 example = CPUFetchStage()
114 memory_interface_fetch_address = Signal(32)
115 print(verilog.convert(example,
116 { #example.clk,
117 #example.reset,
118 memory_interface_fetch_address,
119 example.memory_interface_fetch_data,
120 example.memory_interface_fetch_valid,
121 example.fetch_action,
122 example.target_pc,
123 example.output_pc,
124 example.output_instruction,
125 example.output_state }))