1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2019, HiSilicon Technologies Co., Ltd.
4  */
5 
6 #ifndef PLATFORM_CONFIG_H
7 #define PLATFORM_CONFIG_H
8 
9 #include <hi3519av100.h>
10 
11 /* Make stacks aligned to data cache line length */
12 #define STACK_ALIGNMENT		64
13 
14 /* PL011 UART */
15 #define CONSOLE_UART_BASE	PL011_UART0_BASE
16 #define CONSOLE_BAUDRATE	PL011_BAUDRATE
17 #define CONSOLE_UART_CLK_IN_HZ	PL011_UART0_CLK_IN_HZ
18 
19 #endif /* PLATFORM_CONFIG_H */
20