This is a note to let you know that I've just added the patch titled ACPI: bus: Move acpi_arm_init() to the place of after acpi_ghes_init() to the 6.5-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: acpi-bus-move-acpi_arm_init-to-the-place-of-after-acpi_ghes_init.patch and it can be found in the queue-6.5 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From d5921c460e543228d100daf67dac7a03dfaaa40a Mon Sep 17 00:00:00 2001 From: Hanjun Guo <guohanjun@xxxxxxxxxx> Date: Tue, 10 Oct 2023 16:21:23 +0800 Subject: ACPI: bus: Move acpi_arm_init() to the place of after acpi_ghes_init() From: Hanjun Guo <guohanjun@xxxxxxxxxx> commit d5921c460e543228d100daf67dac7a03dfaaa40a upstream. acpi_agdi_init() in acpi_arm_init() will register a SDEI event, so it needs the SDEI subsystem to be initialized (which is done in acpi_ghes_init()) before the AGDI driver probing. In commit fcea0ccf4fd7 ("ACPI: bus: Consolidate all arm specific initialisation into acpi_arm_init()"), the acpi_agdi_init() was called before acpi_ghes_init() and it causes following failure: | [ 0.515864] sdei: Failed to create event 1073741825: -5 | [ 0.515866] agdi agdi.0: Failed to register for SDEI event 1073741825 | [ 0.515867] agdi: probe of agdi.0 failed with error -5 | ... | [ 0.516022] sdei: SDEIv1.0 (0x0) detected in firmware. Fix it by moving acpi_arm_init() to the place of after acpi_ghes_init(). Fixes: fcea0ccf4fd7 ("ACPI: bus: Consolidate all arm specific initialisation into acpi_arm_init()") Reported-by: D Scott Phillips <scott@xxxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Hanjun Guo <guohanjun@xxxxxxxxxx> Reviewed-by: Sudeep Holla <sudeep.holla@xxxxxxx> Tested-by: D Scott Phillips <scott@xxxxxxxxxxxxxxxxxxxxxx> Cc: 6.5+ <stable@xxxxxxxxxxxxxxx> # 6.5+ Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/acpi/bus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -1387,10 +1387,10 @@ static int __init acpi_init(void) acpi_init_ffh(); pci_mmcfg_late_init(); - acpi_arm_init(); acpi_viot_early_init(); acpi_hest_init(); acpi_ghes_init(); + acpi_arm_init(); acpi_scan_init(); acpi_ec_init(); acpi_debugfs_init(); Patches currently in stable-queue which might be from guohanjun@xxxxxxxxxx are queue-6.5/acpi-bus-move-acpi_arm_init-to-the-place-of-after-acpi_ghes_init.patch