You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
388 B
18 lines
388 B
# Copyright (c) 2024 Meta |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
if RISCV |
|
|
|
config NUM_IRQS |
|
int |
|
# let's pretend that the level 1 supports 64 lines |
|
# (MAX_IRQ_PER_AGGREGATOR x (NUM_2ND_LEVEL_AGGREGATORS + NUM_3RD_LEVEL_AGGREGATORS)) + 64 |
|
# (64 x 4) + 64 = 320 |
|
default 320 |
|
|
|
endif # RISCV |
|
|
|
config DUMP_INTC_TABLE |
|
bool "Enable to dump the content of intc table" |
|
|
|
source "Kconfig.zephyr"
|
|
|