commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
24 lines
417 B
C
24 lines
417 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#ifndef __FDT_RESET_THEAD_H__
|
|
#define __FDT_RESET_THEAD_H__
|
|
|
|
#define MAX_CUSTOM_CSR 32
|
|
|
|
#ifndef __ASSEMBLER__
|
|
struct custom_csr {
|
|
unsigned long index;
|
|
unsigned long value;
|
|
};
|
|
|
|
u64 __fdt_reset_thead_csrr(void);
|
|
|
|
extern struct custom_csr custom_csr[MAX_CUSTOM_CSR];
|
|
extern u32 __reset_thead_csr_stub[];
|
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#endif /* __FDT_RESET_THEAD_H__ */
|