[linux] Upgrade the MMF SDK from V4.0.0 to V4.1.0

1. 181x support secureboot
	2. add .gitignore

Change-Id: I34cd45663d92eeb8e3b5ddfbf1a876111ce46bd1
This commit is contained in:
wangliang.wang
2023-03-10 00:26:01 +08:00
committed by sam.xiang
parent 221f3d937b
commit 95dcbe5649
19 changed files with 992 additions and 131 deletions

View File

@ -0,0 +1,11 @@
#ifndef __CVI_EFUSE_H__
#define __CVI_EFUSE_H__
#include <linux/types.h>
int64_t cvi_efuse_read_from_shadow(uint32_t addr);
int cvi_efuse_write(uint32_t addr, uint32_t value);
int cvi_efuse_read_buf(u32 addr, void *buf, size_t buf_size);
#endif /* __CVI_EFUSE_H__ */