1 /* SPDX-License-Identifier: BSD-3-Clause 2 * 3 * Copyright(c) 2019 Intel Corporation. All rights reserved. 4 * 5 * Author: Marcin Maka <marcin.maka@linux.intel.com> 6 */ 7 8 #ifndef __CAVS_LPS_WAIT_H__ 9 #define __CAVS_LPS_WAIT_H__ 10 11 extern void *lps_pic_restore_vector; 12 extern void *lps_pic_restore_vector_end; 13 extern void *lps_pic_restore_vector_literals; 14 15 void lps_wait_for_interrupt(int level); 16 17 #endif /*__CAVS_LPS_WAIT_H__ */ 18