blob: 12c9c5ce759b4bd94a2d5ea51c7b517341727efa [file] [log] [blame]
/*
* include/boot.h
*
* Copyright (C) 2015 ARM Limited. All rights reserved.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE.txt file.
*/
#ifndef __BOOT_H
#define __BOOT_H
#include <compiler.h>
#include <stdbool.h>
void __noreturn spin(unsigned long *mbox, unsigned long invalid);
void __noreturn first_spin(unsigned int cpu, unsigned long *mbox,
unsigned long invalid_addr);
void cpu_init_arch(unsigned int cpu);
#endif