1# Copyright (c) 2014 Wind River Systems, Inc. 2# Copyright (c) 2018 Synopsys, Inc. All rights reserved. 3# SPDX-License-Identifier: Apache-2.0 4 5if SOC_EMSK_EM9D 6 7config CPU_EM4_FPUS 8 default y 9 10config NUM_IRQ_PRIO_LEVELS 11 # This processor supports 4 priority levels: 12 # 0 for Fast Interrupts (FIRQs) and 1-3 for Regular Interrupts (IRQs). 13 default 4 14 15config NUM_IRQS 16 # must be > the highest interrupt number used 17 default 38 if BOARD_EM_STARTERKIT_R23 18 default 36 if BOARD_EM_STARTERKIT_R22 19 20config RGF_NUM_BANKS 21 default 2 22 23config SYS_CLOCK_HW_CYCLES_PER_SEC 24 default 20000000 25 26config HARVARD 27 default y 28 29endif # SOC_EMSK_EM9D 30