cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

adi-axi-common.h (670B)


      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#define ADI_AXI_PCORE_VER_MAJOR(version)	(((version) >> 16) & 0xff)
     20#define ADI_AXI_PCORE_VER_MINOR(version)	(((version) >> 8) & 0xff)
     21#define ADI_AXI_PCORE_VER_PATCH(version)	((version) & 0xff)
     22
     23#endif /* ADI_AXI_COMMON_H_ */