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

Subversion Repositories m1_core

[/] [m1_core/] [trunk/] [hdl/] [rtl/] [m1_core/] [m1_mmu.v] - Blame information for rev 64

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 fafa1971
/*
2 64 albert.wat
 * M1 Memory Management Unit
3 33 fafa1971
 *
4
 * This block converts Harvard architecture requests to access the
5
 * small internal prefetch buffer, and just in case the external
6
 * Wishbone bus.
7
 * Memory size is 256 word * 4 byte = 1024 byte,
8
 * so 10 address bits are required => [9:0]
9
 * and being the lower 2 bits unused the offset in memory is [9:2].
10 2 fafa1971
 */
11
 
12
module m1_mmu (
13
 
14 33 fafa1971
    // System
15
    input sys_clock_i,                            // System Clock
16
    input sys_reset_i,                            // System Reset
17 2 fafa1971
 
18 33 fafa1971
    // Instruction Memory
19
    input imem_read_i,                            // I$ Read
20
    input[31:0] imem_addr_i,                      // I$ Address
21
    output imem_done_o,                           // I$ Done
22
    output[31:0] imem_data_o,                     // I$ Data
23 2 fafa1971
 
24 33 fafa1971
    // Data Memory
25
    input dmem_read_i,                            // D$ Read
26
    input dmem_write_i,                           // D$ Write
27
    input[31:0] dmem_addr_i,                      // D$ Address
28
    input[31:0] dmem_data_i,                      // D$ Write Data
29
    input[3:0] dmem_sel_i,                        // D$ Byte selector
30
    output dmem_done_o,                           // D$ Done
31
    output[31:0] dmem_data_o,                     // D$ Read Data
32 2 fafa1971
 
33 33 fafa1971
    // Wishbone Master interface
34
    output wb_cyc_o,                              // Cycle Start
35
    output wb_stb_o,                              // Strobe Request
36
    output wb_we_o,                               // Write Enable
37
    output[31:0] wb_adr_o,                        // Address Bus
38
    output[31:0] wb_dat_o,                        // Data Out
39
    output[3:0] wb_sel_o,                         // Byte Select
40
    input wb_ack_i,                               // Ack
41
    input[31:0] wb_dat_i                          // Data In
42 2 fafa1971
 
43 33 fafa1971
  );
44 2 fafa1971
 
45 33 fafa1971
  /*
46
   * Registers
47
   */
48 2 fafa1971
 
49 33 fafa1971
  // Prefetch buffer
50
  reg[31:0] MEM[255:0];
51 2 fafa1971
 
52 33 fafa1971
  // Initialize memory content
53
  initial begin
54
`include "m1_mmu_initial.vh"
55
  end
56 2 fafa1971
 
57 33 fafa1971
  /*
58
   * Wires
59
   */
60 2 fafa1971
 
61 33 fafa1971
  // See if there are pending requests
62
  wire access_pending_imem = imem_read_i;
63
  wire access_pending_dmem = 0;
64
  wire access_pending_ext = (dmem_read_i || dmem_write_i);
65 2 fafa1971
 
66 33 fafa1971
  // Default grant for memories
67
  assign imem_done_o = access_pending_imem;
68
  assign dmem_done_o = access_pending_dmem || (access_pending_ext && wb_ack_i);
69 2 fafa1971
 
70 33 fafa1971
  // Set Wishbone outputs
71
  assign wb_cyc_o = access_pending_ext;
72
  assign wb_stb_o = access_pending_ext;
73
  assign wb_we_o = access_pending_ext && dmem_write_i;
74
  assign wb_sel_o = dmem_sel_i;
75
  assign wb_adr_o = dmem_addr_i;
76
  assign wb_dat_o = dmem_data_i;
77 2 fafa1971
 
78 33 fafa1971
  // Return read data
79
  assign imem_data_o = MEM[imem_addr_i[9:2]];
80
  assign dmem_data_o = wb_dat_i;
81 2 fafa1971
 
82
endmodule

powered by: WebSVN 2.1.0

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