nop insertion added
[calu.git] / cpu / src / core_pkg.vhd
1 library IEEE;
2
3 use IEEE.std_logic_1164.all;
4 use IEEE.numeric_std.all;
5
6 use work.common_pkg.all;
7
8 package core_pkg is
9         
10         component fetch_stage is
11         generic (
12                         -- active reset value
13                         RESET_VALUE : std_logic;
14                         -- active logic value
15                         LOGIC_ACT : std_logic
16                         
17                         );
18         port(
19                 --System inputs
20                         clk : in std_logic;
21                         reset : in std_logic;
22
23                 --Data inputs
24                         jump_result : in instruction_addr_t;
25                         prediction_result : in instruction_addr_t;
26                         branch_prediction_bit : in std_logic;
27                         alu_jump_bit : in std_logic;
28
29                 --Data outputs
30                         instruction : out instruction_word_t
31
32                 );
33         end component fetch_stage;
34
35
36
37         component decode_stage is
38         generic (
39                         -- active reset value
40                         RESET_VALUE : std_logic;
41                         -- active logic value
42                         LOGIC_ACT : std_logic
43                         
44                         );
45         port(
46                 --System inputs
47                         clk : in std_logic;
48                         reset : in std_logic;
49
50                 --Data inputs
51                         instruction : in instruction_word_t;
52                         reg_w_addr : in std_logic_vector(REG_ADDR_WIDTH-1 downto 0);
53                         reg_wr_data : in gp_register_t;
54                         reg_we : in std_logic;
55                         nop : in std_logic;
56
57                 --Data outputs
58 --                      reg1_rd_data : out gp_register_t;
59 --                      reg2_rd_data : out gp_register_t;
60                         branch_prediction_res : out instruction_word_t;
61                         branch_prediction_bit : out std_logic;
62                         to_next_stage : out dec_op
63                 );
64         end component decode_stage;
65
66
67         component decoder is
68
69         port(
70                         instruction : in instruction_word_t;
71                         instr_spl : out instruction_rec
72                 
73                 );
74
75         end component decoder;
76
77         component execute_stage is
78         
79         generic (
80                         -- active reset value
81                         RESET_VALUE : std_logic
82                         -- active logic value
83                         --LOGIC_ACT : std_logic;
84                         
85                         );
86         port(
87                 --System inputs
88                         clk : in std_logic;
89                         reset : in std_logic;
90                         dec_instr : in dec_op;
91
92                 --System output
93                         result : out gp_register_t;--reg
94                         result_addr : out gp_addr_t;--reg
95                         addr : out word_t; --memaddr
96                         data : out gp_register_t; --mem data --ureg
97                         alu_jump : out std_logic;--reg
98                         brpr  : out std_logic;  --reg
99                         wr_en : out std_logic;--regop --reg
100                         dmem  : out std_logic;--memop
101                         dmem_write_en : out std_logic;
102                         hword  : out std_logic;
103                         byte_s : out std_logic
104                 );
105         end component execute_stage;
106
107
108
109         component writeback_stage is
110         generic (
111                         -- active reset value
112                         RESET_VALUE : std_logic;
113                         -- active logic value
114                         LOGIC_ACT : std_logic
115                         
116                         );
117         port(
118                 --System inputs
119                         clk : in std_logic;
120                         reset : in std_logic;
121
122                         result : in gp_register_t;      --reg  (alu result or jumpaddr)
123                         result_addr : in gp_addr_t;     --reg
124                         address : in word_t;            --ureg 
125                         ram_data : in word_t;           --ureg
126                         alu_jmp : in std_logic;         --reg
127                         br_pred : in std_logic;         --reg
128                         write_en : in std_logic;        --reg  (register file)
129                         dmem_en : in std_logic;         --ureg (jump addr in mem or in address)
130                         dmem_write_en : in std_logic;   --ureg
131                         hword : in std_logic;           --ureg
132                         byte_s : in std_logic;          --ureg  
133
134                         regfile_val : out gp_register_t;
135                         reg_we : out std_logic;
136                         reg_addr : out gp_addr_t;
137                         jump_addr : out instruction_addr_t;
138                         jump : out std_logic
139                 );
140         end component writeback_stage;
141
142
143
144 end package core_pkg;