Commit 5122e380 authored by Sunil V L's avatar Sunil V L Committed by Rafael J. Wysocki

irqchip/riscv-aplic: Add ACPI support

Add ACPI support in APLIC drivers. Use the mapping created early during
boot to get the details about the APLIC.
Signed-off-by: default avatarSunil V L <sunilvl@ventanamicro.com>
Reviewed-by: default avatarAnup Patel <anup@brainfault.org>
Tested-by: default avatarBjörn Töpel <bjorn@rivosinc.com>
Acked-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://patch.msgid.link/20240812005929.113499-17-sunilvl@ventanamicro.comSigned-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent fbe826b1
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Copyright (C) 2022 Ventana Micro Systems Inc. * Copyright (C) 2022 Ventana Micro Systems Inc.
*/ */
#include <linux/acpi.h>
#include <linux/bitfield.h> #include <linux/bitfield.h>
#include <linux/bitops.h> #include <linux/bitops.h>
#include <linux/cpu.h> #include <linux/cpu.h>
...@@ -189,17 +190,22 @@ static int aplic_direct_starting_cpu(unsigned int cpu) ...@@ -189,17 +190,22 @@ static int aplic_direct_starting_cpu(unsigned int cpu)
} }
static int aplic_direct_parse_parent_hwirq(struct device *dev, u32 index, static int aplic_direct_parse_parent_hwirq(struct device *dev, u32 index,
u32 *parent_hwirq, unsigned long *parent_hartid) u32 *parent_hwirq, unsigned long *parent_hartid,
struct aplic_priv *priv)
{ {
struct of_phandle_args parent; struct of_phandle_args parent;
unsigned long hartid;
int rc; int rc;
/* if (!is_of_node(dev->fwnode)) {
* Currently, only OF fwnode is supported so extend this hartid = acpi_rintc_ext_parent_to_hartid(priv->acpi_aplic_id, index);
* function for ACPI support. if (hartid == INVALID_HARTID)
*/ return -ENODEV;
if (!is_of_node(dev->fwnode))
return -EINVAL; *parent_hartid = hartid;
*parent_hwirq = RV_IRQ_EXT;
return 0;
}
rc = of_irq_parse_one(to_of_node(dev->fwnode), index, &parent); rc = of_irq_parse_one(to_of_node(dev->fwnode), index, &parent);
if (rc) if (rc)
...@@ -237,7 +243,7 @@ int aplic_direct_setup(struct device *dev, void __iomem *regs) ...@@ -237,7 +243,7 @@ int aplic_direct_setup(struct device *dev, void __iomem *regs)
/* Setup per-CPU IDC and target CPU mask */ /* Setup per-CPU IDC and target CPU mask */
current_cpu = get_cpu(); current_cpu = get_cpu();
for (i = 0; i < priv->nr_idcs; i++) { for (i = 0; i < priv->nr_idcs; i++) {
rc = aplic_direct_parse_parent_hwirq(dev, i, &hwirq, &hartid); rc = aplic_direct_parse_parent_hwirq(dev, i, &hwirq, &hartid, priv);
if (rc) { if (rc) {
dev_warn(dev, "parent irq for IDC%d not found\n", i); dev_warn(dev, "parent irq for IDC%d not found\n", i);
continue; continue;
......
...@@ -4,8 +4,10 @@ ...@@ -4,8 +4,10 @@
* Copyright (C) 2022 Ventana Micro Systems Inc. * Copyright (C) 2022 Ventana Micro Systems Inc.
*/ */
#include <linux/acpi.h>
#include <linux/bitfield.h> #include <linux/bitfield.h>
#include <linux/irqchip/riscv-aplic.h> #include <linux/irqchip/riscv-aplic.h>
#include <linux/irqchip/riscv-imsic.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/of_irq.h> #include <linux/of_irq.h>
...@@ -125,39 +127,50 @@ static void aplic_init_hw_irqs(struct aplic_priv *priv) ...@@ -125,39 +127,50 @@ static void aplic_init_hw_irqs(struct aplic_priv *priv)
writel(0, priv->regs + APLIC_DOMAINCFG); writel(0, priv->regs + APLIC_DOMAINCFG);
} }
#ifdef CONFIG_ACPI
static const struct acpi_device_id aplic_acpi_match[] = {
{ "RSCV0002", 0 },
{}
};
MODULE_DEVICE_TABLE(acpi, aplic_acpi_match);
#endif
int aplic_setup_priv(struct aplic_priv *priv, struct device *dev, void __iomem *regs) int aplic_setup_priv(struct aplic_priv *priv, struct device *dev, void __iomem *regs)
{ {
struct device_node *np = to_of_node(dev->fwnode); struct device_node *np = to_of_node(dev->fwnode);
struct of_phandle_args parent; struct of_phandle_args parent;
int rc; int rc;
/*
* Currently, only OF fwnode is supported so extend this
* function for ACPI support.
*/
if (!np)
return -EINVAL;
/* Save device pointer and register base */ /* Save device pointer and register base */
priv->dev = dev; priv->dev = dev;
priv->regs = regs; priv->regs = regs;
/* Find out number of interrupt sources */ if (np) {
rc = of_property_read_u32(np, "riscv,num-sources", &priv->nr_irqs); /* Find out number of interrupt sources */
if (rc) { rc = of_property_read_u32(np, "riscv,num-sources", &priv->nr_irqs);
dev_err(dev, "failed to get number of interrupt sources\n"); if (rc) {
return rc; dev_err(dev, "failed to get number of interrupt sources\n");
} return rc;
}
/*
* Find out number of IDCs based on parent interrupts /*
* * Find out number of IDCs based on parent interrupts
* If "msi-parent" property is present then we ignore the *
* APLIC IDCs which forces the APLIC driver to use MSI mode. * If "msi-parent" property is present then we ignore the
*/ * APLIC IDCs which forces the APLIC driver to use MSI mode.
if (!of_property_present(np, "msi-parent")) { */
while (!of_irq_parse_one(np, priv->nr_idcs, &parent)) if (!of_property_present(np, "msi-parent")) {
priv->nr_idcs++; while (!of_irq_parse_one(np, priv->nr_idcs, &parent))
priv->nr_idcs++;
}
} else {
rc = riscv_acpi_get_gsi_info(dev->fwnode, &priv->gsi_base, &priv->acpi_aplic_id,
&priv->nr_irqs, &priv->nr_idcs);
if (rc) {
dev_err(dev, "failed to find GSI mapping\n");
return rc;
}
} }
/* Setup initial state APLIC interrupts */ /* Setup initial state APLIC interrupts */
...@@ -184,7 +197,11 @@ static int aplic_probe(struct platform_device *pdev) ...@@ -184,7 +197,11 @@ static int aplic_probe(struct platform_device *pdev)
* If msi-parent property is present then setup APLIC MSI * If msi-parent property is present then setup APLIC MSI
* mode otherwise setup APLIC direct mode. * mode otherwise setup APLIC direct mode.
*/ */
msi_mode = of_property_present(to_of_node(dev->fwnode), "msi-parent"); if (is_of_node(dev->fwnode))
msi_mode = of_property_present(to_of_node(dev->fwnode), "msi-parent");
else
msi_mode = imsic_acpi_get_fwnode(NULL) ? 1 : 0;
if (msi_mode) if (msi_mode)
rc = aplic_msi_setup(dev, regs); rc = aplic_msi_setup(dev, regs);
else else
...@@ -192,6 +209,11 @@ static int aplic_probe(struct platform_device *pdev) ...@@ -192,6 +209,11 @@ static int aplic_probe(struct platform_device *pdev)
if (rc) if (rc)
dev_err(dev, "failed to setup APLIC in %s mode\n", msi_mode ? "MSI" : "direct"); dev_err(dev, "failed to setup APLIC in %s mode\n", msi_mode ? "MSI" : "direct");
#ifdef CONFIG_ACPI
if (!acpi_disabled)
acpi_dev_clear_dependencies(ACPI_COMPANION(dev));
#endif
return rc; return rc;
} }
...@@ -204,6 +226,7 @@ static struct platform_driver aplic_driver = { ...@@ -204,6 +226,7 @@ static struct platform_driver aplic_driver = {
.driver = { .driver = {
.name = "riscv-aplic", .name = "riscv-aplic",
.of_match_table = aplic_match, .of_match_table = aplic_match,
.acpi_match_table = ACPI_PTR(aplic_acpi_match),
}, },
.probe = aplic_probe, .probe = aplic_probe,
}; };
......
...@@ -28,6 +28,7 @@ struct aplic_priv { ...@@ -28,6 +28,7 @@ struct aplic_priv {
u32 gsi_base; u32 gsi_base;
u32 nr_irqs; u32 nr_irqs;
u32 nr_idcs; u32 nr_idcs;
u32 acpi_aplic_id;
void __iomem *regs; void __iomem *regs;
struct aplic_msicfg msicfg; struct aplic_msicfg msicfg;
}; };
......
...@@ -175,6 +175,7 @@ static const struct msi_domain_template aplic_msi_template = { ...@@ -175,6 +175,7 @@ static const struct msi_domain_template aplic_msi_template = {
int aplic_msi_setup(struct device *dev, void __iomem *regs) int aplic_msi_setup(struct device *dev, void __iomem *regs)
{ {
const struct imsic_global_config *imsic_global; const struct imsic_global_config *imsic_global;
struct irq_domain *msi_domain;
struct aplic_priv *priv; struct aplic_priv *priv;
struct aplic_msicfg *mc; struct aplic_msicfg *mc;
phys_addr_t pa; phys_addr_t pa;
...@@ -257,8 +258,14 @@ int aplic_msi_setup(struct device *dev, void __iomem *regs) ...@@ -257,8 +258,14 @@ int aplic_msi_setup(struct device *dev, void __iomem *regs)
* IMSIC and the IMSIC MSI domains are created later through * IMSIC and the IMSIC MSI domains are created later through
* the platform driver probing so we set it explicitly here. * the platform driver probing so we set it explicitly here.
*/ */
if (is_of_node(dev->fwnode)) if (is_of_node(dev->fwnode)) {
of_msi_configure(dev, to_of_node(dev->fwnode)); of_msi_configure(dev, to_of_node(dev->fwnode));
} else {
msi_domain = irq_find_matching_fwnode(imsic_acpi_get_fwnode(dev),
DOMAIN_BUS_PLATFORM_MSI);
if (msi_domain)
dev_set_msi_domain(dev, msi_domain);
}
} }
if (!msi_create_device_irq_domain(dev, MSI_DEFAULT_DOMAIN, &aplic_msi_template, if (!msi_create_device_irq_domain(dev, MSI_DEFAULT_DOMAIN, &aplic_msi_template,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment