1# SPDX-License-Identifier: Apache-2.0
2#
3# Copyright (c) 2021 ASPEED Technology Inc.
4
5config SOC_SERIES_AST10X0
6	select ARM
7	select CPU_CORTEX_M4
8	select CPU_HAS_FPU
9	select CPU_HAS_ARM_MPU
10	select SYSCON
11	select CACHE
12	select CPU_HAS_DCACHE
13	select CPU_HAS_ICACHE
14	select CACHE_MANAGEMENT
15	select CACHE_ASPEED
16
17if SOC_SERIES_AST10X0
18
19config SRAM_NC_SIZE
20	int "noncached SRAM Size in kB"
21	help
22	  The non-cached SRAM size in kB. The default value comes from reg[1]
23	  of /chosen/zephyr,sram in devicetree. The user should generally avoid
24	  changing it via menuconfig or in configuration files.
25
26config SRAM_NC_BASE_ADDRESS
27	hex "noncached SRAM Base Address"
28	help
29	  The non-cached SRAM base address. The default value comes from
30	  reg[1] of /chosen/zephyr,sram in devicetree. The user should
31	  generally avoid changing it via menuconfig or in configuration files.
32
33endif # SOC_SERIES_AST10X0
34