forked from pulp-platform/carfield
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copied TB from Carfield's intel16 repo, updated Bender and simulation…
… script
- Loading branch information
Victor Isachi
committed
Apr 17, 2024
1 parent
9bbf90a
commit a900183
Showing
5 changed files
with
2,210 additions
and
2 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
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,30 @@ | ||
// Copyright 2023 ETH Zurich and University of Bologna. | ||
// Solderpad Hardware License, Version 0.51, see LICENSE for details. | ||
// SPDX-License-Identifier: SHL-0.51 | ||
// | ||
// Alessandro Ottaviano <[email protected]> | ||
|
||
`include "cheshire/typedef.svh" | ||
|
||
/// Carfield chip specific parameters | ||
package carfield_chip_pkg; | ||
|
||
// import pll_digital_pkg::*; | ||
|
||
// localparam int unsigned NumPlls = pll_digital_pkg::NPLLs; | ||
|
||
typedef enum int { | ||
HostDomainClkIdx = 'd0, | ||
PeriphDomainClkIdx = 'd1, | ||
AltDomainClkIdx = 'd2 | ||
} carfield_clocks_e; | ||
|
||
// PULP Platform manufacturer and default Carfield Pll part number | ||
// JTAG ID code: | ||
// LSB [0]: 1'h1 | ||
// PULP Platform Manufacturer [11:1]: 11'h6d9 | ||
// Part Number [27:12]: 16'habc0 --> TBD! | ||
// Version [31:28]: 4'h1 | ||
localparam int unsigned CarfieldPllJtagIdCode = 32'h1_abc0_db3; | ||
|
||
endpackage |
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
Oops, something went wrong.