johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 1 | /* |
Boyan Karatotev | 6468d4a | 2023-02-16 15:12:45 +0000 | [diff] [blame] | 2 | * Copyright (c) 2022-2023, Arm Limited. All rights reserved. |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
Jayanth Dodderi Chidanand | 6931675 | 2022-05-09 12:33:03 +0100 | [diff] [blame] | 8 | #include <arch_features.h> |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 9 | #include <arch_helpers.h> |
Boyan Karatotev | 6468d4a | 2023-02-16 15:12:45 +0000 | [diff] [blame] | 10 | #include <lib/extensions/brbe.h> |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 11 | |
Boyan Karatotev | 6468d4a | 2023-02-16 15:12:45 +0000 | [diff] [blame] | 12 | void brbe_init_el3(void) |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 13 | { |
| 14 | uint64_t val; |
| 15 | |
Andre Przywara | c97c551 | 2022-11-17 16:42:09 +0000 | [diff] [blame] | 16 | /* |
| 17 | * MDCR_EL3.SBRBE = 0b01 |
| 18 | * |
| 19 | * Allows BRBE usage in non-secure world and prohibited in |
| 20 | * secure world. |
| 21 | */ |
| 22 | val = read_mdcr_el3(); |
| 23 | val &= ~(MDCR_SBRBE_MASK << MDCR_SBRBE_SHIFT); |
| 24 | val |= (0x1UL << MDCR_SBRBE_SHIFT); |
| 25 | write_mdcr_el3(val); |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 26 | } |