PSCI: Create new directory to implement new frameworks
authorSoby Mathew <soby.mathew@arm.com>
Mon, 29 Jun 2015 15:30:12 +0000 (16:30 +0100)
committerSoby Mathew <soby.mathew@arm.com>
Wed, 5 Aug 2015 13:12:26 +0000 (14:12 +0100)
commitb48349eb07103e23cea3d890dd01d52c74667514
treedfa2bea0e8a0d606cbd766cc6f56bd3a9f07f2a4
parent53d069c28c2738c3a4f59211fbc61323ec28208c
PSCI: Create new directory to implement new frameworks

This patch creates a copy of the existing PSCI files and related psci.h and
platform.h header files in a new `PSCI1.0` directory. The changes for the
new PSCI power domain topology and extended state-ID frameworks will be
added incrementally to these files. This incremental approach will
aid in review and in understanding the changes better. Once all the
changes have been introduced, these files will replace the existing PSCI
files.

Change-Id: Ibb8a52e265daa4204e34829ed050bddd7e3316ff
12 files changed:
include/bl31/services/psci1.0/psci.h [new file with mode: 0644]
include/plat/common/psci1.0/platform.h [new file with mode: 0644]
services/std_svc/psci1.0/psci_afflvl_off.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_afflvl_on.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_afflvl_suspend.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_common.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_entry.S [new file with mode: 0644]
services/std_svc/psci1.0/psci_helpers.S [new file with mode: 0644]
services/std_svc/psci1.0/psci_main.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_private.h [new file with mode: 0644]
services/std_svc/psci1.0/psci_setup.c [new file with mode: 0644]
services/std_svc/psci1.0/psci_system_off.c [new file with mode: 0644]