xref: /optee_os/core/arch/arm/plat-d06/platform_config.h (revision fb5592f9cfebbc6aa0eec6b3cf8a04b14da1a896)
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 /* HISI_TRNG */
21 #define HISI_TRNG_BASE		0x2010C0000
22 #define HISI_TRNG_SIZE		0x100
23 
24 #endif /* PLATFORM_CONFIG_H */
25