/* SPDX-License-Identifier: BSD-3-Clause * * Copyright(c) 2018 Intel Corporation. All rights reserved. * * Author: Marcin Maka */ /** * \file include/sof/platform.h * \brief Platform API definition * \author Marcin Maka */ #ifndef __SOF_PLATFORM_H__ #define __SOF_PLATFORM_H__ #include #if !defined(__ASSEMBLER__) && !defined(LINKER) #include struct sof; /** \addtogroup platform_api Platform API * Platform API specification. * @{ */ /* * APIs declared here are defined for every platform. */ /** * \brief Platform specific implementation of the On Boot Complete handler. * \param[in] boot_message Boot status code. * \return 0 if successful, error code otherwise. */ int platform_boot_complete(uint32_t boot_message); /** * \brief Platform initialization entry, called during FW initialization. * \param[in] sof Context. * \return 0 if successful, error code otherwise. */ int platform_init(struct sof *sof); /** * \brief Platform specific context saving routine, called during DSP suspending. * \param[in] sof Context. * \return 0 if successful, error code otherwise. */ int platform_context_save(struct sof *sof); /** @}*/ #endif #endif /* __SOF_PLATFORM_H__ */