1# Copyright (c) 2024 Meta
2# SPDX-License-Identifier: Apache-2.0
3
4if RISCV
5
6config NUM_IRQS
7	int
8	# let's pretend that the level 1 supports 64 lines
9	# (MAX_IRQ_PER_AGGREGATOR x (NUM_2ND_LEVEL_AGGREGATORS + NUM_3RD_LEVEL_AGGREGATORS)) + 64
10	# (64 x 4) + 64 = 320
11	default 320
12
13endif # RISCV
14
15config DUMP_INTC_TABLE
16	bool "Enable to dump the content of intc table"
17
18source "Kconfig.zephyr"
19