forked from Github_Repos/cvw
55 lines
2.2 KiB
Systemverilog
55 lines
2.2 KiB
Systemverilog
///////////////////////////////////////////
|
|
// tlbram.sv
|
|
//
|
|
// Written: jtorrey@hmc.edu & tfleming@hmc.edu 16 February 2021
|
|
// Modified:
|
|
//
|
|
// Purpose: Stores page table entries of cached address translations.
|
|
// Outputs the physical page number and access bits of the current
|
|
// virtual address on a TLB hit.
|
|
//
|
|
// Documentation: RISC-V System on Chip Design Chapter 8
|
|
//
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
|
//
|
|
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
|
//
|
|
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
|
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
|
// may obtain a copy of the License at
|
|
//
|
|
// https://solderpad.org/licenses/SHL-2.1/
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, any work distributed under the
|
|
// License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
// either express or implied. See the License for the specific language governing permissions
|
|
// and limitations under the License.
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
`include "wally-config.vh"
|
|
|
|
module tlbram #(parameter TLB_ENTRIES = 8) (
|
|
input logic clk, reset,
|
|
input logic [`XLEN-1:0] PTE,
|
|
input logic [TLB_ENTRIES-1:0] Matches, WriteEnables,
|
|
output logic [`PPN_BITS-1:0] PPN,
|
|
output logic [7:0] PTEAccessBits,
|
|
output logic [TLB_ENTRIES-1:0] PTE_Gs
|
|
);
|
|
|
|
logic [`PPN_BITS+9:0] RamRead[TLB_ENTRIES-1:0];
|
|
logic [`PPN_BITS+9:0] PageTableEntry;
|
|
|
|
// RAM implemented with array of flops and AND/OR read logic
|
|
tlbramline #(`PPN_BITS+10) tlbramline[TLB_ENTRIES-1:0]
|
|
(.clk, .reset, .re(Matches), .we(WriteEnables),
|
|
.d(PTE[`PPN_BITS+9:0]), .q(RamRead), .PTE_G(PTE_Gs));
|
|
or_rows #(TLB_ENTRIES, `PPN_BITS+10) PTEOr(RamRead, PageTableEntry);
|
|
|
|
// Rename the bits read from the TLB RAM
|
|
assign PTEAccessBits = PageTableEntry[7:0];
|
|
assign PPN = PageTableEntry[`PPN_BITS+9:10];
|
|
endmodule
|