1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2015, Linaro Limited 4 * Copyright (c) 2022, Huawei Technologies Co., Ltd 5 */ 6 7 #ifndef PLATFORM_CONFIG_H 8 #define PLATFORM_CONFIG_H 9 10 #include <mm/generic_ram_layout.h> 11 12 /* Make stacks aligned to data cache line length */ 13 #define STACK_ALIGNMENT 64 14 15 /* UART */ 16 #define UART_BASE 0x2f8 17 #define CONSOLE_BAUDRATE 115200 18 #define CONSOLE_UART_CLK_IN_HZ 200 19 20 #endif /* PLATFORM_CONFIG_H */ 21