summaryrefslogtreecommitdiff
path: root/sys/dev/psci/psci.c
AgeCommit message (Expand)Author
2025-10-27kexec: Introduce basic arm64 supportJustin Hibbits
2024-12-06Replace calls to bus_generic_attach with bus_attach_childrenJohn Baldwin
2024-10-15dev/psci: Make SMCCC into a real driverAndrew Turner
2024-05-10dev/psci: Check all compat stringsAndrew Turner
2024-02-18psci: split off psci_reboot from psci_shutdownAndriy Gapon
2024-02-15psci: Add FDT node status checkStephen J. Kiernan
2023-08-16sys: Remove $FreeBSD$: one-line .c patternWarner Losh
2023-01-29Only call SMCCC init on arm64Andrew Turner
2023-01-29Make SMCCC usable by device driversAndrew Turner
2022-10-26psci: set psci_present as early as possibleKyle Evans
2022-05-09psci: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin
2022-03-18psci: finish psci_present implementationKyle Evans
2020-09-01psci: clean up empty lines in .c and .h filesMateusz Guzik
2019-09-13Add generic arm/arm64 secure-monitor SMCCC interface and switchRuslan Bukin
2019-03-19PSCI: Don't take missing implementation of psci get_version() as fatal.Michal Meloun
2018-07-06psci: Add \n at the end of printfEmmanuel Vadot
2018-06-13Move psci_call to a header file so we can use it in other files toAndrew Turner
2018-06-13Add a handler for the PSCI_FEATURES function. This needs PSCI 1.0, soAndrew Turner
2018-06-13Find and cache the PSCI version on driver attach.Andrew Turner
2018-06-12Rework PSCI so it only searches for the call function once.Andrew Turner
2018-01-09Add a function to find the PSCI version the firmware implements fromAndrew Turner
2017-10-19psci: change bootverbose string to 'PSCI 0.2 compatible'Ed Maste
2017-10-19Allow later PSCI revisions to also work. The latest ARM Trusted FirmwareAndrew Turner
2017-10-06Also handle psci 1.0. This can be seen as a bug fix update for the 0.2Andrew Turner
2017-04-24Call the PSCI reset from cpu_reset on arm64. When rebooting from DDB theAndrew Turner
2016-12-07Add ACPI support to the PSCI driver. This checks the Fixed ACPI DescriptionAndrew Turner
2016-10-25Create a new PSCI error code and use it to signal that starting the CPU isAndrew Turner
2015-08-11Start to support PSCI 1.0. For all the functions we currently support thisAndrew Turner
2015-05-24Rework the PSCI cpu on code to allow it to work before device drivers haveAndrew Turner
2015-04-12Add a driver for the ARM Power State Coordination Interface (PSCI). ThisAndrew Turner