diff mbox series

irqchip/riscv-intc: Fix no-SMP boot with ACPI

Message ID 20241014065739.656959-1-sunilvl@ventanamicro.com (mailing list archive)
State Handled Elsewhere, archived
Headers show
Series irqchip/riscv-intc: Fix no-SMP boot with ACPI | expand

Checks

Context Check Description
conchuod/vmtest-for-next-PR success PR summary
conchuod/patch-1-test-1 success .github/scripts/patches/tests/build_rv32_defconfig.sh took 139.70s
conchuod/patch-1-test-2 success .github/scripts/patches/tests/build_rv64_clang_allmodconfig.sh took 1278.03s
conchuod/patch-1-test-3 success .github/scripts/patches/tests/build_rv64_gcc_allmodconfig.sh took 1498.63s
conchuod/patch-1-test-4 success .github/scripts/patches/tests/build_rv64_nommu_k210_defconfig.sh took 20.77s
conchuod/patch-1-test-5 success .github/scripts/patches/tests/build_rv64_nommu_virt_defconfig.sh took 22.60s
conchuod/patch-1-test-6 success .github/scripts/patches/tests/checkpatch.sh took 0.49s
conchuod/patch-1-test-7 success .github/scripts/patches/tests/dtb_warn_rv64.sh took 43.31s
conchuod/patch-1-test-8 success .github/scripts/patches/tests/header_inline.sh took 0.00s
conchuod/patch-1-test-9 success .github/scripts/patches/tests/kdoc.sh took 0.54s
conchuod/patch-1-test-10 success .github/scripts/patches/tests/module_param.sh took 0.01s
conchuod/patch-1-test-11 success .github/scripts/patches/tests/verify_fixes.sh took 0.02s
conchuod/patch-1-test-12 success .github/scripts/patches/tests/verify_signedoff.sh took 0.03s

Commit Message

Sunil V L Oct. 14, 2024, 6:57 a.m. UTC
When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
NR_CPUS will not be sufficient to hold all RINTC structures passed from
the firmware. All RINTC structures are required to configure
IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
dynamic memory based on the number of RINTC structures in MADT to fix
this issue.

Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
Reported-by: Björn Töpel <bjorn@kernel.org>
Closes: https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
---
 drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

Comments

Björn Töpel Oct. 14, 2024, 3:14 p.m. UTC | #1
Thanks for fixing this, Sunil!

Sunil V L <sunilvl@ventanamicro.com> writes:

> When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
> NR_CPUS will not be sufficient to hold all RINTC structures passed from
> the firmware. All RINTC structures are required to configure
> IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
> dynamic memory based on the number of RINTC structures in MADT to fix
> this issue.

To clarify; QEMU is constructing an ACPI table for multiple harts
(multiple RINTC), but the kernel build is NO_SMP.

> Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
> Reported-by: Björn Töpel <bjorn@kernel.org>
> Closes: https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
> ---
>  drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
>  1 file changed, 18 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
> index 8c5411386220..f653c13de62b 100644
> --- a/drivers/irqchip/irq-riscv-intc.c
> +++ b/drivers/irqchip/irq-riscv-intc.c
> @@ -265,7 +265,7 @@ struct rintc_data {
>  };
>  
>  static u32 nr_rintc;
> -static struct rintc_data *rintc_acpi_data[NR_CPUS];
> +static struct rintc_data **rintc_acpi_data;
>  
>  #define for_each_matching_plic(_plic_id)				\
>  	unsigned int _plic;						\
> @@ -329,13 +329,30 @@ int acpi_rintc_get_imsic_mmio_info(u32 index, struct resource *res)
>  	return 0;
>  }
>  
> +static int __init riscv_intc_acpi_match(union acpi_subtable_headers *header,
> +					const unsigned long end)
> +{
> +	return 0;
> +}
> +
>  static int __init riscv_intc_acpi_init(union acpi_subtable_headers *header,
>  				       const unsigned long end)
>  {
>  	struct acpi_madt_rintc *rintc;
>  	struct fwnode_handle *fn;
> +	int count;
>  	int rc;
>  
> +	if (!rintc_acpi_data) {
> +		count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, riscv_intc_acpi_match, 0);
> +		if (count <= 0)
> +			return -EINVAL;
> +
> +		rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), GFP_KERNEL);
> +		if (!rintc_acpi_data)
> +			return -ENOMEM;
> +	}
> +
>  	rintc = (struct acpi_madt_rintc *)header;
>  	rintc_acpi_data[nr_rintc] = kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
>  	if (!rintc_acpi_data[nr_rintc])
> -- 
> 2.43.0

For context, this is the splat:

  | Unable to handle kernel paging request at virtual address ff6000000000000c
  | Oops [#1]
  | Modules linked in:
  | CPU: 0 UID: 0 PID: 0 Comm: swapper Not tainted 6.12.0-rc2-g2255fe696ded #1
  | epc : acpi_rintc_index_to_hartid+0x2c/0x3c
  |  ra : imsic_get_parent_hartid+0x54/0xb6
  | epc : ffffffff8046b788 ra : ffffffff80a1fe74 sp : ffffffff81403af0
  |  gp : ffffffff815181b8 tp : ffffffff8140c780 t0 : ffffffff81403b58
  |  t1 : 00000000000003ff t2 : 0000000000000004 s0 : ffffffff81403b90
  |  s1 : ff60000080057060 a0 : 0000000000000008 a1 : 0000000000000000
  |  a2 : 0000000000000000 a3 : ffffffff81403b58 a4 : ffffffff80e0dd80
  |  a5 : ff60000000000004 a6 : 0000000000000001 a7 : 0000000000000400
  |  s2 : ffffffff81403bb0 s3 : 0000000000000001 s4 : ff1bfffffea790e8
  |  s5 : ffffffff81403da0 s6 : 0000000000000000 s7 : ffffffff8151c9e8
  |  s8 : 0000000000000001 s9 : 0000000000000003 s10: 0000000000000000
  |  s11: ffffffff81403da0 t3 : 0000000000000400 t4 : 0000000000000401
  |  t5 : 0000000000000001 t6 : 0000000000000400
  | status: 0000000200000100 badaddr: ff6000000000000c cause: 000000000000000d
  | [<ffffffff8046b788>] acpi_rintc_index_to_hartid+0x2c/0x3c
  | [<ffffffff80a20008>] imsic_setup_state+0xe8/0x83a
  | [<ffffffff80a208f8>] imsic_early_acpi_init+0x50/0xd2
  | [<ffffffff80a23536>] acpi_match_madt+0x2e/0x5a
  | [<ffffffff80a1f5f4>] acpi_parse_entries_array+0x164/0x230
  | [<ffffffff80a222ba>] acpi_table_parse_entries_array+0x86/0xc2
  | [<ffffffff80a2234a>] acpi_table_parse_entries+0x54/0x7c
  | [<ffffffff80a22410>] acpi_table_parse_madt+0x22/0x2a
  | [<ffffffff80a2389c>] __acpi_probe_device_table+0x78/0xc8
  | [<ffffffff80a1f98a>] irqchip_init+0x36/0x3e
  | [<ffffffff80a03d2e>] init_IRQ+0x30/0x52
  | [<ffffffff80a00c08>] start_kernel+0x4b4/0x800
  | Code: d513 01d7 1797 010b 8793 2507 97aa 639c 60a2 6402 (6788) 0141 
  | ---[ end trace 0000000000000000 ]---

(Alex just kicked a build w/ this patch)


Björn
Anup Patel Oct. 14, 2024, 4:24 p.m. UTC | #2
On Mon, Oct 14, 2024 at 12:27 PM Sunil V L <sunilvl@ventanamicro.com> wrote:
>
> When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
> NR_CPUS will not be sufficient to hold all RINTC structures passed from
> the firmware. All RINTC structures are required to configure
> IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
> dynamic memory based on the number of RINTC structures in MADT to fix
> this issue.
>
> Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
> Reported-by: Björn Töpel <bjorn@kernel.org>
> Closes: https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>

LGTM.

Reviewed-by: Anup Patel <anup@brainfault.org>

Regards,
Anup

> ---
>  drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
>  1 file changed, 18 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
> index 8c5411386220..f653c13de62b 100644
> --- a/drivers/irqchip/irq-riscv-intc.c
> +++ b/drivers/irqchip/irq-riscv-intc.c
> @@ -265,7 +265,7 @@ struct rintc_data {
>  };
>
>  static u32 nr_rintc;
> -static struct rintc_data *rintc_acpi_data[NR_CPUS];
> +static struct rintc_data **rintc_acpi_data;
>
>  #define for_each_matching_plic(_plic_id)                               \
>         unsigned int _plic;                                             \
> @@ -329,13 +329,30 @@ int acpi_rintc_get_imsic_mmio_info(u32 index, struct resource *res)
>         return 0;
>  }
>
> +static int __init riscv_intc_acpi_match(union acpi_subtable_headers *header,
> +                                       const unsigned long end)
> +{
> +       return 0;
> +}
> +
>  static int __init riscv_intc_acpi_init(union acpi_subtable_headers *header,
>                                        const unsigned long end)
>  {
>         struct acpi_madt_rintc *rintc;
>         struct fwnode_handle *fn;
> +       int count;
>         int rc;
>
> +       if (!rintc_acpi_data) {
> +               count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, riscv_intc_acpi_match, 0);
> +               if (count <= 0)
> +                       return -EINVAL;
> +
> +               rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), GFP_KERNEL);
> +               if (!rintc_acpi_data)
> +                       return -ENOMEM;
> +       }
> +
>         rintc = (struct acpi_madt_rintc *)header;
>         rintc_acpi_data[nr_rintc] = kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
>         if (!rintc_acpi_data[nr_rintc])
> --
> 2.43.0
>
Alexandre Ghiti Oct. 15, 2024, 5:34 a.m. UTC | #3
Hi Sunil,

On 14/10/2024 17:14, Björn Töpel wrote:
> Thanks for fixing this, Sunil!
>
> Sunil V L <sunilvl@ventanamicro.com> writes:
>
>> When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
>> NR_CPUS will not be sufficient to hold all RINTC structures passed from
>> the firmware. All RINTC structures are required to configure
>> IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
>> dynamic memory based on the number of RINTC structures in MADT to fix
>> this issue.
> To clarify; QEMU is constructing an ACPI table for multiple harts
> (multiple RINTC), but the kernel build is NO_SMP.
>
>> Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
>> Reported-by: Björn Töpel <bjorn@kernel.org>
>> Closes: https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
>> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
>> ---
>>   drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
>>   1 file changed, 18 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
>> index 8c5411386220..f653c13de62b 100644
>> --- a/drivers/irqchip/irq-riscv-intc.c
>> +++ b/drivers/irqchip/irq-riscv-intc.c
>> @@ -265,7 +265,7 @@ struct rintc_data {
>>   };
>>   
>>   static u32 nr_rintc;
>> -static struct rintc_data *rintc_acpi_data[NR_CPUS];
>> +static struct rintc_data **rintc_acpi_data;
>>   
>>   #define for_each_matching_plic(_plic_id)				\
>>   	unsigned int _plic;						\
>> @@ -329,13 +329,30 @@ int acpi_rintc_get_imsic_mmio_info(u32 index, struct resource *res)
>>   	return 0;
>>   }
>>   
>> +static int __init riscv_intc_acpi_match(union acpi_subtable_headers *header,
>> +					const unsigned long end)
>> +{
>> +	return 0;
>> +}
>> +
>>   static int __init riscv_intc_acpi_init(union acpi_subtable_headers *header,
>>   				       const unsigned long end)
>>   {
>>   	struct acpi_madt_rintc *rintc;
>>   	struct fwnode_handle *fn;
>> +	int count;
>>   	int rc;
>>   
>> +	if (!rintc_acpi_data) {
>> +		count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, riscv_intc_acpi_match, 0);
>> +		if (count <= 0)
>> +			return -EINVAL;
>> +
>> +		rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), GFP_KERNEL);
>> +		if (!rintc_acpi_data)
>> +			return -ENOMEM;
>> +	}
>> +
>>   	rintc = (struct acpi_madt_rintc *)header;
>>   	rintc_acpi_data[nr_rintc] = kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
>>   	if (!rintc_acpi_data[nr_rintc])
>> -- 
>> 2.43.0
> For context, this is the splat:
>
>    | Unable to handle kernel paging request at virtual address ff6000000000000c
>    | Oops [#1]
>    | Modules linked in:
>    | CPU: 0 UID: 0 PID: 0 Comm: swapper Not tainted 6.12.0-rc2-g2255fe696ded #1
>    | epc : acpi_rintc_index_to_hartid+0x2c/0x3c
>    |  ra : imsic_get_parent_hartid+0x54/0xb6
>    | epc : ffffffff8046b788 ra : ffffffff80a1fe74 sp : ffffffff81403af0
>    |  gp : ffffffff815181b8 tp : ffffffff8140c780 t0 : ffffffff81403b58
>    |  t1 : 00000000000003ff t2 : 0000000000000004 s0 : ffffffff81403b90
>    |  s1 : ff60000080057060 a0 : 0000000000000008 a1 : 0000000000000000
>    |  a2 : 0000000000000000 a3 : ffffffff81403b58 a4 : ffffffff80e0dd80
>    |  a5 : ff60000000000004 a6 : 0000000000000001 a7 : 0000000000000400
>    |  s2 : ffffffff81403bb0 s3 : 0000000000000001 s4 : ff1bfffffea790e8
>    |  s5 : ffffffff81403da0 s6 : 0000000000000000 s7 : ffffffff8151c9e8
>    |  s8 : 0000000000000001 s9 : 0000000000000003 s10: 0000000000000000
>    |  s11: ffffffff81403da0 t3 : 0000000000000400 t4 : 0000000000000401
>    |  t5 : 0000000000000001 t6 : 0000000000000400
>    | status: 0000000200000100 badaddr: ff6000000000000c cause: 000000000000000d
>    | [<ffffffff8046b788>] acpi_rintc_index_to_hartid+0x2c/0x3c
>    | [<ffffffff80a20008>] imsic_setup_state+0xe8/0x83a
>    | [<ffffffff80a208f8>] imsic_early_acpi_init+0x50/0xd2
>    | [<ffffffff80a23536>] acpi_match_madt+0x2e/0x5a
>    | [<ffffffff80a1f5f4>] acpi_parse_entries_array+0x164/0x230
>    | [<ffffffff80a222ba>] acpi_table_parse_entries_array+0x86/0xc2
>    | [<ffffffff80a2234a>] acpi_table_parse_entries+0x54/0x7c
>    | [<ffffffff80a22410>] acpi_table_parse_madt+0x22/0x2a
>    | [<ffffffff80a2389c>] __acpi_probe_device_table+0x78/0xc8
>    | [<ffffffff80a1f98a>] irqchip_init+0x36/0x3e
>    | [<ffffffff80a03d2e>] init_IRQ+0x30/0x52
>    | [<ffffffff80a00c08>] start_kernel+0x4b4/0x800
>    | Code: d513 01d7 1797 010b 8793 2507 97aa 639c 60a2 6402 (6788) 0141
>    | ---[ end trace 0000000000000000 ]---
>
> (Alex just kicked a build w/ this patch)


The tests ran here 
https://github.com/linux-riscv/linux-riscv/actions/runs/11330279867/job/31507748208?pr=1587 
and there were no "nosmp" failures compared to without this patch, so 
you can add:

Tested-by: Alexandre Ghiti <alexghiti@rivosinc.com>

Thanks,

Alex


>
>
> Björn
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
Alexandre Ghiti Oct. 29, 2024, 7:46 a.m. UTC | #4
Hi Thomas,

On 14/10/2024 08:57, Sunil V L wrote:
> When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
> NR_CPUS will not be sufficient to hold all RINTC structures passed from
> the firmware. All RINTC structures are required to configure
> IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
> dynamic memory based on the number of RINTC structures in MADT to fix
> this issue.
>
> Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
> Reported-by: Björn Töpel <bjorn@kernel.org>
> Closes: https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
> ---
>   drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
>   1 file changed, 18 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
> index 8c5411386220..f653c13de62b 100644
> --- a/drivers/irqchip/irq-riscv-intc.c
> +++ b/drivers/irqchip/irq-riscv-intc.c
> @@ -265,7 +265,7 @@ struct rintc_data {
>   };
>   
>   static u32 nr_rintc;
> -static struct rintc_data *rintc_acpi_data[NR_CPUS];
> +static struct rintc_data **rintc_acpi_data;
>   
>   #define for_each_matching_plic(_plic_id)				\
>   	unsigned int _plic;						\
> @@ -329,13 +329,30 @@ int acpi_rintc_get_imsic_mmio_info(u32 index, struct resource *res)
>   	return 0;
>   }
>   
> +static int __init riscv_intc_acpi_match(union acpi_subtable_headers *header,
> +					const unsigned long end)
> +{
> +	return 0;
> +}
> +
>   static int __init riscv_intc_acpi_init(union acpi_subtable_headers *header,
>   				       const unsigned long end)
>   {
>   	struct acpi_madt_rintc *rintc;
>   	struct fwnode_handle *fn;
> +	int count;
>   	int rc;
>   
> +	if (!rintc_acpi_data) {
> +		count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, riscv_intc_acpi_match, 0);
> +		if (count <= 0)
> +			return -EINVAL;
> +
> +		rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), GFP_KERNEL);
> +		if (!rintc_acpi_data)
> +			return -ENOMEM;
> +	}
> +
>   	rintc = (struct acpi_madt_rintc *)header;
>   	rintc_acpi_data[nr_rintc] = kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
>   	if (!rintc_acpi_data[nr_rintc])


Do you think you can merge this patch for rc6? We still need it to fix 
our nosmp builds.

Thanks,

Alex
Alexandre Ghiti Oct. 29, 2024, 7:52 a.m. UTC | #5
On 29/10/2024 08:46, Alexandre Ghiti wrote:
> Hi Thomas,
>
> On 14/10/2024 08:57, Sunil V L wrote:
>> When CONFIG_SMP is disabled, the static array rintc_acpi_data with size
>> NR_CPUS will not be sufficient to hold all RINTC structures passed from
>> the firmware. All RINTC structures are required to configure
>> IMSIC/APLIC/PLIC properly irrespective of SMP in the OS. So, allocate
>> dynamic memory based on the number of RINTC structures in MADT to fix
>> this issue.
>>
>> Fixes: f8619b66bdb1 ("irqchip/riscv-intc: Add ACPI support for AIA")
>> Reported-by: Björn Töpel <bjorn@kernel.org>
>> Closes: 
>> https://github.com/linux-riscv/linux-riscv/actions/runs/11280997511/job/31375229012
>> Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
>> ---
>>   drivers/irqchip/irq-riscv-intc.c | 19 ++++++++++++++++++-
>>   1 file changed, 18 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/irqchip/irq-riscv-intc.c 
>> b/drivers/irqchip/irq-riscv-intc.c
>> index 8c5411386220..f653c13de62b 100644
>> --- a/drivers/irqchip/irq-riscv-intc.c
>> +++ b/drivers/irqchip/irq-riscv-intc.c
>> @@ -265,7 +265,7 @@ struct rintc_data {
>>   };
>>     static u32 nr_rintc;
>> -static struct rintc_data *rintc_acpi_data[NR_CPUS];
>> +static struct rintc_data **rintc_acpi_data;
>>     #define for_each_matching_plic(_plic_id)                \
>>       unsigned int _plic;                        \
>> @@ -329,13 +329,30 @@ int acpi_rintc_get_imsic_mmio_info(u32 index, 
>> struct resource *res)
>>       return 0;
>>   }
>>   +static int __init riscv_intc_acpi_match(union 
>> acpi_subtable_headers *header,
>> +                    const unsigned long end)
>> +{
>> +    return 0;
>> +}
>> +
>>   static int __init riscv_intc_acpi_init(union acpi_subtable_headers 
>> *header,
>>                          const unsigned long end)
>>   {
>>       struct acpi_madt_rintc *rintc;
>>       struct fwnode_handle *fn;
>> +    int count;
>>       int rc;
>>   +    if (!rintc_acpi_data) {
>> +        count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, 
>> riscv_intc_acpi_match, 0);
>> +        if (count <= 0)
>> +            return -EINVAL;
>> +
>> +        rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), 
>> GFP_KERNEL);
>> +        if (!rintc_acpi_data)
>> +            return -ENOMEM;
>> +    }
>> +
>>       rintc = (struct acpi_madt_rintc *)header;
>>       rintc_acpi_data[nr_rintc] = 
>> kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
>>       if (!rintc_acpi_data[nr_rintc])
>
>
> Do you think you can merge this patch for rc6? We still need it to fix 
> our nosmp builds.


Please ignore this message, I found it with a different title.

Thanks,

Alex


>
> Thanks,
>
> Alex
>
>
> _______________________________________________
> linux-riscv mailing list
> linux-riscv@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-riscv
diff mbox series

Patch

diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
index 8c5411386220..f653c13de62b 100644
--- a/drivers/irqchip/irq-riscv-intc.c
+++ b/drivers/irqchip/irq-riscv-intc.c
@@ -265,7 +265,7 @@  struct rintc_data {
 };
 
 static u32 nr_rintc;
-static struct rintc_data *rintc_acpi_data[NR_CPUS];
+static struct rintc_data **rintc_acpi_data;
 
 #define for_each_matching_plic(_plic_id)				\
 	unsigned int _plic;						\
@@ -329,13 +329,30 @@  int acpi_rintc_get_imsic_mmio_info(u32 index, struct resource *res)
 	return 0;
 }
 
+static int __init riscv_intc_acpi_match(union acpi_subtable_headers *header,
+					const unsigned long end)
+{
+	return 0;
+}
+
 static int __init riscv_intc_acpi_init(union acpi_subtable_headers *header,
 				       const unsigned long end)
 {
 	struct acpi_madt_rintc *rintc;
 	struct fwnode_handle *fn;
+	int count;
 	int rc;
 
+	if (!rintc_acpi_data) {
+		count = acpi_table_parse_madt(ACPI_MADT_TYPE_RINTC, riscv_intc_acpi_match, 0);
+		if (count <= 0)
+			return -EINVAL;
+
+		rintc_acpi_data = kcalloc(count, sizeof(*rintc_acpi_data), GFP_KERNEL);
+		if (!rintc_acpi_data)
+			return -ENOMEM;
+	}
+
 	rintc = (struct acpi_madt_rintc *)header;
 	rintc_acpi_data[nr_rintc] = kzalloc(sizeof(*rintc_acpi_data[0]), GFP_KERNEL);
 	if (!rintc_acpi_data[nr_rintc])