1# Copyright (c) 2023 Rivos Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_OPENTITAN
5
6config SYS_CLOCK_HW_CYCLES_PER_SEC
7	default 1000000
8
9config RISCV_SOC_INTERRUPT_INIT
10	default y
11
12config 2ND_LVL_ISR_TBL_OFFSET
13	default 32
14
15config 2ND_LVL_INTR_00_OFFSET
16	default 11
17
18config NUM_IRQS
19	default 256
20
21# The OpenTitan SoC requires a manifest in front of the
22# application binary.
23config ROM_START_OFFSET
24	default 0x400
25
26endif # SOC_OPENTITAN
27