mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
cb69d86550
- Core: - Remove a global lock in the affinity setting code The lock protects a cpumask for intermediate results and the lock causes a bottleneck on simultaneous start of multiple virtual machines. Replace the lock and the static cpumask with a per CPU cpumask which is nicely serialized by raw spinlock held when executing this code. - Provide support for giving a suffix to interrupt domain names. That's required to support devices with subfunctions so that the domain names are distinct even if they originate from the same device node. - The usual set of cleanups and enhancements all over the place - Drivers: - Support for longarch AVEC interrupt chip - Refurbishment of the Armada driver so it can be extended for new variants. - The usual set of cleanups and enhancements all over the place -----BEGIN PGP SIGNATURE----- iQJHBAABCgAxFiEEQp8+kY+LLUocC4bMphj1TA10mKEFAmbn5p8THHRnbHhAbGlu dXRyb25peC5kZQAKCRCmGPVMDXSYoRFtD/43eB3h5usY2OPW0JmDqrE6qnzsvjPZ 1H52BcmMcOuI6yCfTnbi/fBB52mwSEGq9Dmt1GXradyq9/CJDIqZ1ajI1rA2jzW2 YdbeTDpKm1rS2ddzfp2LT2BryrNt+7etrRO7qHn4EKSuOcNuV2f58WPbIIqasvaK uPbUDVDPrvXxLNcjoab6SqaKrEoAaHSyKpd0MvDd80wHrtcSC/QouW7JDSUXv699 RwvLebN1OF6mQ2J8Z3DLeCQpcbAs+UT8UvID7kYUJi1g71J/ZY+xpMLoX/gHiDNr isBtsuEAiZeNaFpksc7A6Jgu5ljZf2/aLCqbPLlHaduHFNmo94x9KUbIF2cpEMN+ rsf5Ff7AVh1otz3cUwLLsm+cFLWRRoZdLuncn7rrgB4Yg0gll7qzyLO6YGvQHr8U Ocj1RXtvvWsMk4XzhgCt1AH/42cO6go+bhA4HspeYykNpsIldIUl1MeFbO8sWiDJ kybuwiwHp3oaMLjEK4Lpq65u7Ll8Lju2zRde65YUJN2nbNmJFORrOLmeC1qsr6ri dpend6n2qD9UD1oAt32ej/uXnG160nm7UKescyxiZNeTm1+ez8GW31hY128ifTY3 4R3urGS38p3gazXBsfw6eqkeKx0kEoDNoQqrO5gBvb8kowYTvoZtkwMGAN9OADwj w6vvU0i+NIyVMA== =JlJ2 -----END PGP SIGNATURE----- Merge tag 'irq-core-2024-09-16' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip Pull irq updates from Thomas Gleixner: "Core: - Remove a global lock in the affinity setting code The lock protects a cpumask for intermediate results and the lock causes a bottleneck on simultaneous start of multiple virtual machines. Replace the lock and the static cpumask with a per CPU cpumask which is nicely serialized by raw spinlock held when executing this code. - Provide support for giving a suffix to interrupt domain names. That's required to support devices with subfunctions so that the domain names are distinct even if they originate from the same device node. - The usual set of cleanups and enhancements all over the place Drivers: - Support for longarch AVEC interrupt chip - Refurbishment of the Armada driver so it can be extended for new variants. - The usual set of cleanups and enhancements all over the place" * tag 'irq-core-2024-09-16' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (73 commits) genirq: Use cpumask_intersects() genirq/cpuhotplug: Use cpumask_intersects() irqchip/apple-aic: Only access system registers on SoCs which provide them irqchip/apple-aic: Add a new "Global fast IPIs only" feature level irqchip/apple-aic: Skip unnecessary enabling of use_fast_ipi dt-bindings: apple,aic: Document A7-A11 compatibles irqdomain: Use IS_ERR_OR_NULL() in irq_domain_trim_hierarchy() genirq/msi: Use kmemdup_array() instead of kmemdup() genirq/proc: Change the return value for set affinity permission error genirq/proc: Use irq_move_pending() in show_irq_affinity() genirq/proc: Correctly set file permissions for affinity control files genirq: Get rid of global lock in irq_do_set_affinity() genirq: Fix typo in struct comment irqchip/loongarch-avec: Add AVEC irqchip support irqchip/loongson-pch-msi: Prepare get_pch_msi_handle() for AVECINTC irqchip/loongson-eiointc: Rename CPUHP_AP_IRQ_LOONGARCH_STARTING LoongArch: Architectural preparation for AVEC irqchip LoongArch: Move irqchip function prototypes to irq-loongson.h irqchip/loongson-pch-msi: Switch to MSI parent domains softirq: Remove unused 'action' parameter from action callback ...
180 lines
4.2 KiB
C
180 lines
4.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2020-2022 Loongson Technology Corporation Limited
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/irq.h>
|
|
#include <linux/irqchip.h>
|
|
#include <linux/irqdomain.h>
|
|
|
|
#include <asm/loongarch.h>
|
|
#include <asm/setup.h>
|
|
|
|
#include "irq-loongson.h"
|
|
|
|
static struct irq_domain *irq_domain;
|
|
struct fwnode_handle *cpuintc_handle;
|
|
|
|
static u32 lpic_gsi_to_irq(u32 gsi)
|
|
{
|
|
int irq = 0;
|
|
|
|
/* Only pch irqdomain transferring is required for LoongArch. */
|
|
if (gsi >= GSI_MIN_PCH_IRQ && gsi <= GSI_MAX_PCH_IRQ)
|
|
irq = acpi_register_gsi(NULL, gsi, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_HIGH);
|
|
|
|
return (irq > 0) ? irq : 0;
|
|
}
|
|
|
|
static struct fwnode_handle *lpic_get_gsi_domain_id(u32 gsi)
|
|
{
|
|
int id;
|
|
struct fwnode_handle *domain_handle = NULL;
|
|
|
|
switch (gsi) {
|
|
case GSI_MIN_CPU_IRQ ... GSI_MAX_CPU_IRQ:
|
|
if (liointc_handle)
|
|
domain_handle = liointc_handle;
|
|
break;
|
|
|
|
case GSI_MIN_LPC_IRQ ... GSI_MAX_LPC_IRQ:
|
|
if (pch_lpc_handle)
|
|
domain_handle = pch_lpc_handle;
|
|
break;
|
|
|
|
case GSI_MIN_PCH_IRQ ... GSI_MAX_PCH_IRQ:
|
|
id = find_pch_pic(gsi);
|
|
if (id >= 0 && pch_pic_handle[id])
|
|
domain_handle = pch_pic_handle[id];
|
|
break;
|
|
}
|
|
|
|
return domain_handle;
|
|
}
|
|
|
|
static void mask_loongarch_irq(struct irq_data *d)
|
|
{
|
|
clear_csr_ecfg(ECFGF(d->hwirq));
|
|
}
|
|
|
|
static void unmask_loongarch_irq(struct irq_data *d)
|
|
{
|
|
set_csr_ecfg(ECFGF(d->hwirq));
|
|
}
|
|
|
|
static struct irq_chip cpu_irq_controller = {
|
|
.name = "CPUINTC",
|
|
.irq_mask = mask_loongarch_irq,
|
|
.irq_unmask = unmask_loongarch_irq,
|
|
};
|
|
|
|
static void handle_cpu_irq(struct pt_regs *regs)
|
|
{
|
|
int hwirq;
|
|
unsigned int estat = read_csr_estat() & CSR_ESTAT_IS;
|
|
|
|
while ((hwirq = ffs(estat))) {
|
|
estat &= ~BIT(hwirq - 1);
|
|
generic_handle_domain_irq(irq_domain, hwirq - 1);
|
|
}
|
|
}
|
|
|
|
static int loongarch_cpu_intc_map(struct irq_domain *d, unsigned int irq,
|
|
irq_hw_number_t hwirq)
|
|
{
|
|
irq_set_noprobe(irq);
|
|
irq_set_chip_and_handler(irq, &cpu_irq_controller, handle_percpu_irq);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct irq_domain_ops loongarch_cpu_intc_irq_domain_ops = {
|
|
.map = loongarch_cpu_intc_map,
|
|
.xlate = irq_domain_xlate_onecell,
|
|
};
|
|
|
|
#ifdef CONFIG_OF
|
|
static int __init cpuintc_of_init(struct device_node *of_node,
|
|
struct device_node *parent)
|
|
{
|
|
cpuintc_handle = of_node_to_fwnode(of_node);
|
|
|
|
irq_domain = irq_domain_create_linear(cpuintc_handle, EXCCODE_INT_NUM,
|
|
&loongarch_cpu_intc_irq_domain_ops, NULL);
|
|
if (!irq_domain)
|
|
panic("Failed to add irqdomain for loongarch CPU");
|
|
|
|
set_handle_irq(&handle_cpu_irq);
|
|
|
|
return 0;
|
|
}
|
|
IRQCHIP_DECLARE(cpu_intc, "loongson,cpu-interrupt-controller", cpuintc_of_init);
|
|
#endif
|
|
|
|
static int __init liointc_parse_madt(union acpi_subtable_headers *header,
|
|
const unsigned long end)
|
|
{
|
|
struct acpi_madt_lio_pic *liointc_entry = (struct acpi_madt_lio_pic *)header;
|
|
|
|
return liointc_acpi_init(irq_domain, liointc_entry);
|
|
}
|
|
|
|
static int __init eiointc_parse_madt(union acpi_subtable_headers *header,
|
|
const unsigned long end)
|
|
{
|
|
struct acpi_madt_eio_pic *eiointc_entry = (struct acpi_madt_eio_pic *)header;
|
|
|
|
return eiointc_acpi_init(irq_domain, eiointc_entry);
|
|
}
|
|
|
|
static int __init acpi_cascade_irqdomain_init(void)
|
|
{
|
|
int r;
|
|
|
|
r = acpi_table_parse_madt(ACPI_MADT_TYPE_LIO_PIC, liointc_parse_madt, 0);
|
|
if (r < 0)
|
|
return r;
|
|
|
|
r = acpi_table_parse_madt(ACPI_MADT_TYPE_EIO_PIC, eiointc_parse_madt, 0);
|
|
if (r < 0)
|
|
return r;
|
|
|
|
if (cpu_has_avecint)
|
|
r = avecintc_acpi_init(irq_domain);
|
|
|
|
return r;
|
|
}
|
|
|
|
static int __init cpuintc_acpi_init(union acpi_subtable_headers *header,
|
|
const unsigned long end)
|
|
{
|
|
int ret;
|
|
|
|
if (irq_domain)
|
|
return 0;
|
|
|
|
/* Mask interrupts. */
|
|
clear_csr_ecfg(ECFG0_IM);
|
|
clear_csr_estat(ESTATF_IP);
|
|
|
|
cpuintc_handle = irq_domain_alloc_named_fwnode("CPUINTC");
|
|
irq_domain = irq_domain_create_linear(cpuintc_handle, EXCCODE_INT_NUM,
|
|
&loongarch_cpu_intc_irq_domain_ops, NULL);
|
|
|
|
if (!irq_domain)
|
|
panic("Failed to add irqdomain for LoongArch CPU");
|
|
|
|
set_handle_irq(&handle_cpu_irq);
|
|
acpi_set_irq_model(ACPI_IRQ_MODEL_LPIC, lpic_get_gsi_domain_id);
|
|
acpi_set_gsi_to_irq_fallback(lpic_gsi_to_irq);
|
|
ret = acpi_cascade_irqdomain_init();
|
|
|
|
return ret;
|
|
}
|
|
|
|
IRQCHIP_ACPI_DECLARE(cpuintc_v1, ACPI_MADT_TYPE_CORE_PIC,
|
|
NULL, ACPI_MADT_CORE_PIC_VERSION_V1, cpuintc_acpi_init);
|