// gic_v2.c void gic_handle_irq(void) { u64 cpu_base = get_gic_cpu_base(); u32 irqstat, irqnr; do { irqstat = readl(cpu_base + GIC_CPU_INTACK); irqnr = irqstat & GICC_IAR_INT_ID_MASK; if (irqnr == GENERIC_TIMER_IRQ) handle_timer_irq(); gicv2_eoi_irq(irqnr)...
static void gic_handle_cascade_irq(struct irq_desc *desc) { struct gic_chip_data *chip_data = irq_desc_get_handler_data(desc); struct irq_chip *chip = irq_desc_get_chip(desc); status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK); gic_irq = (status & GICC_...
distributor 翻译过来就是分发器,负责将中断源传递过来的中断进行分发,而 CPU interface 不言而喻,则是针对 CPU 的配置接口,在多核架构中,每个 CPU 对应一个 CPU interface,负责将 distributor 传递过来的中断传递给 CPU,同时和 CPU 进行系列的交互.因此,在 GIC 中,一个外部中断向上传递的流程为:中断产生源 ->...
* be read after the ACK. */handle_IPI(irqnr, regs);#elseWARN_ONCE(true,"Unexpected SGI received!\n");#endif} } 中断状态 硬件触发中断信号,中断assert,GIC标记中断为PENDING状态。 GIC中distributor选择优先级最高的PENDING中断,发送给CPU interface, CPU interface对优先级进行判定,然后GIC发送中断请求信...
cpu interface 的寄存器: CPU Interface Control Register:全局中断信号开关 Interrupt Priority Mask Register:优先级过滤器,优先级高的中断才能被传递到cpu Binary Point Register:将中断优先级分为两个部分,优先级和子优先级 Interrupt Acknowledge Register:cpu读取这个寄存器获取当前中断id,并认为是对这个中断ack,会使...
中断就是在cpu执行程序的过程中,突然发生异常(包括复位、指令错误等等异常,中断只是异常其中一种),可以打断当前正在执行的程序,临时先处理比较紧急的事情,当处理完成了,再回到原来的程序继续执行。 中断如何发生 首先,在一个cpu中 中断源有很多(比如gpio中断、定时器中断等等),那么为了管理这些中断,就需要一个中断控制...
(structirq_data *data,conststructcpumask *dest,boolforce);//在SMP中设置CPU亲和力int(*irq_retrigger)(structirq_data *data);//重新发送中断到CPUint(*irq_set_type)(structirq_data *data,unsignedintflow_type);//设置中断触发类型int(*irq_set_wake)(structirq_data *data,unsignedinton);//使能/...
staticint __initgic_of_init(struct device_node*node,struct device_node*parent){void__iomem*dist_base;struct redist_region*rdist_regs;u64 redist_stride;u32 nr_redist_regions;int err,i;dist_base=of_iomap(node,0);err=gic_validate_dist_version(dist_base);if(err){pr_err("%pOF: no dist...
u32 IntID; u32 IntIDFull; XScuGic_VectorTableEntry *TablePtr; Xil_AssertVoid(InstancePtr != NULL); IntIDFull = XScuGic_CPUReadReg(InstancePtr, XSCUGIC_INT_ACK_OFFSET); IntID = IntIDFull & XSCUGIC_ACK_INTID_MASK; if(XSCUGIC_MAX_NUM_INTR_INPUTS < IntID){ goto IntrExit; } TablePtr...
根据⽬标CPU的不同,外设的中断可以分成PPI(Private Peripheral Interrupt)和SPI(Shared Peripheral Interrupt)。PPI只能分配给⼀个确定的processor,⽽SPI可以由Distributor将中断分配给⼀组Processor中的⼀个进⾏处理。外设类型的中断⼀般通过⼀个interrupt request line的硬件信号线连接到中断控制器,可能是...