1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2016, Sequitur Labs Inc. 4 * Copyright (c) 2024, EPAM Systems. 5 */ 6 #ifndef PLATFORM_CONFIG_H 7 #define PLATFORM_CONFIG_H 8 9 #include <mm/generic_ram_layout.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 0x107d001000ULL /* UART0 */ 16 #define CONSOLE_BAUDRATE 0 /* VPU will set UART for us */ 17 #define CONSOLE_UART_CLK_IN_HZ 0 18 19 #define DRAM0_BASE 0x00000000 20 #define DRAM0_SIZE 0x200000000 21 22 #endif /* PLATFORM_CONFIG_H */ 23