diff options
| author | Jun Liang Tan <[email protected]> | 2022-04-28 17:45:02 +0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-05-07 09:37:42 +0530 |
| commit | e576b3e620675b48a34cc2e9c6a589df3ceaf4cf (patch) | |
| tree | bd8d09a7853e13814a1369fcb2fb3dd694e07896 | |
| parent | 474a9d45551ab8c7df511a6620de2427a732351f (diff) | |
include: sbi: Define SBI_PMU_HW_EVENT_MAX to 256
Increase maximum number of PMU hardware events that can be mapped
by OpenSBI to 256
Signed-off-by: Jun Liang Tan <[email protected]>
Signed-off-by: Wei Liang Lim <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
| -rw-r--r-- | include/sbi/sbi_pmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi/sbi_pmu.h b/include/sbi/sbi_pmu.h index 6a1c62cc..f5e3dbdf 100644 --- a/include/sbi/sbi_pmu.h +++ b/include/sbi/sbi_pmu.h @@ -17,7 +17,7 @@ /* Event related macros */ /* Maximum number of hardware events that can mapped by OpenSBI */ -#define SBI_PMU_HW_EVENT_MAX 64 +#define SBI_PMU_HW_EVENT_MAX 256 /* Maximum number of firmware events that can mapped by OpenSBI */ #define SBI_PMU_FW_EVENT_MAX 32 |
