| xj | b04a402 | 2021-11-25 15:01:52 +0800 | [diff] [blame] | 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/spinlock.h> | 
|  | 21 | #include <linux/rtnetlink.h> | 
|  | 22 | #include <linux/in.h> | 
|  | 23 | #include <linux/slab.h> | 
|  | 24 | #include <linux/types.h> | 
|  | 25 | #include <linux/debugfs.h> | 
|  | 26 | #include <linux/circ_buf.h> | 
|  | 27 | #include <linux/clk.h> | 
|  | 28 | #include <net/xfrm.h> | 
|  | 29 |  | 
|  | 30 | #include <crypto/algapi.h> | 
|  | 31 | #include <crypto/null.h> | 
|  | 32 | #include <crypto/aes.h> | 
|  | 33 | #include <crypto/ctr.h> | 
|  | 34 | #include <crypto/des.h> | 
|  | 35 | #include <crypto/gcm.h> | 
|  | 36 | #include <crypto/sha.h> | 
|  | 37 | #include <crypto/md5.h> | 
|  | 38 | #include <crypto/internal/aead.h> | 
|  | 39 | #include <crypto/authenc.h> | 
|  | 40 | #include <crypto/akcipher.h> | 
|  | 41 | #include <crypto/scatterwalk.h> | 
|  | 42 | #include <crypto/internal/skcipher.h> | 
|  | 43 | #include <crypto/internal/hash.h> | 
|  | 44 | #include <crypto/internal/rsa.h> | 
|  | 45 | #include <crypto/internal/akcipher.h> | 
|  | 46 |  | 
|  | 47 | #endif /* !defined(CAAM_COMPAT_H) */ |