mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
26 lines
440 B
C
26 lines
440 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, Artinchip Technology Co., Ltd
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __AIC_HAL_RESET_H__
|
||
|
|
#define __AIC_HAL_RESET_H__
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "aic_hal_reset_cmu.h"
|
||
|
|
#include "aic_reset_id.h"
|
||
|
|
|
||
|
|
int hal_reset_assert(uint32_t rst_id);
|
||
|
|
int hal_reset_deassert(uint32_t rst_id);
|
||
|
|
int hal_reset_status(uint32_t rst_id);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* __AIC_HAL_RESET_H__ */
|