-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hw: Avoid global include, adapt header
- Loading branch information
Showing
1 changed file
with
10 additions
and
11 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 |
---|---|---|
|
@@ -2,18 +2,12 @@ | |
// Solderpad Hardware License, Version 0.51, see LICENSE for details. | ||
// SPDX-License-Identifier: SHL-0.51 | ||
// | ||
// Author: Thomas Benz <[email protected]> | ||
// Author: Andreas Kuster <[email protected]> | ||
// Author: Paul Scheffler <[email protected]> | ||
// Author: Chaoqun Liang <[email protected]> | ||
|
||
// Description: DMA core wrapper for the CVA6 integration | ||
|
||
`include "axi/assign.svh" | ||
`include "axi/typedef.svh" | ||
`include "idma/typedef.svh" | ||
`include "register_interface/typedef.svh" | ||
// Thomas Benz <[email protected]> | ||
// Andreas Kuster <[email protected]> | ||
// Paul Scheffler <[email protected]> | ||
// Chaoqun Liang <[email protected]> | ||
|
||
/// DMA core wrapper for the integration into Cheshire. | ||
module cheshire_idma_wrap #( | ||
parameter int unsigned AxiAddrWidth = 0, | ||
parameter int unsigned AxiDataWidth = 0, | ||
|
@@ -39,6 +33,11 @@ module cheshire_idma_wrap #( | |
output axi_slv_rsp_t axi_slv_rsp_o | ||
); | ||
|
||
`include "axi/assign.svh" | ||
`include "axi/typedef.svh" | ||
`include "idma/typedef.svh" | ||
`include "register_interface/typedef.svh" | ||
|
||
localparam int unsigned IdCounterWidth = 32; | ||
localparam int unsigned NumDim = 2; | ||
localparam int unsigned RepWidth = 32; | ||
|