1# Copyright 2022 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_MIMX93_A55
5
6config SOC
7	default "mimx9352"
8
9# Workaround for not being able to have commas in macro arguments
10DT_CHOSEN_Z_FLASH := zephyr,flash
11
12config FLASH_SIZE
13	default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K)
14
15config FLASH_BASE_ADDRESS
16	default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH))
17
18config NUM_IRQS
19	int
20	default 240
21
22config SYS_CLOCK_HW_CYCLES_PER_SEC
23	int
24	default 24000000
25
26config PINCTRL_IMX
27	default y if HAS_MCUX_IOMUXC
28	depends on PINCTRL
29
30endif
31