soc/intel/common: Add prototype for global_reset() reset

Add prototype for global_reset() that some SoCs need to provide.

BUG=chrome-os-partner:54149
BRANCH=none
TEST=none

Change-Id: I8afe076b6f4f675b3c6a3ec0e4dd69f950baa4ef
Signed-off-by: Andrey Petrov <andrey.petrov@intel.com>
Reviewed-on: https://review.coreboot.org/15333
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Andrey Petrov 2016-06-22 23:39:08 -07:00 committed by Martin Roth
parent 9c0e180655
commit 43e1bfd13c
1 changed files with 2 additions and 0 deletions

View File

@ -8,5 +8,7 @@ void hard_reset(void);
#endif
void soft_reset(void);
void cpu_reset(void);
/* Some Intel SoCs use a special reset that is specific to SoC */
void global_reset(void);
#endif