~ruther/vhdl-spi-2

vhdl-spi-2/vitis/spi_peripheral/zynq_fsbl/fsbl_hooks.h -rw-r--r-- 1.5 KiB
330f5837 — Rutherther docs: add readme 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/******************************************************************************
* Copyright (c) 2012 - 2020 Xilinx, Inc.  All rights reserved.
* SPDX-License-Identifier: MIT
******************************************************************************/

/*****************************************************************************/
/**
*
* @file fsbl_hooks.h
*
* Contains the function prototypes, defines and macros required by fsbl_hooks.c
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver	Who	Date		Changes
* ----- ---- -------- -------------------------------------------------------
* 3.00a	np/mb	10/08/12	Initial release
*				Corrected the prototype
*
* </pre>
*
* @note
*
******************************************************************************/
#ifndef FSBL_HOOKS_H_
#define FSBL_HOOKS_H_

#ifdef __cplusplus
extern "C" {
#endif

/***************************** Include Files *********************************/
#include "fsbl.h"


/************************** Function Prototypes ******************************/

/* FSBL hook function which is called before bitstream download */
u32 FsblHookBeforeBitstreamDload(void);

/* FSBL hook function which is called after bitstream download */
u32 FsblHookAfterBitstreamDload(void);

/* FSBL hook function which is called before handoff to the application */
u32 FsblHookBeforeHandoff(void);

/* FSBL hook function which is called in FSBL fallback */
void FsblHookFallback(void);

#ifdef __cplusplus
}
#endif

#endif	/* end of protection macro */
Do not follow this link