Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [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> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 20 | #include <linux/iommu.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 35 | #include <crypto/internal/des.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 36 | #include <crypto/gcm.h> |
| 37 | #include <crypto/sha.h> |
| 38 | #include <crypto/md5.h> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 39 | #include <crypto/chacha.h> |
| 40 | #include <crypto/poly1305.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 41 | #include <crypto/internal/aead.h> |
| 42 | #include <crypto/authenc.h> |
| 43 | #include <crypto/akcipher.h> |
| 44 | #include <crypto/scatterwalk.h> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 45 | #include <crypto/skcipher.h> |
| 46 | #include <crypto/arc4.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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) */ |