Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | /* |
Michal Simek | 2a47faa | 2023-04-14 08:43:51 +0200 | [diff] [blame] | 2 | * Copyright (c) 2014-2019, Arm Limited and Contributors. All rights reserved. |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <common/bl_common.h> |
| 8 | #include <common/debug.h> |
| 9 | #include <drivers/console.h> |
Antonio Nino Diaz | bd7b740 | 2019-01-25 14:30:04 +0000 | [diff] [blame] | 10 | #include <plat/arm/common/plat_arm.h> |
Isla Mitchell | e363146 | 2017-07-14 10:46:32 +0100 | [diff] [blame] | 11 | #include <platform_tsp.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 12 | |
Prasad Kummari | 536e110 | 2023-06-22 10:50:02 +0530 | [diff] [blame] | 13 | #include <plat_private.h> |
| 14 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 15 | /******************************************************************************* |
| 16 | * Initialize the UART |
| 17 | ******************************************************************************/ |
| 18 | void tsp_early_platform_setup(void) |
| 19 | { |
| 20 | /* |
Ambroise Vincent | 53f193f | 2019-05-29 11:46:08 +0100 | [diff] [blame] | 21 | * Register a different console than already in use to display |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 22 | * messages from TSP |
| 23 | */ |
Andre Przywara | 8ccc4a4 | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 24 | static console_t tsp_boot_console; |
Ambroise Vincent | 53f193f | 2019-05-29 11:46:08 +0100 | [diff] [blame] | 25 | (void)console_cdns_register(ZYNQMP_UART_BASE, |
| 26 | zynqmp_get_uart_clk(), |
| 27 | ZYNQMP_UART_BAUDRATE, |
| 28 | &tsp_boot_console); |
Andre Przywara | 8ccc4a4 | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 29 | console_set_scope(&tsp_boot_console, |
Ambroise Vincent | 53f193f | 2019-05-29 11:46:08 +0100 | [diff] [blame] | 30 | CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_BOOT); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | /******************************************************************************* |
| 34 | * Perform platform specific setup placeholder |
| 35 | ******************************************************************************/ |
| 36 | void tsp_platform_setup(void) |
| 37 | { |
| 38 | plat_arm_gic_driver_init(); |
| 39 | plat_arm_gic_init(); |
| 40 | } |
| 41 | |
| 42 | /******************************************************************************* |
| 43 | * Perform the very early platform specific architectural setup here. At the |
Elyes Haouas | 2be03c0 | 2023-02-13 09:14:48 +0100 | [diff] [blame] | 44 | * moment this is only initializes the MMU |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 45 | ******************************************************************************/ |
| 46 | void tsp_plat_arch_setup(void) |
| 47 | { |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 48 | const mmap_region_t bl_regions[] = { |
| 49 | MAP_REGION_FLAT(BL32_BASE, BL32_END - BL32_BASE, |
| 50 | MT_MEMORY | MT_RW | MT_SECURE), |
| 51 | MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE, |
| 52 | MT_CODE | MT_SECURE), |
| 53 | MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE, |
| 54 | MT_RO_DATA | MT_SECURE), |
| 55 | MAP_REGION_FLAT(BL_COHERENT_RAM_BASE, |
| 56 | BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE, |
| 57 | MT_DEVICE | MT_RW | MT_SECURE), |
| 58 | {0} |
| 59 | }; |
| 60 | |
Roberto Vargas | 344ff02 | 2018-10-19 16:44:18 +0100 | [diff] [blame] | 61 | setup_page_tables(bl_regions, plat_arm_get_mmap()); |
Sandrine Bailleux | 4a1267a | 2016-05-18 16:11:47 +0100 | [diff] [blame] | 62 | enable_mmu_el1(0); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 63 | } |