更新日期: 2022/06/01 来源: https://gitee.com/weharmony/kernel_liteos_a_note
gic_common.h
浏览该文件的文档.
1/*!
2 * @file gic_common.h
3 * @brief GIC(Generic Interrupt Controller)是ARM公司提供的一个通用的中断控制器
4 * @link http://weharmonyos.com/blog/44.html
5 * @verbatim
6 * @endverbatim
7 * @version
8 * @author weharmonyos.com | 鸿蒙研究站 | 每天死磕一点点
9 * @date 2021-11-18
10 *
11 * @history
12 *
13 */
14
15/*
16 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
17 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without modification,
20 * are permitted provided that the following conditions are met:
21 *
22 * 1. Redistributions of source code must retain the above copyright notice, this list of
23 * conditions and the following disclaimer.
24 *
25 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
26 * of conditions and the following disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
30 * to endorse or promote products derived from this software without specific prior written
31 * permission.
32 *
33 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
34 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
35 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
36 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
37 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
38 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
39 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
40 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
41 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
42 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
43 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 */
45
46#ifndef _GIC_COMMON_H
47#define _GIC_COMMON_H
48
49#include "stdint.h"
50#include "target_config.h"
51#include "los_config.h"
52
53/* gic arch revision | GIC架构版本*/
54enum {
55 GICV1 = 1,
58 GICV4
59};
60
61#define GIC_REV_MASK 0xF0
62#define GIC_REV_OFFSET 0x4
63/// 前往 http://weharmonyos.com 下载 对应datasheet
64#ifdef LOSCFG_ARCH_GIC_V2
65#define GICC_CTLR (GICC_OFFSET + 0x00) /* CPU Interface Control Register | 控制寄存器,控制是否上报中断到处理器 */
66#define GICC_PMR (GICC_OFFSET + 0x04) /* Interrupt Priority Mask Register | 中断优先级屏蔽寄存器*/
67#define GICC_BPR (GICC_OFFSET + 0x08) /* Binary Point Register */
68#define GICC_IAR (GICC_OFFSET + 0x0c) /* Interrupt Acknowledge Register | 中断回应寄存器,处理器会读取此寄存器,用来获取上报的中断号*/
69#define GICC_EOIR (GICC_OFFSET + 0x10) /* End of Interrupt Register | 处理器会写这个寄存器来告知CPU interface,此中断已经处理完成*/
70#define GICC_RPR (GICC_OFFSET + 0x14) /* Running Priority Register | 运行优先级寄存器,此寄存器的值表示当前CPU interface的运行优先级*/
71#define GICC_HPPIR (GICC_OFFSET + 0x18) /* Highest Priority Pending Interrupt Register | 当前pending状态的最高优先级中断号,当在允许中断抢占的情况下,如果此中断的优先级值大于运行优先级寄存器的值的话,就会发生中断抢占*/
72#endif
73
74#define GICD_CTLR (GICD_OFFSET + 0x000) /* Distributor Control Register */
75#define GICD_TYPER (GICD_OFFSET + 0x004) /* Interrupt Controller Type Register */
76#define GICD_IIDR (GICD_OFFSET + 0x008) /* Distributor Implementer Identification Register */
77#define GICD_IGROUPR(n) (GICD_OFFSET + 0x080 + (n) * 4) /* Interrupt Group Registers */
78#define GICD_ISENABLER(n) (GICD_OFFSET + 0x100 + (n) * 4) /* Interrupt Set-Enable Registers */
79#define GICD_ICENABLER(n) (GICD_OFFSET + 0x180 + (n) * 4) /* Interrupt Clear-Enable Registers */
80#define GICD_ISPENDR(n) (GICD_OFFSET + 0x200 + (n) * 4) /* Interrupt Set-Pending Registers */
81#define GICD_ICPENDR(n) (GICD_OFFSET + 0x280 + (n) * 4) /* Interrupt Clear-Pending Registers */
82#define GICD_ISACTIVER(n) (GICD_OFFSET + 0x300 + (n) * 4) /* GICv2 Interrupt Set-Active Registers */
83#define GICD_ICACTIVER(n) (GICD_OFFSET + 0x380 + (n) * 4) /* Interrupt Clear-Active Registers */
84#define GICD_IPRIORITYR(n) (GICD_OFFSET + 0x400 + (n) * 4) /* Interrupt Priority Registers */
85#define GICD_ITARGETSR(n) (GICD_OFFSET + 0x800 + (n) * 4) /* Interrupt Processor Targets Registers */
86#define GICD_ICFGR(n) (GICD_OFFSET + 0xc00 + (n) * 4) /* Interrupt Configuration Registers */
87#define GICD_SGIR (GICD_OFFSET + 0xf00) /* Software Generated Interrupt Register */
88#define GICD_CPENDSGIR(n) (GICD_OFFSET + 0xf10 + (n) * 4) /* SGI Clear-Pending Registers; NOT available on cortex-a9 */
89#define GICD_SPENDSGIR(n) (GICD_OFFSET + 0xf20 + (n) * 4) /* SGI Set-Pending Registers; NOT available on cortex-a9 */
90#define GICD_PIDR2V2 (GICD_OFFSET + 0xfe8)
91#define GICD_PIDR2V3 (GICD_OFFSET + 0xffe8)
92
93#ifdef LOSCFG_ARCH_GIC_V3
94#define GICD_IGRPMODR(n) (GICD_OFFSET + 0x0d00 + (n) * 4) /* Interrupt Group Mode Reisters */
95#define GICD_IROUTER(n) (GICD_OFFSET + 0x6000 + (n) * 8) /* Interrupt Rounter Reisters */
96#endif
97
98#define GIC_REG_8(reg) (*(volatile UINT8 *)((UINTPTR)(GIC_BASE_ADDR + (reg))))
99#define GIC_REG_32(reg) (*(volatile UINT32 *)((UINTPTR)(GIC_BASE_ADDR + (reg))))
100#define GIC_REG_64(reg) (*(volatile UINT64 *)((UINTPTR)(GIC_BASE_ADDR + (reg))))
101
102#define GICD_INT_DEF_PRI 0xa0U
103#define GICD_INT_DEF_PRI_X4 (((UINT32)GICD_INT_DEF_PRI << 24) | \
104 ((UINT32)GICD_INT_DEF_PRI << 16) | \
105 ((UINT32)GICD_INT_DEF_PRI << 8) | \
106 (UINT32)GICD_INT_DEF_PRI)
107
108#define GIC_MIN_SPI_NUM 32
109
110/* Interrupt preemption config */
111#define GIC_PRIORITY_MASK 0xFFU
112#define GIC_PRIORITY_OFFSET 8
113
114/*
115 * The number of bits to shift for an interrupt priority is dependent
116 * on the number of bits implemented by the interrupt controller.
117 * If the MAX_BINARY_POINT_VALUE is 7,
118 * it means that interrupt preemption is not supported.
119 */
120#ifndef LOSCFG_ARCH_INTERRUPT_PREEMPTION
121#define MAX_BINARY_POINT_VALUE 7
122#define PRIORITY_SHIFT 0
123#define GIC_MAX_INTERRUPT_PREEMPTION_LEVEL 0U ///< 中断最高优先级
124#else
125#define PRIORITY_SHIFT ((MAX_BINARY_POINT_VALUE + 1) % GIC_PRIORITY_OFFSET)
126#define GIC_MAX_INTERRUPT_PREEMPTION_LEVEL ((UINT8)((GIC_PRIORITY_MASK + 1) >> PRIORITY_SHIFT))
127#endif
128
129#define GIC_INTR_PRIO_MASK ((UINT8)(0xFFFFFFFFU << PRIORITY_SHIFT))
130
131/*
132 * The preemption level is up to 128, and the maximum value corresponding to the interrupt priority is 254 [7:1].
133 * If the GIC_MAX_INTERRUPT_PREEMPTION_LEVEL is 0, the minimum priority is 0xff.
134 */
135#define MIN_INTERRUPT_PRIORITY ((UINT8)((GIC_MAX_INTERRUPT_PREEMPTION_LEVEL - 1) << PRIORITY_SHIFT)) ///< 中断最低优先级
136
137#endif
@ GICV3
Definition: gic_common.h:57
@ GICV1
Definition: gic_common.h:55
@ GICV4
Definition: gic_common.h:58
@ GICV2
Definition: gic_common.h:56