Files
luban-lite/bsp/artinchip/include/drv/drv_efuse.h

33 lines
718 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
2025-03-14 16:31:58 +08:00
* Copyright (c) 2022-2025, ArtInChip Technology Co., Ltd
2023-08-30 16:21:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Authors: Xiong Hao <hao.xiong@artinchip.com>
*/
#ifndef _ARTINCHIP_DRV_EFUSE_H__
#define _ARTINCHIP_DRV_EFUSE_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <aic_core.h>
2025-03-14 16:31:58 +08:00
void drv_efuse_write_enable(void);
void drv_efuse_write_disable(void);
2023-08-30 16:21:18 +08:00
int drv_efuse_read(u32 addr, void *data, u32 size);
2024-06-04 19:00:30 +08:00
int drv_efuse_read_chip_id(void *data);
2025-01-08 19:12:06 +08:00
int drv_efuse_read_reserved_1(void *data);
int drv_efuse_read_reserved_2(void *data);
2023-08-30 16:21:18 +08:00
int drv_efuse_program(u32 addr, const void *data, u32 size);
2025-01-08 19:12:06 +08:00
int drv_sjtag_auth(u32 *key, u32 kwlen);
int drv_szone_auth(u32 *key, u32 kwlen);
2023-08-30 16:21:18 +08:00
#ifdef __cplusplus
}
#endif
#endif