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_ARC_IOT 6 7config SOC 8 default "snps_arc_iot" 9 10config CPU_EM4_FPUS 11 default y 12 13config NUM_IRQ_PRIO_LEVELS 14 # This processor supports 4 priority levels: 15 # 0 for Fast Interrupts (FIRQs) and 1-3 for Regular Interrupts (IRQs). 16 default 4 17 18config ARC_MPU_VER 19 default 2 20 21config NUM_IRQS 22 # must be > the highest interrupt number used 23 default 95 24 25config RGF_NUM_BANKS 26 default 2 27 28config SYS_CLOCK_HW_CYCLES_PER_SEC 29 default 144000000 30 31config HARVARD 32 default y 33 34config ARC_FIRQ 35 default y 36 37config UART_NS16550 38 default y 39 depends on SERIAL 40 41endif # ARC_IOT 42