-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a basic mechanism for interrupt acknowledge. (#2502)
- Loading branch information
Showing
13 changed files
with
235 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 2024 Thales DIS France SAS | ||
# | ||
# Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0 | ||
# You may obtain a copy of the License at https://solderpad.org/licenses/ | ||
# | ||
# Original Author: Zbigniew CHAMSKI - Thales | ||
|
||
FIGDIR=figures | ||
WAVEDIR=wavedrom | ||
|
||
# Names of figure files, without directory prefix nor .svg suffix | ||
FIGURES=interrupt-ack-uvm | ||
|
||
SVG_FILES=$(patsubst %,$(FIGDIR)/%.svg,$(FIGURES)) | ||
WAVE_FILES=$(patsubst %,$(WAVEDIR)/%.wave,$(FIGURES)) | ||
|
||
all: $(SVG_FILES) | ||
|
||
# wavedrom-cli requires a local installation and needs nodejs version >= 14. | ||
# See https://github.com/wavedrom/cli. | ||
$(FIGDIR)/%.svg: $(WAVEDIR)/%.wave | ||
wavedrom-cli -i $^ -s $@ | ||
|
||
clean: | ||
$(RM) $(SVG_FILES) | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
//// | ||
Copyright 2024 Thales DIS France SAS | ||
|
||
Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0 | ||
You may obtain a copy of the License at https://solderpad.org/licenses/ | ||
|
||
Original Author: Zbigniew CHAMSKI - Thales | ||
//// | ||
|
||
= Interrupt Verification protocol | ||
|
||
== Scope | ||
|
||
In the rest of this section it is assumed that the design-under-test is limited to a hart (or 'core') with its internal CSRs. The hart supports only Machine mode, explicitly excluding User and Supervisor modes as not implemented. | ||
|
||
Arbitration between multiple sources of external interrupts is under the responsibility of the "platform" and thus performed outside of the hart. | ||
|
||
Therefore, the verification of interrupt handling at hart level covers two co-ordinated aspects: | ||
|
||
* the detection of "interrupt present" state for all implemented interrupt types among those listed in MIP/MIE; | ||
* the generation of the response to the "interrupt present" state according to the fixed interrupt priority (see https://cva6.readthedocs.io/en/latest/04_cv32a65x/riscv/priv.html#_machine_interrupt_mip_and_mie_registers[Machine Interrupt Registers, CV32A65X Privileged ISA spec, section 3.1.9]). | ||
|
||
== Interfaces | ||
|
||
The interface for raising interrupts (from the platform to the hart) is a set of bits in the `MIP` (Machine Interrupt Present) CSR. These bits are controlled by the verification platform by driving hardware inputs of the hart. | ||
The interface for clearing pending interrupts (from the hart to the platform) can either rely on writable "interrupt pending" bits in `MIP`, or "the implementation must provide some other mechanism for clearing the pending interrupt." | ||
|
||
On CV32A65X the "interrupt pending" bits in `MIP` are read-only and therefore, they cannot be used to acknowledge (clear) a pending interrupt. Hence, for the purpose of verification we introduce a 64-bit memory-mapped register `int_ack`. To acknowledge a pending interrupt represented by bit N in the `MIP` register, the hart performs a memory store at the address of `int_ack` with bit N set in the value being stored. All stores into `int_ack` shall be monitored by the platform and shall eventually result in clearing a pending interrupt if both the corresponding "interrupt pending" bit in MIP is set and the value written into `int_ack` has a bit set at the same bit position. The clearing of the corresponding pending interrupt by the platform may be immediate or delayed. | ||
|
||
The `int_ack` memory location has no fixed address. | ||
|
||
== The protocol | ||
|
||
The basic operation of the interrupt verification protocol is shown in xref:fig-basic-raise-clear-protocol[xrefstyle=short]. | ||
|
||
.Basic interrupt raise-acknowledge protocol | ||
[#fig-basic-raise-clear-protocol] | ||
image::figures/interrupt-ack-uvm.svg[Basic interrupt verification protocol,800,opts=inline] | ||
|
||
The platform/testbench notifies the hart of raising an interrupt by setting the corresponding hardware input of the hart. This results in the hart setting a bit at position 'N' in the `mip` CSR according to the hardware input being raised (marker `r` for "raise"). | ||
The hart detects the presence of a pending interrupt at position N in `mip`, and if that interrupt is enabled it starts executing the interrupt handler. | ||
|
||
While executing the handler, the hart performs a memory store to the symbolic location `int_ack` with bit N set to acknowledge the servicing of interrupt at position N in `mip` (markers `s` for "store" and `w` for "write"). | ||
|
||
The platform responds by clearing the interrupt (marker `c` for "clear"): it clears bit N in `mip` *and* performs a memory store that clears bit N in `int_ack` (marker `z` for "zero the ACK"). Both operations shall occur in finite time but quickly enough to clear the interrupt pending bit in `mip` before the hart enables interrupts at the end of the interrupt handler. | ||
|
||
== Software implementation | ||
|
||
Test programs used for interrupt verification shall reserve the necessary memory storage located at symbol `int_ack` and shall make the value of that symbol available to verification software. | ||
To reserve the storage, assembly program shall use storage type `.dword`. C/C++ programs shall use scalar type `unsigned long int` with `volatile` qualifier to prevent over-optimization of assignment operations. | ||
|
||
The symbol shall be defined in section `.uvmif`. The linker scripts shall ensure that this section is aligned on a 64-byte multiple to reduce cache latency artefacts where applicable. | ||
|
||
== Rationale | ||
|
||
. The storage allocated for `int_ack` is 64 bits wide to support a single test program source for XLEN=32 and XLEN=64. | ||
. The symbol `int_ack` has no fixed address to avoid hardcoded dependencies in the verification flow. | ||
. In order to keep `int_ack` isolated from other symbols occurring in verification test programs, the symbol is placed in a dedicated section. | ||
. The interrupt acknowledge mechanism abstracts from the Machine Timer Interrupt logic (cf. https://cva6.readthedocs.io/en/latest/04_cv32a65x/riscv/priv.html#_machine_timer_mtime_and_mtimecmp_registers[Machine Timer Registers, CV32A65X Privileged ISA spec, section 3.2.1]). | ||
In particular, it relieves the verification platform from maintaining consistent `MTIME` and `MTIMECMP` values. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright 2024 Thales DIS France SAS | ||
// | ||
// Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0 | ||
// You may obtain a copy of the License at https://solderpad.org/licenses/ | ||
// | ||
// Original Author: Zbigniew CHAMSKI - Thales | ||
|
||
{signal: [ | ||
{ name: 'clk', wave: 'p..|..|...'}, | ||
['Platform', | ||
['int active', | ||
{name: 'int #0', wave: '0..|..|...'}, | ||
{name: 'int #n', wave: '01.|..|0..', | ||
node: '.r.....c..' }, | ||
] | ||
], | ||
{}, | ||
['hart', | ||
['mip', | ||
{name: 'bit[0]', wave: 'x..|......'}, | ||
{name: 'bit[n]', wave: '01.|..|0..', | ||
node: '..........'}, | ||
], | ||
{name: 'exec', wave: '7.4|..|.7.', data: 'normal handler normal', | ||
node: '....s.....'}, | ||
], | ||
{ node: '.RE....ZX.'}, | ||
{}, | ||
['mem', | ||
{name: '@int_ack[0]', wave: '...|..|...'}, | ||
{name: '@int_ack[n]', wave: '0..|.1|0..', | ||
node: '.....w.z..'} | ||
] | ||
], | ||
edge: | ||
['R+E >0', 'Z+X >0', 's|->w ACK', 'r|R', 'c|z'], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters