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_EM11D 6 7config CPU_EM4_FPUDA 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_REVISION)" = "2.3" 18 default 36 if "$(BOARD_REVISION)" = "2.2" 19 20config RGF_NUM_BANKS 21 default 2 22 23config SYS_CLOCK_HW_CYCLES_PER_SEC 24 default 20000000 25 26config HARVARD 27 default n 28 29config CACHE_MANAGEMENT 30 default y 31 32config FP_FPU_DA 33 default y 34 35endif # SOC_EMSK_EM11D 36