compat.h 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright 2008-2011 Freescale Semiconductor, Inc.
 */

#ifndef CAAM_COMPAT_H
#define CAAM_COMPAT_H

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/device.h>
#include <linux/interrupt.h>
#include <linux/crypto.h>
Y
Yuan Kang 已提交
14
#include <linux/hash.h>
15 16 17 18 19 20 21 22 23 24 25
#include <linux/hw_random.h>
#include <linux/of_platform.h>
#include <linux/dma-mapping.h>
#include <linux/io.h>
#include <linux/spinlock.h>
#include <linux/rtnetlink.h>
#include <linux/in.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/debugfs.h>
#include <linux/circ_buf.h>
26
#include <linux/clk.h>
27 28 29
#include <net/xfrm.h>

#include <crypto/algapi.h>
30
#include <crypto/null.h>
31
#include <crypto/aes.h>
32
#include <crypto/ctr.h>
33 34
#include <crypto/des.h>
#include <crypto/sha.h>
35
#include <crypto/md5.h>
36
#include <crypto/internal/aead.h>
37
#include <crypto/authenc.h>
38
#include <crypto/akcipher.h>
39
#include <crypto/scatterwalk.h>
Y
Yuan Kang 已提交
40
#include <crypto/internal/skcipher.h>
Y
Yuan Kang 已提交
41
#include <crypto/internal/hash.h>
42 43
#include <crypto/internal/rsa.h>
#include <crypto/internal/akcipher.h>
44 45

#endif /* !defined(CAAM_COMPAT_H) */