blob: b79b7c99c237c331a4ca7dbba5f738b9a4b88a61 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Aaron Durbin4d387042008-07-16 23:27:08 +02002
Hanjun Guo6ecfe602021-06-02 16:54:34 +08003#define pr_fmt(fmt) "ACPI: " fmt
4
Aaron Durbin4d387042008-07-16 23:27:08 +02005#include <linux/pci.h>
6#include <linux/acpi.h>
7#include <acpi/reboot.h>
Zhang Rui9a488882020-10-13 15:35:57 +08008#include <linux/delay.h>
Aaron Durbin4d387042008-07-16 23:27:08 +02009
Sinan Kaya86689772018-12-19 22:46:54 +000010#ifdef CONFIG_PCI
Sinan Kaya36ad7d22018-12-19 22:46:53 +000011static void acpi_pci_reboot(struct acpi_generic_address *rr, u8 reset_value)
12{
13 unsigned int devfn;
14 struct pci_bus *bus0;
15
16 /* The reset register can only live on bus 0. */
17 bus0 = pci_find_bus(0, 0);
18 if (!bus0)
19 return;
20 /* Form PCI device/function pair. */
21 devfn = PCI_DEVFN((rr->address >> 32) & 0xffff,
22 (rr->address >> 16) & 0xffff);
23 pr_debug("Resetting with ACPI PCI RESET_REG.\n");
24 /* Write the value that resets us. */
25 pci_bus_write_config_byte(bus0, devfn,
26 (rr->address & 0xffff), reset_value);
27}
Sinan Kaya86689772018-12-19 22:46:54 +000028#else
29static inline void acpi_pci_reboot(struct acpi_generic_address *rr,
30 u8 reset_value)
31{
32 pr_warn_once("PCI configuration space access is not supported\n");
33}
34#endif
Sinan Kaya36ad7d22018-12-19 22:46:53 +000035
Aaron Durbin4d387042008-07-16 23:27:08 +020036void acpi_reboot(void)
37{
38 struct acpi_generic_address *rr;
Laszlo Tothdd73e722018-04-10 19:10:38 +020039 u8 reset_value;
Aaron Durbin4d387042008-07-16 23:27:08 +020040
41 if (acpi_disabled)
42 return;
43
44 rr = &acpi_gbl_FADT.reset_register;
45
Matthew Garrett95cf3e12011-03-11 16:12:20 -050046 /* ACPI reset register was only introduced with v2 of the FADT */
47
48 if (acpi_gbl_FADT.header.revision < 2)
49 return;
50
Matthew Garrett6734fe52011-03-11 16:12:19 -050051 /* Is the reset register supported? The spec says we should be
52 * checking the bit width and bit offset, but Windows ignores
53 * these fields */
Linus Torvalds19244ad2012-04-20 11:19:35 -070054 if (!(acpi_gbl_FADT.flags & ACPI_FADT_RESET_REGISTER))
55 return;
Aaron Durbin4d387042008-07-16 23:27:08 +020056
57 reset_value = acpi_gbl_FADT.reset_value;
58
59 /* The reset register can only exist in I/O, Memory or PCI config space
60 * on a device on bus 0. */
61 switch (rr->space_id) {
62 case ACPI_ADR_SPACE_PCI_CONFIG:
Sinan Kaya36ad7d22018-12-19 22:46:53 +000063 acpi_pci_reboot(rr, reset_value);
Aaron Durbin4d387042008-07-16 23:27:08 +020064 break;
65
66 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
67 case ACPI_ADR_SPACE_SYSTEM_IO:
Hanjun Guo6ecfe602021-06-02 16:54:34 +080068 pr_debug("ACPI MEMORY or I/O RESET_REG.\n");
Lin Ming2ee62612008-12-16 16:40:31 +080069 acpi_reset();
Aaron Durbin4d387042008-07-16 23:27:08 +020070 break;
71 }
Zhang Rui9a488882020-10-13 15:35:57 +080072
73 /*
74 * Some platforms do not shut down immediately after writing to the
75 * ACPI reset register, and this results in racing with the
76 * subsequent reboot mechanism.
77 *
78 * The 15ms delay has been found to be long enough for the system
79 * to reboot on the affected platforms.
80 */
81 mdelay(15);
Aaron Durbin4d387042008-07-16 23:27:08 +020082}