mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
d7fcbfc19b
Store a set of supported bitstream types in xilinx_desc structure. It will be used to determine whether an FPGA image is able to be loaded with a given driver. Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io> Tested-by: Ricardo Salveti <ricardo@foundries.io> Tested-by: Adrian Fiergolski <adrian.fiergolski@fastree3d.com> Link: https://lore.kernel.org/r/20220722141614.297383-4-oleksandr.suvorov@foundries.io Signed-off-by: Michal Simek <michal.simek@amd.com>
30 lines
785 B
C
30 lines
785 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* (C) Copyright 2015 Xilinx, Inc,
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*/
|
|
|
|
#ifndef _ZYNQMPPL_H_
|
|
#define _ZYNQMPPL_H_
|
|
|
|
#include <xilinx.h>
|
|
#include <linux/bitops.h>
|
|
|
|
#define ZYNQMP_FPGA_OP_INIT (1 << 0)
|
|
#define ZYNQMP_FPGA_OP_LOAD (1 << 1)
|
|
#define ZYNQMP_FPGA_OP_DONE (1 << 2)
|
|
|
|
#define ZYNQMP_FPGA_FLAG_AUTHENTICATED BIT(2)
|
|
#define ZYNQMP_FPGA_FLAG_ENCRYPTED BIT(3)
|
|
|
|
#define ZYNQMP_CSU_IDCODE_DEVICE_CODE_SHIFT 15
|
|
#define ZYNQMP_CSU_IDCODE_DEVICE_CODE_MASK (0xf << \
|
|
ZYNQMP_CSU_IDCODE_DEVICE_CODE_SHIFT)
|
|
#define ZYNQMP_CSU_IDCODE_SVD_SHIFT 12
|
|
#define ZYNQMP_CSU_IDCODE_SVD_MASK (0x7 << ZYNQMP_CSU_IDCODE_SVD_SHIFT)
|
|
|
|
extern struct xilinx_fpga_op zynqmp_op;
|
|
|
|
#define ZYNQMP_FPGA_FLAGS (FPGA_LEGACY)
|
|
|
|
#endif /* _ZYNQMPPL_H_ */
|