blob: d5379cdc6a8bc877b585ed210cc48e992e33967d [file] [log] [blame]
Achin Gupta6cf89022014-05-09 11:42:56 +01001/*
Dan Handley1b70db02015-03-23 18:13:33 +00002 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
Achin Gupta6cf89022014-05-09 11:42:56 +01003 *
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 Gupta6cf89022014-05-09 11:42:56 +010035#include <platform.h>
Dan Handley5f0cdb02014-05-14 17:44:19 +010036#include <platform_def.h>
Dan Handleyda0af782014-08-01 17:58:27 +010037#include <tsp.h>
38#include "tsp_private.h"
Achin Gupta6cf89022014-05-09 11:42:56 +010039
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 ******************************************************************************/
50void tsp_update_sync_fiq_stats(uint32_t type, uint64_t elr_el3)
51{
Soby Mathewfd650ff2015-07-08 21:45:46 +010052 uint32_t linear_id = plat_my_core_pos();
Achin Gupta6cf89022014-05-09 11:42:56 +010053
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 Handley6ad2e462014-07-29 17:14:00 +010058#if LOG_LEVEL >= LOG_LEVEL_VERBOSE
Achin Gupta6cf89022014-05-09 11:42:56 +010059 spin_lock(&console_lock);
Dan Handley1b70db02015-03-23 18:13:33 +000060 VERBOSE("TSP: cpu 0x%lx sync fiq request from 0x%lx\n",
Soby Mathewfd650ff2015-07-08 21:45:46 +010061 read_mpidr(), elr_el3);
Dan Handley1b70db02015-03-23 18:13:33 +000062 VERBOSE("TSP: cpu 0x%lx: %d sync fiq requests, %d sync fiq returns\n",
Soby Mathewfd650ff2015-07-08 21:45:46 +010063 read_mpidr(),
Dan Handley6ad2e462014-07-29 17:14:00 +010064 tsp_stats[linear_id].sync_fiq_count,
65 tsp_stats[linear_id].sync_fiq_ret_count);
Achin Gupta6cf89022014-05-09 11:42:56 +010066 spin_unlock(&console_lock);
Dan Handley6ad2e462014-07-29 17:14:00 +010067#endif
Achin Gupta6cf89022014-05-09 11:42:56 +010068}
69
Soby Mathew404dba52015-09-22 12:01:18 +010070/******************************************************************************
71 * This function is invoked when a non S-EL1 interrupt is received and causes
72 * the preemption of TSP. This function returns TSP_PREEMPTED and results
73 * in the control being handed over to EL3 for handling the interrupt.
74 *****************************************************************************/
75int32_t tsp_handle_preemption(void)
76{
77 uint32_t linear_id = plat_my_core_pos();
78
79 tsp_stats[linear_id].preempt_intr_count++;
80#if LOG_LEVEL >= LOG_LEVEL_VERBOSE
81 spin_lock(&console_lock);
82 VERBOSE("TSP: cpu 0x%lx: %d preempt interrupt requests\n",
83 read_mpidr(), tsp_stats[linear_id].preempt_intr_count);
84 spin_unlock(&console_lock);
85#endif
86 return TSP_PREEMPTED;
87}
88
Achin Gupta6cf89022014-05-09 11:42:56 +010089/*******************************************************************************
90 * TSP FIQ handler called as a part of both synchronous and asynchronous
91 * handling of FIQ interrupts. It returns 0 upon successfully handling a S-EL1
92 * FIQ and treats all other FIQs as EL3 interrupts. It assumes that the GIC
93 * architecture version in v2.0 and the secure physical timer interrupt is the
94 * only S-EL1 interrupt that it needs to handle.
95 ******************************************************************************/
Juan Castillo4f2104f2014-06-13 17:05:10 +010096int32_t tsp_fiq_handler(void)
Achin Gupta6cf89022014-05-09 11:42:56 +010097{
Soby Mathewfd650ff2015-07-08 21:45:46 +010098 uint32_t linear_id = plat_my_core_pos(), id;
Achin Gupta6cf89022014-05-09 11:42:56 +010099
100 /*
101 * Get the highest priority pending interrupt id and see if it is the
102 * secure physical generic timer interrupt in which case, handle it.
103 * Otherwise throw this interrupt at the EL3 firmware.
Soby Mathew404dba52015-09-22 12:01:18 +0100104 *
105 * There is a small time window between reading the highest priority
106 * pending interrupt and acknowledging it during which another
107 * interrupt of higher priority could become the highest pending
108 * interrupt. This is not expected to happen currently for TSP.
Achin Gupta6cf89022014-05-09 11:42:56 +0100109 */
Dan Handley9865ac12014-05-27 16:17:21 +0100110 id = plat_ic_get_pending_interrupt_id();
Achin Gupta6cf89022014-05-09 11:42:56 +0100111
112 /* TSP can only handle the secure physical timer interrupt */
Dan Handley5a06bb72014-08-04 11:41:20 +0100113 if (id != TSP_IRQ_SEC_PHY_TIMER)
Soby Mathew404dba52015-09-22 12:01:18 +0100114 return tsp_handle_preemption();
Achin Gupta6cf89022014-05-09 11:42:56 +0100115
116 /*
Soby Mathew404dba52015-09-22 12:01:18 +0100117 * Acknowledge and handle the secure timer interrupt. Also sanity check
118 * if it has been preempted by another interrupt through an assertion.
Achin Gupta6cf89022014-05-09 11:42:56 +0100119 */
Dan Handley9865ac12014-05-27 16:17:21 +0100120 id = plat_ic_acknowledge_interrupt();
Dan Handley5a06bb72014-08-04 11:41:20 +0100121 assert(id == TSP_IRQ_SEC_PHY_TIMER);
Achin Gupta6cf89022014-05-09 11:42:56 +0100122 tsp_generic_timer_handler();
Dan Handley9865ac12014-05-27 16:17:21 +0100123 plat_ic_end_of_interrupt(id);
Achin Gupta6cf89022014-05-09 11:42:56 +0100124
125 /* Update the statistics and print some messages */
126 tsp_stats[linear_id].fiq_count++;
Dan Handley6ad2e462014-07-29 17:14:00 +0100127#if LOG_LEVEL >= LOG_LEVEL_VERBOSE
Achin Gupta6cf89022014-05-09 11:42:56 +0100128 spin_lock(&console_lock);
Dan Handley1b70db02015-03-23 18:13:33 +0000129 VERBOSE("TSP: cpu 0x%lx handled fiq %d\n",
Soby Mathewfd650ff2015-07-08 21:45:46 +0100130 read_mpidr(), id);
Dan Handley1b70db02015-03-23 18:13:33 +0000131 VERBOSE("TSP: cpu 0x%lx: %d fiq requests\n",
Soby Mathewfd650ff2015-07-08 21:45:46 +0100132 read_mpidr(), tsp_stats[linear_id].fiq_count);
Achin Gupta6cf89022014-05-09 11:42:56 +0100133 spin_unlock(&console_lock);
Dan Handley6ad2e462014-07-29 17:14:00 +0100134#endif
Achin Gupta6cf89022014-05-09 11:42:56 +0100135 return 0;
136}