Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(module outlines): Con_IF #175

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 66 additions & 49 deletions Documentation/04_Connecting_Module_Docs/03_IF_Connection_Module.md
Original file line number Diff line number Diff line change
@@ -1,90 +1,107 @@
THIS OUTLINE IS INCOMPLETE

# IF Connection Module #
# IF Connection Module
(Verilog module known as Con_IF)

## Contents
* [Overview](#overview)
* [Inputs](#inputs)
* [Outputs](#outputs)
* [Modules](#modules)
* [PC](#pc)
* [Instruction Cache](#instruction_cache)
* [Internal Connections](#internal_connections)
* [Workflows](#workflows)
* [PC Update Process](#pc-update-process)
* [Instruction Fetch Process](#instruction-fetch-process)
* [Memory Access Process](#memory-access-process)

## Overview
The IF Connection Module (`Con_IF`) is responsible for managing the instruction fetch stage of the pipeline. It includes the `PC` module for tracking the program counter and the `Instruction Cache` module for storing and retrieving instructions efficiently.

## Inputs
|Name|Bits wide|
|:---|:---:|
|```clk```|1-bit|
|```cache_clk```|1-bit|
|```rstn```|1-bit|
|```rstn_h```|1-bit|
|```pc_en```|1-bit|
|```npc```|32-bit|
| Name | Bits wide | Description |
|:---|:---:|:---|
| `clk` | 1-bit | Global clock signal |
| `cache_clk` | 1-bit | Dedicated clock for the instruction cache |
| `rstn` | 1-bit | Active-low reset for the PC module |
| `rstn_h` | 1-bit | Active-low reset for the Instruction Cache |
| `pc_en` | 1-bit | Enables PC update when high |
| `npc` | 32-bit | Next PC value |

## Outputs
|Name|Bits wide|
|:---|:---:|
|```pc```|32-bit|
|```ins```|32-bit|
| Name | Bits wide | Description |
|:---|:---:|:---|
| `pc` | 32-bit | Current program counter value |
| `ins` | 32-bit | Instruction fetched from the Instruction Cache |

## Modules

### PC

#### External IO

##### External Inputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```clk```|1-bit|
|```rstn```|1-bit|
|```pc_en```|1-bit|
|```npc```|32-bit|
| `clk` | 1-bit |
| `rstn` | 1-bit |
| `pc_en` | 1-bit |
| `npc` | 32-bit |

##### External Outputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```pc```|32-bit|
| `pc` | 32-bit |

#### Internal IO

##### Internal Outputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```pc```|32-bit|
| `pc` | 32-bit |

### Instruction Cache

#### External IO

##### External Inputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```cache_clk```|1-bit|
|```rstn_h```|1-bit|
|```mem_response_data```|32-bit|
|```mem_busy```|1-bit|
| `cache_clk` | 1-bit |
| `rstn_h` | 1-bit |
| `mem_response_data` | 32-bit |
| `mem_busy` | 1-bit |

##### External Outputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```ins```|32-bit|
|```ins```|32-bit|
|```wEn```|1-bit|
|```rEn```|1-bit|
|```isBurst```|1-bit|
|```mem_address```|32-bit|
|```mem_write_data```|32-bit|
| `ins` | 32-bit |
| `wEn` | 1-bit |
| `rEn` | 1-bit |
| `isBurst` | 1-bit |
| `mem_address` | 32-bit |
| `mem_write_data` | 32-bit |

#### Internal IO

##### Internal Inputs
|Name|Bits wide|
| Name | Bits wide |
|:---:|:---:|
|```pc```|32-bit|
| `pc` | 32-bit |

## Internal Connections
| PC | Instruction Cache |
|:---:|:---:|
| `pc` | `pc` |

## Workflows
### PC Update Process
- `pc_en` controls when `pc` updates.
- If `rstn = 0`, reset `pc` to zero.
- If `pc_en = 1`, update `pc = npc`.

### Instruction Fetch Process
- `Con_IF` sends `pc` to `Instruction Cache`.
- If `rEn = 0`, `ins` is valid immediately (cache hit).
- If `rEn = 1`, `Con_IF` waits for `mem_busy = 0` before using `ins` (cache miss).

### Memory Access Process
- If `Instruction Cache` needs to access memory:
- `rEn = 1` is asserted to request memory access.
- `mem_address` is assigned the requested instruction's address.
- `mem_busy = 1` indicates memory is still processing the request.
- Once `mem_busy = 0`, `Instruction Cache` updates `ins`.
- `Con_IF` receives `ins` only after `Instruction Cache` completes the memory transaction.

|PC|Instruction Cache|
|:---:|:---:|:---:|
|```pc```|```pc```|
41 changes: 41 additions & 0 deletions rtl/Con_IF.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
module Con_IF (
input logic clk,
input logic cache_clk,
input logic rstn,
input logic rstn_h,
input logic pc_en,
input logic [31:0] npc,

// Memory
input logic [31:0] mem_response_data,
input logic mem_busy,

output logic [31:0] pc,
output logic [31:0] ins
);

logic [31:0] mem_address;
logic rEn;
logic isBurst;

PC pc_module (
.clk(clk),
.rstn(rstn),
.pc_en(pc_en),
.npc(npc),
.pc(pc)
);

Instruction_Cache icache (
.cache_clk(cache_clk),
.rstn_h(rstn_h),
.mem_response_data(mem_response_data),
.mem_busy(mem_busy),
.pc(pc),
.ins(ins),
.rEn(rEn),
.isBurst(isBurst),
.mem_address(mem_address)
);

endmodule