1#
2# Copyright (c) 2024 Cypress Semiconductor Corporation.
3# SPDX-License-Identifier: Apache-2.0
4#
5
6# General configuration
7CONFIG_ARM_MPU=y
8CONFIG_HW_STACK_PROTECTION=y
9
10# Enable console
11CONFIG_CONSOLE=y
12CONFIG_UART_CONSOLE=y
13
14# Enable UART driver
15CONFIG_SERIAL=y
16
17# Enable GPIO driver
18CONFIG_GPIO=y
19
20# Enable clock controller
21CONFIG_CLOCK_CONTROL=y
22
23# Enable code/data relocation to move SMIF driver into RAM
24CONFIG_CODE_DATA_RELOCATION=y
25