aboutsummaryrefslogtreecommitdiff
path: root/product/rcar/include/rcar_irq.h
blob: 6b4b9b1a3b538a5defde02ff77b8f054fb7196b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Renesas SCP/MCP Software
 * Copyright (c) 2020, Renesas Electronics Corporation. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef RCAR_IRQ_H
#define RCAR_IRQ_H

#include <fwk_interrupt.h>

enum rcar_irq {
    /**/
    MIN_IRQ = 16,
    VIRTUAL_TIMER_IRQ = 27,
    /**/
    MFIS_AREICR1_IRQ = 257,
    MFIS_AREICR2_IRQ = 258,
    MFIS_AREICR3_IRQ = 259,
    /**/ /* The following numbers are virtual IID */
    SMCMH_IRQ_START = 1024,
    SMCMH_SECURE_IRQ = SMCMH_IRQ_START, /* SMC Secure */
    SMCMH_LOW_PRIO_IRQ, /* SMC Low Priority */
    SMCMH_HIGH_PRIO_IRQ, /* SMC High Priority */
    SMCMH_IRQ_END,
    MAX_IRQ = SMCMH_IRQ_END,
    /**/
};

#endif /* RCAR_IRQ_H */