xref: /linux/include/linux/fpga/adi-axi-common.h (revision 71e2f4dd5a65bd8dbca0b77661e75eea471168f8)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Analog Devices AXI common registers & definitions
4  *
5  * Copyright 2019 Analog Devices Inc.
6  *
7  * https://wiki.analog.com/resources/fpga/docs/axi_ip
8  * https://wiki.analog.com/resources/fpga/docs/hdl/regmap
9  */
10 
11 #ifndef ADI_AXI_COMMON_H_
12 #define ADI_AXI_COMMON_H_
13 
14 #define	ADI_AXI_REG_VERSION			0x0000
15 
16 #define ADI_AXI_PCORE_VER(major, minor, patch)	\
17 	(((major) << 16) | ((minor) << 8) | (patch))
18 
19 #endif /* ADI_AXI_COMMON_H_ */
20