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

altera_utils.h (545B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/* Altera TSE SGDMA and MSGDMA Linux driver
      3 * Copyright (C) 2014 Altera Corporation. All rights reserved
      4 */
      5
      6#include <linux/kernel.h>
      7
      8#ifndef __ALTERA_UTILS_H__
      9#define __ALTERA_UTILS_H__
     10
     11void tse_set_bit(void __iomem *ioaddr, size_t offs, u32 bit_mask);
     12void tse_clear_bit(void __iomem *ioaddr, size_t offs, u32 bit_mask);
     13int tse_bit_is_set(void __iomem *ioaddr, size_t offs, u32 bit_mask);
     14int tse_bit_is_clear(void __iomem *ioaddr, size_t offs, u32 bit_mask);
     15
     16#endif /* __ALTERA_UTILS_H__*/