// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2012 Regents of the University of California * Copyright (C) 2017-2018 SiFive * Copyright (C) 2020 Western Digital Corporation or its affiliates.
*/
while ((topi = csr_read(CSR_TOPI)))
generic_handle_domain_irq(intc_domain, topi >> TOPI_IID_SHIFT);
}
/* * On RISC-V systems local interrupts are masked or unmasked by writing * the SIE (Supervisor Interrupt Enable) CSR. As CSRs can only be written * on the local hart, these functions can only be called on the hart that * corresponds to the IRQ chip.
*/
staticvoid andes_intc_irq_mask(struct irq_data *d)
{ /* * Andes specific S-mode local interrupt causes (hwirq) * are defined as (256 + n) and controlled by n-th bit * of SLIE.
*/ unsignedint mask = BIT(d->hwirq % BITS_PER_LONG);
if (d->hwirq < ANDES_SLI_CAUSE_BASE)
csr_clear(CSR_IE, mask); else
csr_clear(ANDES_CSR_SLIE, mask);
}
if (d->hwirq < ANDES_SLI_CAUSE_BASE)
csr_set(CSR_IE, mask); else
csr_set(ANDES_CSR_SLIE, mask);
}
staticvoid riscv_intc_irq_eoi(struct irq_data *d)
{ /* * The RISC-V INTC driver uses handle_percpu_devid_irq() flow * for the per-HART local interrupts and child irqchip drivers * (such as PLIC, SBI IPI, CLINT, APLIC, IMSIC, etc) implement * chained handlers for the per-HART local interrupts. * * In the absence of irq_eoi(), the chained_irq_enter() and * chained_irq_exit() functions (used by child irqchip drivers) * will do unnecessary mask/unmask of per-HART local interrupts * at the time of handling interrupts. To avoid this, we provide * an empty irq_eoi() callback for RISC-V INTC irqchip.
*/
}
staticint riscv_intc_domain_alloc(struct irq_domain *domain, unsignedint virq, unsignedint nr_irqs, void *arg)
{ int i, ret;
irq_hw_number_t hwirq; unsignedint type = IRQ_TYPE_NONE; struct irq_fwspec *fwspec = arg;
ret = irq_domain_translate_onecell(domain, fwspec, &hwirq, &type); if (ret) return ret;
/* * Only allow hwirq for which we have corresponding standard or * custom interrupt enable register.
*/ if (hwirq >= riscv_intc_nr_irqs &&
(hwirq < riscv_intc_custom_base ||
hwirq >= riscv_intc_custom_base + riscv_intc_custom_nr_irqs)) return -EINVAL;
for (i = 0; i < nr_irqs; i++) {
ret = riscv_intc_domain_map(domain, virq + i, hwirq + i); if (ret) return ret;
}
rc = riscv_of_parent_hartid(node, &hartid); if (rc < 0) {
pr_warn("unable to find hart id for %pOF\n", node); return 0;
}
/* * The DT will have one INTC DT node under each CPU (or HART) * DT node so riscv_intc_init() function will be called once * for each INTC DT node. We only need to do INTC initialization * for the INTC DT node belonging to boot CPU (or boot HART).
*/ if (riscv_hartid_to_cpuid(hartid) != smp_processor_id()) { /* * The INTC nodes of each CPU are suppliers for downstream * interrupt controllers (such as PLIC, IMSIC and APLIC * direct-mode) so we should mark an INTC node as initialized * if we are not creating IRQ domain for it.
*/
fwnode_dev_initialized(of_fwnode_handle(node), true); return 0;
}
/* * The ACPI MADT will have one INTC for each CPU (or HART) * so riscv_intc_acpi_init() function will be called once * for each INTC. We only do INTC initialization * for the INTC belonging to the boot CPU (or boot HART).
*/ if (riscv_hartid_to_cpuid(rintc->hart_id) != smp_processor_id()) return 0;
fn = irq_domain_alloc_named_fwnode("RISCV-INTC"); if (!fn) {
pr_err("unable to allocate INTC FW node\n"); return -ENOMEM;
}
rc = riscv_intc_init_common(fn, &riscv_intc_chip); if (rc)
irq_domain_free_fwnode(fn); else
acpi_set_irq_model(ACPI_IRQ_MODEL_RINTC, riscv_acpi_get_gsi_domain_id);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.