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

compat.h (1324B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Copyright 2008-2011 Freescale Semiconductor, Inc.
      4 */
      5
      6#ifndef CAAM_COMPAT_H
      7#define CAAM_COMPAT_H
      8
      9#include <linux/kernel.h>
     10#include <linux/module.h>
     11#include <linux/mod_devicetable.h>
     12#include <linux/device.h>
     13#include <linux/interrupt.h>
     14#include <linux/crypto.h>
     15#include <linux/hash.h>
     16#include <linux/hw_random.h>
     17#include <linux/of_platform.h>
     18#include <linux/dma-mapping.h>
     19#include <linux/io.h>
     20#include <linux/iommu.h>
     21#include <linux/spinlock.h>
     22#include <linux/rtnetlink.h>
     23#include <linux/in.h>
     24#include <linux/slab.h>
     25#include <linux/types.h>
     26#include <linux/debugfs.h>
     27#include <linux/circ_buf.h>
     28#include <linux/clk.h>
     29#include <net/xfrm.h>
     30
     31#include <crypto/algapi.h>
     32#include <crypto/null.h>
     33#include <crypto/aes.h>
     34#include <crypto/ctr.h>
     35#include <crypto/internal/des.h>
     36#include <crypto/gcm.h>
     37#include <crypto/sha1.h>
     38#include <crypto/sha2.h>
     39#include <crypto/md5.h>
     40#include <crypto/chacha.h>
     41#include <crypto/poly1305.h>
     42#include <crypto/internal/aead.h>
     43#include <crypto/authenc.h>
     44#include <crypto/akcipher.h>
     45#include <crypto/scatterwalk.h>
     46#include <crypto/skcipher.h>
     47#include <crypto/internal/skcipher.h>
     48#include <crypto/internal/hash.h>
     49#include <crypto/internal/rsa.h>
     50#include <crypto/internal/akcipher.h>
     51
     52#endif /* !defined(CAAM_COMPAT_H) */