summaryrefslogtreecommitdiff
path: root/arch/arm/mach-socfpga/include/mach/fpga_manager.h
blob: b046c2c437bd5fcf37ec5aa2d1cc4a6fb790e565 (plain)
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
/*
 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
 * All rights reserved.
 *
 * SPDX-License-Identifier:    BSD-3-Clause
 */

#ifndef	_FPGA_MANAGER_H_
#define	_FPGA_MANAGER_H_

#include <altera.h>

#if defined(CONFIG_TARGET_SOCFPGA_GEN5)
#include <asm/arch/fpga_manager_gen5.h>
#endif

/* FPGA CD Ratio Value */
#define CDRATIO_x1				0x0
#define CDRATIO_x2				0x1
#define CDRATIO_x4				0x2
#define CDRATIO_x8				0x3

#ifndef __ASSEMBLY__

/* Common prototypes */
int fpgamgr_get_mode(void);
int fpgamgr_poll_fpga_ready(void);
void fpgamgr_program_write(const void *rbf_data, size_t rbf_size);
int fpgamgr_test_fpga_ready(void);
int fpgamgr_dclkcnt_set(unsigned long cnt);

#endif /* __ASSEMBLY__ */
#endif /* _FPGA_MANAGER_H_ */