OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [rtl/] [core/] [neorv32_cpu.vhd] - Blame information for rev 35

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 zero_gravi
-- #################################################################################################
2
-- # << NEORV32 - CPU Top Entity >>                                                                #
3
-- # ********************************************************************************************* #
4 18 zero_gravi
-- # NEORV32 CPU:                                                                                  #
5 13 zero_gravi
-- # * neorv32_cpu.vhd                  : CPU top entity                                           #
6
-- #   * neorv32_cpu_alu.vhd            : Arithmetic/logic unit                                    #
7
-- #   * neorv32_cpu_bus.vhd            : Instruction and data bus interface unit                  #
8
-- #   * neorv32_cpu_cp_muldiv.vhd      : MULDIV co-processor                                      #
9
-- #   * neorv32_cpu_ctrl.vhd           : CPU control and CSR system                               #
10
-- #     * neorv32_cpu_decompressor.vhd : Compressed instructions decoder                          #
11
-- #   * neorv32_cpu_regfile.vhd        : Data register file                                       #
12 18 zero_gravi
-- #                                                                                               #
13 29 zero_gravi
-- # Check out the processor's data sheet for more information: docs/NEORV32.pdf                   #
14 2 zero_gravi
-- # ********************************************************************************************* #
15
-- # BSD 3-Clause License                                                                          #
16
-- #                                                                                               #
17
-- # Copyright (c) 2020, Stephan Nolting. All rights reserved.                                     #
18
-- #                                                                                               #
19
-- # Redistribution and use in source and binary forms, with or without modification, are          #
20
-- # permitted provided that the following conditions are met:                                     #
21
-- #                                                                                               #
22
-- # 1. Redistributions of source code must retain the above copyright notice, this list of        #
23
-- #    conditions and the following disclaimer.                                                   #
24
-- #                                                                                               #
25
-- # 2. Redistributions in binary form must reproduce the above copyright notice, this list of     #
26
-- #    conditions and the following disclaimer in the documentation and/or other materials        #
27
-- #    provided with the distribution.                                                            #
28
-- #                                                                                               #
29
-- # 3. Neither the name of the copyright holder nor the names of its contributors may be used to  #
30
-- #    endorse or promote products derived from this software without specific prior written      #
31
-- #    permission.                                                                                #
32
-- #                                                                                               #
33
-- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS   #
34
-- # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF               #
35
-- # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE    #
36
-- # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,     #
37
-- # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
38
-- # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED    #
39
-- # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     #
40
-- # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED  #
41
-- # OF THE POSSIBILITY OF SUCH DAMAGE.                                                            #
42
-- # ********************************************************************************************* #
43
-- # The NEORV32 Processor - https://github.com/stnolting/neorv32              (c) Stephan Nolting #
44
-- #################################################################################################
45
 
46
library ieee;
47
use ieee.std_logic_1164.all;
48
use ieee.numeric_std.all;
49
 
50
library neorv32;
51
use neorv32.neorv32_package.all;
52
 
53
entity neorv32_cpu is
54
  generic (
55
    -- General --
56 14 zero_gravi
    HW_THREAD_ID                 : std_ulogic_vector(31 downto 0):= (others => '0'); -- hardware thread id
57
    CPU_BOOT_ADDR                : std_ulogic_vector(31 downto 0):= (others => '0'); -- cpu boot address
58 2 zero_gravi
    -- RISC-V CPU Extensions --
59 12 zero_gravi
    CPU_EXTENSION_RISCV_C        : boolean := false; -- implement compressed extension?
60
    CPU_EXTENSION_RISCV_E        : boolean := false; -- implement embedded RF extension?
61
    CPU_EXTENSION_RISCV_M        : boolean := false; -- implement muld/div extension?
62 15 zero_gravi
    CPU_EXTENSION_RISCV_U        : boolean := false; -- implement user mode extension?
63 12 zero_gravi
    CPU_EXTENSION_RISCV_Zicsr    : boolean := true;  -- implement CSR system?
64
    CPU_EXTENSION_RISCV_Zifencei : boolean := true;  -- implement instruction stream sync.?
65 19 zero_gravi
    -- Extension Options --
66
    FAST_MUL_EN                  : boolean := false; -- use DSPs for M extension's multiplier
67 34 zero_gravi
    FAST_SHIFT_EN                : boolean := false; -- use barrel shifter for shift operations
68 15 zero_gravi
    -- Physical Memory Protection (PMP) --
69
    PMP_USE                      : boolean := false; -- implement PMP?
70 16 zero_gravi
    PMP_NUM_REGIONS              : natural := 4;     -- number of regions (max 8)
71 30 zero_gravi
    PMP_GRANULARITY              : natural := 14     -- minimal region granularity (1=8B, 2=16B, 3=32B, ...) default is 64k
72 2 zero_gravi
  );
73
  port (
74
    -- global control --
75 14 zero_gravi
    clk_i          : in  std_ulogic := '0'; -- global clock, rising edge
76
    rstn_i         : in  std_ulogic := '0'; -- global reset, low-active, async
77 12 zero_gravi
    -- instruction bus interface --
78
    i_bus_addr_o   : out std_ulogic_vector(data_width_c-1 downto 0); -- bus access address
79 14 zero_gravi
    i_bus_rdata_i  : in  std_ulogic_vector(data_width_c-1 downto 0) := (others => '0'); -- bus read data
80 12 zero_gravi
    i_bus_wdata_o  : out std_ulogic_vector(data_width_c-1 downto 0); -- bus write data
81
    i_bus_ben_o    : out std_ulogic_vector(03 downto 0); -- byte enable
82
    i_bus_we_o     : out std_ulogic; -- write enable
83
    i_bus_re_o     : out std_ulogic; -- read enable
84
    i_bus_cancel_o : out std_ulogic; -- cancel current bus transaction
85 14 zero_gravi
    i_bus_ack_i    : in  std_ulogic := '0'; -- bus transfer acknowledge
86
    i_bus_err_i    : in  std_ulogic := '0'; -- bus transfer error
87 12 zero_gravi
    i_bus_fence_o  : out std_ulogic; -- executed FENCEI operation
88 35 zero_gravi
    i_bus_priv_o   : out std_ulogic_vector(1 downto 0); -- privilege level
89 12 zero_gravi
    -- data bus interface --
90
    d_bus_addr_o   : out std_ulogic_vector(data_width_c-1 downto 0); -- bus access address
91 14 zero_gravi
    d_bus_rdata_i  : in  std_ulogic_vector(data_width_c-1 downto 0) := (others => '0'); -- bus read data
92 12 zero_gravi
    d_bus_wdata_o  : out std_ulogic_vector(data_width_c-1 downto 0); -- bus write data
93
    d_bus_ben_o    : out std_ulogic_vector(03 downto 0); -- byte enable
94
    d_bus_we_o     : out std_ulogic; -- write enable
95
    d_bus_re_o     : out std_ulogic; -- read enable
96
    d_bus_cancel_o : out std_ulogic; -- cancel current bus transaction
97 14 zero_gravi
    d_bus_ack_i    : in  std_ulogic := '0'; -- bus transfer acknowledge
98
    d_bus_err_i    : in  std_ulogic := '0'; -- bus transfer error
99 12 zero_gravi
    d_bus_fence_o  : out std_ulogic; -- executed FENCE operation
100 35 zero_gravi
    d_bus_priv_o   : out std_ulogic_vector(1 downto 0); -- privilege level
101 11 zero_gravi
    -- system time input from MTIME --
102 14 zero_gravi
    time_i         : in  std_ulogic_vector(63 downto 0) := (others => '0'); -- current system time
103
    -- interrupts (risc-v compliant) --
104
    msw_irq_i      : in  std_ulogic := '0'; -- machine software interrupt
105
    mext_irq_i     : in  std_ulogic := '0'; -- machine external interrupt
106
    mtime_irq_i    : in  std_ulogic := '0'; -- machine timer interrupt
107
    -- fast interrupts (custom) --
108
    firq_i         : in  std_ulogic_vector(3 downto 0) := (others => '0')
109 2 zero_gravi
  );
110
end neorv32_cpu;
111
 
112
architecture neorv32_cpu_rtl of neorv32_cpu is
113
 
114
  -- local signals --
115 12 zero_gravi
  signal ctrl       : std_ulogic_vector(ctrl_width_c-1 downto 0); -- main control bus
116
  signal alu_cmp    : std_ulogic_vector(1 downto 0); -- alu comparator result
117
  signal imm        : std_ulogic_vector(data_width_c-1 downto 0); -- immediate
118
  signal instr      : std_ulogic_vector(data_width_c-1 downto 0); -- new instruction
119
  signal rs1, rs2   : std_ulogic_vector(data_width_c-1 downto 0); -- source registers
120
  signal alu_res    : std_ulogic_vector(data_width_c-1 downto 0); -- alu result
121
  signal rdata      : std_ulogic_vector(data_width_c-1 downto 0); -- memory read data
122
  signal alu_wait   : std_ulogic; -- alu is busy due to iterative unit
123
  signal bus_i_wait : std_ulogic; -- wait for current bus instruction fetch
124
  signal bus_d_wait : std_ulogic; -- wait for current bus data access
125
  signal csr_rdata  : std_ulogic_vector(data_width_c-1 downto 0); -- csr read data
126
  signal mar        : std_ulogic_vector(data_width_c-1 downto 0); -- current memory address register
127
  signal ma_instr   : std_ulogic; -- misaligned instruction address
128
  signal ma_load    : std_ulogic; -- misaligned load data address
129
  signal ma_store   : std_ulogic; -- misaligned store data address
130
  signal be_instr   : std_ulogic; -- bus error on instruction access
131
  signal be_load    : std_ulogic; -- bus error on load data access
132
  signal be_store   : std_ulogic; -- bus error on store data access
133
  signal fetch_pc   : std_ulogic_vector(data_width_c-1 downto 0); -- pc for instruction fetch
134
  signal curr_pc    : std_ulogic_vector(data_width_c-1 downto 0); -- current pc (for current executed instruction)
135 27 zero_gravi
  signal next_pc    : std_ulogic_vector(data_width_c-1 downto 0); -- next pc (for next to-be-executed instruction)
136 2 zero_gravi
 
137
  -- co-processor interface --
138
  signal cp0_data,  cp1_data  : std_ulogic_vector(data_width_c-1 downto 0);
139
  signal cp0_valid, cp1_valid : std_ulogic;
140 19 zero_gravi
  signal cp0_start, cp1_start : std_ulogic;
141 2 zero_gravi
 
142 15 zero_gravi
  -- pmp interface --
143
  signal pmp_addr  : pmp_addr_if_t;
144
  signal pmp_ctrl  : pmp_ctrl_if_t;
145
  signal priv_mode : std_ulogic_vector(1 downto 0); -- current CPU privilege level
146
 
147 2 zero_gravi
begin
148
 
149 15 zero_gravi
  -- Sanity Checks --------------------------------------------------------------------------
150
  -- -------------------------------------------------------------------------------------------
151 23 zero_gravi
  -- CSR system --
152
  assert not (CPU_EXTENSION_RISCV_Zicsr = false) report "NEORV32 CPU CONFIG WARNING! No exception/interrupt/machine features available when CPU_EXTENSION_RISCV_Zicsr = false." severity warning;
153
  -- U-extension requires Zicsr extension --
154
  assert not ((CPU_EXTENSION_RISCV_Zicsr = false) and (CPU_EXTENSION_RISCV_U = true)) report "NEORV32 CPU CONFIG ERROR! User mode requires CPU_EXTENSION_RISCV_Zicsr extension." severity error;
155
  -- PMP requires Zicsr extension --
156
  assert not ((CPU_EXTENSION_RISCV_Zicsr = false) and (PMP_USE = true)) report "NEORV32 CPU CONFIG ERROR! Physical memory protection (PMP) requires CPU_EXTENSION_RISCV_Zicsr extension." severity error;
157
  -- PMP regions --
158
  assert not ((PMP_NUM_REGIONS > pmp_max_r_c) and (PMP_USE = true)) report "NEORV32 CPU CONFIG ERROR! Number of PMP regions out of valid range." severity error;
159
  -- PMP granulartiy --
160
  assert not (((PMP_GRANULARITY < 1) or (PMP_GRANULARITY > 32)) and (PMP_USE = true)) report "NEORV32 CPU CONFIG ERROR! Invalid PMP granulartiy (0 < G < 33)." severity error;
161 15 zero_gravi
 
162 23 zero_gravi
 
163 2 zero_gravi
  -- Control Unit ---------------------------------------------------------------------------
164
  -- -------------------------------------------------------------------------------------------
165
  neorv32_cpu_control_inst: neorv32_cpu_control
166
  generic map (
167
    -- General --
168 27 zero_gravi
    HW_THREAD_ID                 => HW_THREAD_ID,    -- hardware thread id
169
    CPU_BOOT_ADDR                => CPU_BOOT_ADDR,   -- cpu boot address
170 2 zero_gravi
    -- RISC-V CPU Extensions --
171 15 zero_gravi
    CPU_EXTENSION_RISCV_C        => CPU_EXTENSION_RISCV_C,        -- implement compressed extension?
172
    CPU_EXTENSION_RISCV_E        => CPU_EXTENSION_RISCV_E,        -- implement embedded RF extension?
173
    CPU_EXTENSION_RISCV_M        => CPU_EXTENSION_RISCV_M,        -- implement muld/div extension?
174
    CPU_EXTENSION_RISCV_U        => CPU_EXTENSION_RISCV_U,        -- implement user mode extension?
175
    CPU_EXTENSION_RISCV_Zicsr    => CPU_EXTENSION_RISCV_Zicsr,    -- implement CSR system?
176
    CPU_EXTENSION_RISCV_Zifencei => CPU_EXTENSION_RISCV_Zifencei, -- implement instruction stream sync.?
177
    -- Physical memory protection (PMP) --
178
    PMP_USE                      => PMP_USE,         -- implement physical memory protection?
179
    PMP_NUM_REGIONS              => PMP_NUM_REGIONS, -- number of regions (1..4)
180
    PMP_GRANULARITY              => PMP_GRANULARITY  -- granularity (0=none, 1=8B, 2=16B, 3=32B, ...)
181 2 zero_gravi
  )
182
  port map (
183
    -- global control --
184
    clk_i         => clk_i,       -- global clock, rising edge
185
    rstn_i        => rstn_i,      -- global reset, low-active, async
186
    ctrl_o        => ctrl,        -- main control bus
187
    -- status input --
188
    alu_wait_i    => alu_wait,    -- wait for ALU
189 12 zero_gravi
    bus_i_wait_i  => bus_i_wait,  -- wait for bus
190
    bus_d_wait_i  => bus_d_wait,  -- wait for bus
191 2 zero_gravi
    -- data input --
192
    instr_i       => instr,       -- instruction
193
    cmp_i         => alu_cmp,     -- comparator status
194 27 zero_gravi
    alu_res_i     => alu_res,     -- ALU processing result
195 2 zero_gravi
    -- data output --
196
    imm_o         => imm,         -- immediate
197 6 zero_gravi
    fetch_pc_o    => fetch_pc,    -- PC for instruction fetch
198
    curr_pc_o     => curr_pc,     -- current PC (corresponding to current instruction)
199 27 zero_gravi
    next_pc_o     => next_pc,     -- next PC (corresponding to current instruction
200 2 zero_gravi
    csr_rdata_o   => csr_rdata,   -- CSR read data
201 14 zero_gravi
    -- interrupts (risc-v compliant) --
202
    msw_irq_i     => msw_irq_i,   -- machine software interrupt
203
    mext_irq_i    => mext_irq_i,  -- machine external interrupt
204 2 zero_gravi
    mtime_irq_i   => mtime_irq_i, -- machine timer interrupt
205 14 zero_gravi
    -- fast interrupts (custom) --
206
    firq_i        => firq_i,
207 11 zero_gravi
    -- system time input from MTIME --
208
    time_i        => time_i,      -- current system time
209 15 zero_gravi
    -- physical memory protection --
210
    pmp_addr_o    => pmp_addr,    -- addresses
211
    pmp_ctrl_o    => pmp_ctrl,    -- configs
212
    priv_mode_o   => priv_mode,   -- current CPU privilege level
213 2 zero_gravi
    -- bus access exceptions --
214
    mar_i         => mar,         -- memory address register
215
    ma_instr_i    => ma_instr,    -- misaligned instruction address
216
    ma_load_i     => ma_load,     -- misaligned load data address
217
    ma_store_i    => ma_store,    -- misaligned store data address
218
    be_instr_i    => be_instr,    -- bus error on instruction access
219
    be_load_i     => be_load,     -- bus error on load data access
220 12 zero_gravi
    be_store_i    => be_store     -- bus error on store data access
221 2 zero_gravi
  );
222
 
223
 
224
  -- Register File --------------------------------------------------------------------------
225
  -- -------------------------------------------------------------------------------------------
226
  neorv32_regfile_inst: neorv32_cpu_regfile
227
  generic map (
228
    CPU_EXTENSION_RISCV_E => CPU_EXTENSION_RISCV_E -- implement embedded RF extension?
229
  )
230
  port map (
231
    -- global control --
232
    clk_i  => clk_i,              -- global clock, rising edge
233
    ctrl_i => ctrl,               -- main control bus
234
    -- data input --
235
    mem_i  => rdata,              -- memory read data
236
    alu_i  => alu_res,            -- ALU result
237
    csr_i  => csr_rdata,          -- CSR read data
238 13 zero_gravi
    pc_i   => next_pc,            -- next pc (for linking)
239 2 zero_gravi
    -- data output --
240
    rs1_o  => rs1,                -- operand 1
241
    rs2_o  => rs2                 -- operand 2
242
  );
243
 
244
 
245
  -- ALU ------------------------------------------------------------------------------------
246
  -- -------------------------------------------------------------------------------------------
247
  neorv32_cpu_alu_inst: neorv32_cpu_alu
248 11 zero_gravi
  generic map (
249 34 zero_gravi
    CPU_EXTENSION_RISCV_M => CPU_EXTENSION_RISCV_M, -- implement muld/div extension?
250
    FAST_SHIFT_EN         => FAST_SHIFT_EN          -- use barrel shifter for shift operations
251 11 zero_gravi
  )
252 2 zero_gravi
  port map (
253
    -- global control --
254
    clk_i       => clk_i,         -- global clock, rising edge
255
    rstn_i      => rstn_i,        -- global reset, low-active, async
256
    ctrl_i      => ctrl,          -- main control bus
257
    -- data input --
258
    rs1_i       => rs1,           -- rf source 1
259
    rs2_i       => rs2,           -- rf source 2
260 6 zero_gravi
    pc2_i       => curr_pc,       -- delayed PC
261 2 zero_gravi
    imm_i       => imm,           -- immediate
262
    -- data output --
263
    cmp_o       => alu_cmp,       -- comparator status
264
    res_o       => alu_res,       -- ALU result
265
    -- co-processor interface --
266 19 zero_gravi
    cp0_start_o => cp0_start,     -- trigger co-processor 0
267 2 zero_gravi
    cp0_data_i  => cp0_data,      -- co-processor 0 result
268
    cp0_valid_i => cp0_valid,     -- co-processor 0 result valid
269 19 zero_gravi
    cp1_start_o => cp1_start,     -- trigger co-processor 1
270 2 zero_gravi
    cp1_data_i  => cp1_data,      -- co-processor 1 result
271
    cp1_valid_i => cp1_valid,     -- co-processor 1 result valid
272
    -- status --
273
    wait_o      => alu_wait       -- busy due to iterative processing units
274
  );
275
 
276
 
277
  -- Co-Processor 0: MULDIV Unit ------------------------------------------------------------
278
  -- -------------------------------------------------------------------------------------------
279
  neorv32_cpu_cp_muldiv_inst_true:
280
  if (CPU_EXTENSION_RISCV_M = true) generate
281
    neorv32_cpu_cp_muldiv_inst: neorv32_cpu_cp_muldiv
282 19 zero_gravi
    generic map (
283
      FAST_MUL_EN => FAST_MUL_EN -- use DSPs for faster multiplication
284
    )
285 2 zero_gravi
    port map (
286
      -- global control --
287
      clk_i   => clk_i,           -- global clock, rising edge
288
      rstn_i  => rstn_i,          -- global reset, low-active, async
289
      ctrl_i  => ctrl,            -- main control bus
290
      -- data input --
291 19 zero_gravi
      start_i => cp0_start,       -- trigger operation
292 27 zero_gravi
      rs1_i   => rs1,             -- rf source 1
293
      rs2_i   => rs2,             -- rf source 2
294 2 zero_gravi
      -- result and status --
295
      res_o   => cp0_data,        -- operation result
296
      valid_o => cp0_valid        -- data output valid
297
    );
298
  end generate;
299
 
300
  neorv32_cpu_cp_muldiv_inst_false:
301
  if (CPU_EXTENSION_RISCV_M = false) generate
302
    cp0_data  <= (others => '0');
303
    cp0_valid <= '0';
304
  end generate;
305
 
306
 
307
  -- Co-Processor 1: Not Implemented Yet ----------------------------------------------------
308
  -- -------------------------------------------------------------------------------------------
309
  cp1_data  <= (others => '0');
310
  cp1_valid <= '0';
311
 
312
 
313 12 zero_gravi
  -- Bus Interface Unit ---------------------------------------------------------------------
314 2 zero_gravi
  -- -------------------------------------------------------------------------------------------
315
  neorv32_cpu_bus_inst: neorv32_cpu_bus
316
  generic map (
317 11 zero_gravi
    CPU_EXTENSION_RISCV_C => CPU_EXTENSION_RISCV_C, -- implement compressed extension?
318 15 zero_gravi
    -- Physical memory protection (PMP) --
319 27 zero_gravi
    PMP_USE               => PMP_USE,               -- implement physical memory protection?
320
    PMP_NUM_REGIONS       => PMP_NUM_REGIONS,       -- number of regions (1..4)
321
    PMP_GRANULARITY       => PMP_GRANULARITY        -- granularity (0=none, 1=8B, 2=16B, 3=32B, ...)
322 2 zero_gravi
  )
323
  port map (
324
    -- global control --
325 12 zero_gravi
    clk_i          => clk_i,          -- global clock, rising edge
326
    rstn_i         => rstn_i,         -- global reset, low-active, async
327
    ctrl_i         => ctrl,           -- main control bus
328
    -- cpu instruction fetch interface --
329
    fetch_pc_i     => fetch_pc,       -- PC for instruction fetch
330
    instr_o        => instr,          -- instruction
331
    i_wait_o       => bus_i_wait,     -- wait for fetch to complete
332
    --
333
    ma_instr_o     => ma_instr,       -- misaligned instruction address
334
    be_instr_o     => be_instr,       -- bus error on instruction access
335
    -- cpu data access interface --
336 31 zero_gravi
    addr_i         => alu_res,        -- ALU result -> access address
337 12 zero_gravi
    wdata_i        => rs2,            -- write data
338
    rdata_o        => rdata,          -- read data
339
    mar_o          => mar,            -- current memory address register
340
    d_wait_o       => bus_d_wait,     -- wait for access to complete
341
    --
342
    ma_load_o      => ma_load,        -- misaligned load data address
343
    ma_store_o     => ma_store,       -- misaligned store data address
344
    be_load_o      => be_load,        -- bus error on load data access
345
    be_store_o     => be_store,       -- bus error on store data access
346 15 zero_gravi
    -- physical memory protection --
347
    pmp_addr_i     => pmp_addr,       -- addresses
348
    pmp_ctrl_i     => pmp_ctrl,       -- configs
349
    priv_mode_i    => priv_mode,      -- current CPU privilege level
350 12 zero_gravi
    -- instruction bus --
351
    i_bus_addr_o   => i_bus_addr_o,   -- bus access address
352
    i_bus_rdata_i  => i_bus_rdata_i,  -- bus read data
353
    i_bus_wdata_o  => i_bus_wdata_o,  -- bus write data
354
    i_bus_ben_o    => i_bus_ben_o,    -- byte enable
355
    i_bus_we_o     => i_bus_we_o,     -- write enable
356
    i_bus_re_o     => i_bus_re_o,     -- read enable
357
    i_bus_cancel_o => i_bus_cancel_o, -- cancel current bus transaction
358
    i_bus_ack_i    => i_bus_ack_i,    -- bus transfer acknowledge
359
    i_bus_err_i    => i_bus_err_i,    -- bus transfer error
360
    i_bus_fence_o  => i_bus_fence_o,  -- fence operation
361
    -- data bus --
362
    d_bus_addr_o   => d_bus_addr_o,   -- bus access address
363
    d_bus_rdata_i  => d_bus_rdata_i,  -- bus read data
364
    d_bus_wdata_o  => d_bus_wdata_o,  -- bus write data
365
    d_bus_ben_o    => d_bus_ben_o,    -- byte enable
366
    d_bus_we_o     => d_bus_we_o,     -- write enable
367
    d_bus_re_o     => d_bus_re_o,     -- read enable
368
    d_bus_cancel_o => d_bus_cancel_o, -- cancel current bus transaction
369
    d_bus_ack_i    => d_bus_ack_i,    -- bus transfer acknowledge
370
    d_bus_err_i    => d_bus_err_i,    -- bus transfer error
371
    d_bus_fence_o  => d_bus_fence_o   -- fence operation
372 2 zero_gravi
  );
373
 
374 35 zero_gravi
  -- current privilege level --
375
  i_bus_priv_o <= priv_mode;
376
  d_bus_priv_o <= priv_mode;
377 2 zero_gravi
 
378 35 zero_gravi
 
379 2 zero_gravi
end neorv32_cpu_rtl;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.