Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <arm_def.h> |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 8 | #include <assert.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 9 | #include <bl_common.h> |
| 10 | #include <console.h> |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 11 | #include <debug.h> |
| 12 | #include <pl011.h> |
Isla Mitchell | d254879 | 2017-07-14 10:48:25 +0100 | [diff] [blame] | 13 | #include <plat_arm.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 14 | #include <platform_def.h> |
| 15 | #include <platform_tsp.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 16 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 17 | #define BL32_END (unsigned long)(&__BL32_END__) |
| 18 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 19 | /* Weak definitions may be overridden in specific ARM standard platform */ |
| 20 | #pragma weak tsp_early_platform_setup |
| 21 | #pragma weak tsp_platform_setup |
| 22 | #pragma weak tsp_plat_arch_setup |
| 23 | |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 24 | #define MAP_BL_TSP_TOTAL MAP_REGION_FLAT( \ |
| 25 | BL32_BASE, \ |
| 26 | BL32_END - BL32_BASE, \ |
| 27 | MT_MEMORY | MT_RW | MT_SECURE) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 28 | |
| 29 | /******************************************************************************* |
| 30 | * Initialize the UART |
| 31 | ******************************************************************************/ |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 32 | #if MULTI_CONSOLE_API |
| 33 | static console_pl011_t arm_tsp_runtime_console; |
| 34 | #endif |
| 35 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 36 | void arm_tsp_early_platform_setup(void) |
| 37 | { |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 38 | #if MULTI_CONSOLE_API |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 39 | /* |
| 40 | * Initialize a different console than already in use to display |
| 41 | * messages from TSP |
| 42 | */ |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 43 | int rc = console_pl011_register(PLAT_ARM_TSP_UART_BASE, |
| 44 | PLAT_ARM_TSP_UART_CLK_IN_HZ, |
| 45 | ARM_CONSOLE_BAUDRATE, |
| 46 | &arm_tsp_runtime_console); |
| 47 | if (rc == 0) |
| 48 | panic(); |
| 49 | |
| 50 | console_set_scope(&arm_tsp_runtime_console.console, |
| 51 | CONSOLE_FLAG_BOOT | CONSOLE_FLAG_RUNTIME); |
| 52 | #else |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 53 | console_init(PLAT_ARM_TSP_UART_BASE, PLAT_ARM_TSP_UART_CLK_IN_HZ, |
| 54 | ARM_CONSOLE_BAUDRATE); |
Antonio Nino Diaz | 23ede6a | 2018-06-19 09:29:36 +0100 | [diff] [blame] | 55 | #endif /* MULTI_CONSOLE_API */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | void tsp_early_platform_setup(void) |
| 59 | { |
| 60 | arm_tsp_early_platform_setup(); |
| 61 | } |
| 62 | |
| 63 | /******************************************************************************* |
| 64 | * Perform platform specific setup placeholder |
| 65 | ******************************************************************************/ |
| 66 | void tsp_platform_setup(void) |
| 67 | { |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 68 | plat_arm_gic_driver_init(); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | /******************************************************************************* |
| 72 | * Perform the very early platform specific architectural setup here. At the |
| 73 | * moment this is only intializes the MMU |
| 74 | ******************************************************************************/ |
| 75 | void tsp_plat_arch_setup(void) |
| 76 | { |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 77 | #if USE_COHERENT_MEM |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 78 | /* Ensure ARM platforms dont use coherent memory in TSP */ |
| 79 | assert((BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE) == 0U); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 80 | #endif |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 81 | |
| 82 | const mmap_region_t bl_regions[] = { |
| 83 | MAP_BL_TSP_TOTAL, |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 84 | ARM_MAP_BL_RO, |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 85 | {0} |
| 86 | }; |
| 87 | |
Roberto Vargas | 344ff02 | 2018-10-19 16:44:18 +0100 | [diff] [blame] | 88 | setup_page_tables(bl_regions, plat_arm_get_mmap()); |
Sandrine Bailleux | 4a1267a | 2016-05-18 16:11:47 +0100 | [diff] [blame] | 89 | enable_mmu_el1(0); |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 90 | } |