1 // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 3 * Multiplex several IPIs over a single HW IPI 4 * 5 * Copyright (c) 2022 Ventana Micro Systems In 6 */ 7 8 #define pr_fmt(fmt) "riscv: " fmt 9 #include <linux/cpu.h> 10 #include <linux/init.h> 11 #include <linux/irq.h> 12 #include <linux/irqchip/chained_irq.h> 13 #include <linux/irqdomain.h> 14 #include <asm/sbi.h> 15 16 DEFINE_STATIC_KEY_FALSE(riscv_sbi_for_rfence); 17 EXPORT_SYMBOL_GPL(riscv_sbi_for_rfence); 18 19 static int sbi_ipi_virq; 20 21 static void sbi_ipi_handle(struct irq_desc *de 22 { 23 struct irq_chip *chip = irq_desc_get_c 24 25 chained_irq_enter(chip, desc); 26 27 csr_clear(CSR_IP, IE_SIE); 28 ipi_mux_process(); 29 30 chained_irq_exit(chip, desc); 31 } 32 33 static int sbi_ipi_starting_cpu(unsigned int c 34 { 35 enable_percpu_irq(sbi_ipi_virq, irq_ge 36 return 0; 37 } 38 39 void __init sbi_ipi_init(void) 40 { 41 int virq; 42 struct irq_domain *domain; 43 44 if (riscv_ipi_have_virq_range()) 45 return; 46 47 domain = irq_find_matching_fwnode(risc 48 DOMA 49 if (!domain) { 50 pr_err("unable to find INTC IR 51 return; 52 } 53 54 sbi_ipi_virq = irq_create_mapping(doma 55 if (!sbi_ipi_virq) { 56 pr_err("unable to create INTC 57 return; 58 } 59 60 virq = ipi_mux_create(BITS_PER_BYTE, s 61 if (virq <= 0) { 62 pr_err("unable to create muxed 63 irq_dispose_mapping(sbi_ipi_vi 64 return; 65 } 66 67 irq_set_chained_handler(sbi_ipi_virq, 68 69 /* 70 * Don't disable IPI when CPU goes off 71 * the masking/unmasking of virtual IP 72 * via generic IPI-Mux 73 */ 74 cpuhp_setup_state(CPUHP_AP_IRQ_RISCV_S 75 "irqchip/sbi-ipi:sta 76 sbi_ipi_starting_cpu 77 78 riscv_ipi_set_virq_range(virq, BITS_PE 79 pr_info("providing IPIs using SBI IPI 80 81 /* 82 * Use the SBI remote fence extension 83 * the extra context switch needed to 84 */ 85 static_branch_enable(&riscv_sbi_for_rf 86 } 87
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.