Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 1 | /* |
Jeenu Viswambharan | 528d21b | 2016-11-15 13:53:57 +0000 | [diff] [blame^] | 2 | * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <arm_def.h> |
| 8 | #include <gicv3.h> |
| 9 | #include <plat_arm.h> |
| 10 | #include <platform.h> |
| 11 | #include <platform_def.h> |
| 12 | |
| 13 | /****************************************************************************** |
| 14 | * The following functions are defined as weak to allow a platform to override |
| 15 | * the way the GICv3 driver is initialised and used. |
| 16 | *****************************************************************************/ |
| 17 | #pragma weak plat_arm_gic_driver_init |
| 18 | #pragma weak plat_arm_gic_init |
| 19 | #pragma weak plat_arm_gic_cpuif_enable |
| 20 | #pragma weak plat_arm_gic_cpuif_disable |
| 21 | #pragma weak plat_arm_gic_pcpu_init |
Jeenu Viswambharan | 78132c9 | 2016-12-09 11:12:34 +0000 | [diff] [blame] | 22 | #pragma weak plat_arm_gic_redistif_on |
| 23 | #pragma weak plat_arm_gic_redistif_off |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 24 | |
| 25 | /* The GICv3 driver only needs to be initialized in EL3 */ |
Soby Mathew | cf022c5 | 2016-01-13 17:06:00 +0000 | [diff] [blame] | 26 | static uintptr_t rdistif_base_addrs[PLATFORM_CORE_COUNT]; |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 27 | |
| 28 | /* Array of Group1 secure interrupts to be configured by the gic driver */ |
Soby Mathew | cf022c5 | 2016-01-13 17:06:00 +0000 | [diff] [blame] | 29 | static const unsigned int g1s_interrupt_array[] = { |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 30 | PLAT_ARM_G1S_IRQS |
| 31 | }; |
| 32 | |
| 33 | /* Array of Group0 interrupts to be configured by the gic driver */ |
Soby Mathew | cf022c5 | 2016-01-13 17:06:00 +0000 | [diff] [blame] | 34 | static const unsigned int g0_interrupt_array[] = { |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 35 | PLAT_ARM_G0_IRQS |
| 36 | }; |
| 37 | |
Jeenu Viswambharan | 528d21b | 2016-11-15 13:53:57 +0000 | [diff] [blame^] | 38 | /* |
| 39 | * MPIDR hashing function for translating MPIDRs read from GICR_TYPER register |
| 40 | * to core position. |
| 41 | * |
| 42 | * Calculating core position is dependent on MPIDR_EL1.MT bit. However, affinity |
| 43 | * values read from GICR_TYPER don't have an MT field. To reuse the same |
| 44 | * translation used for CPUs, we insert MT bit read from the PE's MPIDR into |
| 45 | * that read from GICR_TYPER. |
| 46 | * |
| 47 | * Assumptions: |
| 48 | * |
| 49 | * - All CPUs implemented in the system have MPIDR_EL1.MT bit set; |
| 50 | * - No CPUs implemented in the system use affinity level 3. |
| 51 | */ |
| 52 | static unsigned int arm_gicv3_mpidr_hash(u_register_t mpidr) |
| 53 | { |
| 54 | mpidr |= (read_mpidr_el1() & MPIDR_MT_MASK); |
| 55 | return plat_arm_calc_core_pos(mpidr); |
| 56 | } |
| 57 | |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 58 | const gicv3_driver_data_t arm_gic_data = { |
| 59 | .gicd_base = PLAT_ARM_GICD_BASE, |
| 60 | .gicr_base = PLAT_ARM_GICR_BASE, |
| 61 | .g0_interrupt_num = ARRAY_SIZE(g0_interrupt_array), |
| 62 | .g1s_interrupt_num = ARRAY_SIZE(g1s_interrupt_array), |
| 63 | .g0_interrupt_array = g0_interrupt_array, |
| 64 | .g1s_interrupt_array = g1s_interrupt_array, |
| 65 | .rdistif_num = PLATFORM_CORE_COUNT, |
| 66 | .rdistif_base_addrs = rdistif_base_addrs, |
Jeenu Viswambharan | 528d21b | 2016-11-15 13:53:57 +0000 | [diff] [blame^] | 67 | .mpidr_to_core_pos = arm_gicv3_mpidr_hash |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | void plat_arm_gic_driver_init(void) |
| 71 | { |
| 72 | /* |
| 73 | * The GICv3 driver is initialized in EL3 and does not need |
| 74 | * to be initialized again in SEL1. This is because the S-EL1 |
| 75 | * can use GIC system registers to manage interrupts and does |
| 76 | * not need GIC interface base addresses to be configured. |
| 77 | */ |
Masahiro Yamada | a269837 | 2016-12-26 00:22:47 +0900 | [diff] [blame] | 78 | #if (defined(AARCH32) && defined(IMAGE_BL32)) || \ |
| 79 | (defined(IMAGE_BL31) && !defined(AARCH32)) |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 80 | gicv3_driver_init(&arm_gic_data); |
| 81 | #endif |
| 82 | } |
| 83 | |
| 84 | /****************************************************************************** |
| 85 | * ARM common helper to initialize the GIC. Only invoked by BL31 |
| 86 | *****************************************************************************/ |
| 87 | void plat_arm_gic_init(void) |
| 88 | { |
| 89 | gicv3_distif_init(); |
| 90 | gicv3_rdistif_init(plat_my_core_pos()); |
| 91 | gicv3_cpuif_enable(plat_my_core_pos()); |
| 92 | } |
| 93 | |
| 94 | /****************************************************************************** |
| 95 | * ARM common helper to enable the GIC CPU interface |
| 96 | *****************************************************************************/ |
| 97 | void plat_arm_gic_cpuif_enable(void) |
| 98 | { |
| 99 | gicv3_cpuif_enable(plat_my_core_pos()); |
| 100 | } |
| 101 | |
| 102 | /****************************************************************************** |
| 103 | * ARM common helper to disable the GIC CPU interface |
| 104 | *****************************************************************************/ |
| 105 | void plat_arm_gic_cpuif_disable(void) |
| 106 | { |
| 107 | gicv3_cpuif_disable(plat_my_core_pos()); |
| 108 | } |
| 109 | |
| 110 | /****************************************************************************** |
| 111 | * ARM common helper to initialize the per-cpu redistributor interface in GICv3 |
| 112 | *****************************************************************************/ |
| 113 | void plat_arm_gic_pcpu_init(void) |
| 114 | { |
| 115 | gicv3_rdistif_init(plat_my_core_pos()); |
| 116 | } |
Jeenu Viswambharan | 78132c9 | 2016-12-09 11:12:34 +0000 | [diff] [blame] | 117 | |
| 118 | /****************************************************************************** |
| 119 | * ARM common helpers to power GIC redistributor interface |
| 120 | *****************************************************************************/ |
| 121 | void plat_arm_gic_redistif_on(void) |
| 122 | { |
| 123 | gicv3_rdistif_on(plat_my_core_pos()); |
| 124 | } |
| 125 | |
| 126 | void plat_arm_gic_redistif_off(void) |
| 127 | { |
| 128 | gicv3_rdistif_off(plat_my_core_pos()); |
| 129 | } |