-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 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
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 |
---|---|---|
|
@@ -4,6 +4,11 @@ | |
// | ||
// Moritz Scherer <[email protected]> | ||
|
||
#ifndef _SOC_ADDR_MAP_INCLUDE_GUARD_ | ||
#define _SOC_ADDR_MAP_INCLUDE_GUARD_ | ||
|
||
#include <stdint.h> | ||
|
||
#define CLINT_CTRL_BASE 0x02040000 | ||
|
||
#define SOC_CTRL_BASE 0x30001000 | ||
|
@@ -13,3 +18,18 @@ | |
#define CLUSTER_2_BASE 0x40400000 | ||
#define CLUSTER_3_BASE 0x40600000 | ||
#define CLUSTER_4_BASE 0x40800000 | ||
|
||
#define CLUSTER_0_NUMCORES 9 | ||
#define CLUSTER_1_NUMCORES 9 | ||
#define CLUSTER_2_NUMCORES 9 | ||
#define CLUSTER_3_NUMCORES 9 | ||
#define CLUSTER_4_NUMCORES 9 | ||
|
||
static uint8_t _chimera_numCores[] = {CLUSTER_0_NUMCORES, CLUSTER_1_NUMCORES, CLUSTER_2_NUMCORES, | ||
CLUSTER_3_NUMCORES, CLUSTER_4_NUMCORES}; | ||
#define _chimera_numClusters 5 | ||
|
||
#define CHIMERA_PADFRAME_BASE_ADDRESS 0x30002000 | ||
#define FLL_BASE_ADDR 0x30003000 | ||
|
||
#endif |
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