Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
| 31 | #include <arch_helpers.h> |
| 32 | #include <assert.h> |
| 33 | #include <debug.h> |
| 34 | #include <gic_v2.h> |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 35 | #include <platform.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 36 | #include <platform_def.h> |
Dan Handley | e2c27f5 | 2014-08-01 17:58:27 +0100 | [diff] [blame] | 37 | #include <tsp.h> |
| 38 | #include "tsp_private.h" |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 39 | |
| 40 | /******************************************************************************* |
| 41 | * This function updates the TSP statistics for FIQs handled synchronously i.e |
| 42 | * the ones that have been handed over by the TSPD. It also keeps count of the |
| 43 | * number of times control was passed back to the TSPD after handling an FIQ. |
| 44 | * In the future it will be possible that the TSPD hands over an FIQ to the TSP |
| 45 | * but does not expect it to return execution. This statistic will be useful to |
| 46 | * distinguish between these two models of synchronous FIQ handling. |
| 47 | * The 'elr_el3' parameter contains the address of the instruction in normal |
| 48 | * world where this FIQ was generated. |
| 49 | ******************************************************************************/ |
| 50 | void tsp_update_sync_fiq_stats(uint32_t type, uint64_t elr_el3) |
| 51 | { |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 52 | uint32_t linear_id = plat_my_core_pos(); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 53 | |
| 54 | tsp_stats[linear_id].sync_fiq_count++; |
| 55 | if (type == TSP_HANDLE_FIQ_AND_RETURN) |
| 56 | tsp_stats[linear_id].sync_fiq_ret_count++; |
| 57 | |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 58 | #if LOG_LEVEL >= LOG_LEVEL_VERBOSE |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 59 | spin_lock(&console_lock); |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 60 | VERBOSE("TSP: cpu 0x%lx sync fiq request from 0x%lx\n", |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 61 | read_mpidr(), elr_el3); |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 62 | VERBOSE("TSP: cpu 0x%lx: %d sync fiq requests, %d sync fiq returns\n", |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 63 | read_mpidr(), |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 64 | tsp_stats[linear_id].sync_fiq_count, |
| 65 | tsp_stats[linear_id].sync_fiq_ret_count); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 66 | spin_unlock(&console_lock); |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 67 | #endif |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | /******************************************************************************* |
| 71 | * TSP FIQ handler called as a part of both synchronous and asynchronous |
| 72 | * handling of FIQ interrupts. It returns 0 upon successfully handling a S-EL1 |
| 73 | * FIQ and treats all other FIQs as EL3 interrupts. It assumes that the GIC |
| 74 | * architecture version in v2.0 and the secure physical timer interrupt is the |
| 75 | * only S-EL1 interrupt that it needs to handle. |
| 76 | ******************************************************************************/ |
Juan Castillo | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 77 | int32_t tsp_fiq_handler(void) |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 78 | { |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 79 | uint32_t linear_id = plat_my_core_pos(), id; |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 80 | |
| 81 | /* |
| 82 | * Get the highest priority pending interrupt id and see if it is the |
| 83 | * secure physical generic timer interrupt in which case, handle it. |
| 84 | * Otherwise throw this interrupt at the EL3 firmware. |
| 85 | */ |
Dan Handley | 701fea7 | 2014-05-27 16:17:21 +0100 | [diff] [blame] | 86 | id = plat_ic_get_pending_interrupt_id(); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 87 | |
| 88 | /* TSP can only handle the secure physical timer interrupt */ |
Dan Handley | 4fd2f5c | 2014-08-04 11:41:20 +0100 | [diff] [blame] | 89 | if (id != TSP_IRQ_SEC_PHY_TIMER) |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 90 | return TSP_EL3_FIQ; |
| 91 | |
| 92 | /* |
| 93 | * Handle the interrupt. Also sanity check if it has been preempted by |
| 94 | * another secure interrupt through an assertion. |
| 95 | */ |
Dan Handley | 701fea7 | 2014-05-27 16:17:21 +0100 | [diff] [blame] | 96 | id = plat_ic_acknowledge_interrupt(); |
Dan Handley | 4fd2f5c | 2014-08-04 11:41:20 +0100 | [diff] [blame] | 97 | assert(id == TSP_IRQ_SEC_PHY_TIMER); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 98 | tsp_generic_timer_handler(); |
Dan Handley | 701fea7 | 2014-05-27 16:17:21 +0100 | [diff] [blame] | 99 | plat_ic_end_of_interrupt(id); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 100 | |
| 101 | /* Update the statistics and print some messages */ |
| 102 | tsp_stats[linear_id].fiq_count++; |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 103 | #if LOG_LEVEL >= LOG_LEVEL_VERBOSE |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 104 | spin_lock(&console_lock); |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 105 | VERBOSE("TSP: cpu 0x%lx handled fiq %d\n", |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 106 | read_mpidr(), id); |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 107 | VERBOSE("TSP: cpu 0x%lx: %d fiq requests\n", |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 108 | read_mpidr(), tsp_stats[linear_id].fiq_count); |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 109 | spin_unlock(&console_lock); |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 110 | #endif |
Achin Gupta | 7671789 | 2014-05-09 11:42:56 +0100 | [diff] [blame] | 111 | return 0; |
| 112 | } |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 113 | |
Juan Castillo | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 114 | int32_t tsp_irq_received(void) |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 115 | { |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 116 | uint32_t linear_id = plat_my_core_pos(); |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 117 | |
| 118 | tsp_stats[linear_id].irq_count++; |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 119 | #if LOG_LEVEL >= LOG_LEVEL_VERBOSE |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 120 | spin_lock(&console_lock); |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 121 | VERBOSE("TSP: cpu 0x%lx received irq\n", read_mpidr()); |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 122 | VERBOSE("TSP: cpu 0x%lx: %d irq requests\n", |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 123 | read_mpidr(), tsp_stats[linear_id].irq_count); |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 124 | spin_unlock(&console_lock); |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 125 | #endif |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 126 | return TSP_PREEMPTED; |
| 127 | } |