Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved. |
| 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 <assert.h> |
| 32 | #include <bl_common.h> |
| 33 | #include <gicv2.h> |
| 34 | #include <interrupt_mgmt.h> |
| 35 | |
| 36 | uint32_t plat_ic_get_pending_interrupt_id(void) |
| 37 | { |
| 38 | return gicv2_get_pending_interrupt_id(); |
| 39 | } |
| 40 | |
| 41 | uint32_t plat_ic_get_pending_interrupt_type(void) |
| 42 | { |
| 43 | return gicv2_get_pending_interrupt_type(); |
| 44 | } |
| 45 | |
| 46 | uint32_t plat_ic_acknowledge_interrupt(void) |
| 47 | { |
| 48 | return gicv2_acknowledge_interrupt(); |
| 49 | } |
| 50 | |
| 51 | uint32_t plat_ic_get_interrupt_type(uint32_t id) |
| 52 | { |
| 53 | uint32_t group; |
| 54 | |
| 55 | group = gicv2_get_interrupt_group(id); |
| 56 | |
| 57 | /* Assume that all secure interrupts are S-EL1 interrupts */ |
| 58 | if (!group) |
| 59 | return INTR_TYPE_S_EL1; |
| 60 | else |
| 61 | return INTR_TYPE_NS; |
| 62 | |
| 63 | } |
| 64 | |
| 65 | void plat_ic_end_of_interrupt(uint32_t id) |
| 66 | { |
| 67 | gicv2_end_of_interrupt(id); |
| 68 | } |
| 69 | |
| 70 | uint32_t plat_interrupt_type_to_line(uint32_t type, |
| 71 | uint32_t security_state) |
| 72 | { |
| 73 | assert(type == INTR_TYPE_S_EL1 || |
| 74 | type == INTR_TYPE_EL3 || |
| 75 | type == INTR_TYPE_NS); |
| 76 | |
| 77 | assert(sec_state_is_valid(security_state)); |
| 78 | |
| 79 | /* Non-secure interrupts are signalled on the IRQ line always */ |
| 80 | if (type == INTR_TYPE_NS) |
| 81 | return __builtin_ctz(SCR_IRQ_BIT); |
| 82 | |
| 83 | /* |
| 84 | * Secure interrupts are signalled using the IRQ line if the FIQ_EN |
| 85 | * bit is not set else they are signalled using the FIQ line. |
| 86 | */ |
| 87 | if (gicv2_is_fiq_enabled()) |
| 88 | return __builtin_ctz(SCR_FIQ_BIT); |
| 89 | else |
| 90 | return __builtin_ctz(SCR_IRQ_BIT); |
| 91 | } |
| 92 | |