You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
852 B
34 lines
852 B
/*
|
|
* Copyright (C) 2014 NXP Semiconductors, All Rights Reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* internal functions for TFA layer (not shared with SRV and HAL layer!)
|
|
*/
|
|
|
|
#ifndef __TFA_INTERNAL_H__
|
|
#define __TFA_INTERNAL_H__
|
|
|
|
#include "tfa_dsp_fw.h"
|
|
#include "tfa_ext.h"
|
|
|
|
#if __GNUC__ >= 4
|
|
#define TFA_INTERNAL __attribute__((visibility ("hidden")))
|
|
#else
|
|
#define TFA_INTERNAL
|
|
#endif
|
|
|
|
#define TFA98XX_GENERIC_SLAVE_ADDRESS 0x1C
|
|
|
|
TFA_INTERNAL enum Tfa98xx_Error tfa98xx_check_rpc_status(struct tfa_device *tfa,
|
|
int *pRpcStatus);
|
|
TFA_INTERNAL enum Tfa98xx_Error tfa98xx_wait_result(struct tfa_device *tfa,
|
|
int waitRetryCount);
|
|
|
|
#endif /* __TFA_INTERNAL_H__ */
|
|
|
|
|