instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'drivers/crypto/virtio/virtio_crypto_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* Common header for Virtio crypto device. * * Copyright 2016 HUAWEI TECHNOLOGIES CO., LTD. */ #ifndef _VIRTIO_CRYPTO_COMMON_H #define _VIRTIO_CRYPTO_COMMON_H #include <linux/virtio.h> #include <linux/crypto.h> #include <linux/spinlock.h> #include <linux/interru...
Linux kernel'inin 'drivers/crypto/aspeed/aspeed-hace' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2021 Aspeed Technology Inc. */ #include "aspeed-hace.h" #include <crypto/engine.h> #include <linux/clk.h> #include <linux/dma-mapping.h> #include <linux/err.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/kernel.h> #include <linux/mod...
Linux kernel'inin 'drivers/crypto/aspeed/aspeed-hace-crypto' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2021 Aspeed Technology Inc. */ #include "aspeed-hace.h" #include <crypto/des.h> #include <crypto/engine.h> #include <crypto/internal/des.h> #include <crypto/internal/skcipher.h> #include <linux/dma-mapping.h> #include <linux/err.h> #include <linux/io.h> #i...
Linux kernel'inin 'drivers/crypto/aspeed/aspeed-acry' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2021 Aspeed Technology Inc. */ #include <crypto/engine.h> #include <crypto/internal/akcipher.h> #include <crypto/internal/rsa.h> #include <crypto/scatterwalk.h> #include <linux/clk.h> #include <linux/count_zeros.h> #include <linux/dma-mapping.h> #include <linux...
Linux kernel'inin 'drivers/crypto/aspeed/aspeed-hace-hash' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2021 Aspeed Technology Inc. */ #include "aspeed-hace.h" #include <crypto/engine.h> #include <crypto/internal/hash.h> #include <crypto/scatterwalk.h> #include <crypto/sha1.h> #include <crypto/sha2.h> #include <linux/dma-mapping.h> #include <linux/err.h> #in...
Linux işletim sistemi çekirdeği için 'drivers/crypto/aspeed/aspeed-hace' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0+ */ #ifndef __ASPEED_HACE_H__ #define __ASPEED_HACE_H__ #include <crypto/aes.h> #include <crypto/engine.h> #include <crypto/hash.h> #include <crypto/sha2.h> #include <linux/bits.h> #include <linux/compiler_attributes.h> #include <linux/interrupt.h> #include <linux/types.h> /**...
Linux kernel'inin 'drivers/crypto/xilinx/zynqmp-sha' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Xilinx ZynqMP SHA Driver. * Copyright (c) 2022 Xilinx Inc. */ #include <crypto/internal/hash.h> #include <crypto/sha3.h> #include <linux/cacheflush.h> #include <linux/cleanup.h> #include <linux/device.h> #include <linux/dma-mapping.h> #include <linux/err.h> #include <lin...
Linux kernel'inin 'drivers/crypto/xilinx/zynqmp-aes-gcm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Xilinx ZynqMP AES Driver. * Copyright (C) 2020-2022 Xilinx Inc. * Copyright (C) 2022-2025 Advanced Micro Devices, Inc. */ #include <crypto/aes.h> #include <crypto/engine.h> #include <crypto/gcm.h> #include <crypto/internal/aead.h> #include <crypto/scatterwalk.h> #inclu...
Linux kernel'inin 'drivers/crypto/xilinx/xilinx-trng' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AMD Versal True Random Number Generator driver * Copyright (c) 2024 - 2025 Advanced Micro Devices, Inc. */ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/crypto.h> #include <linux/delay.h> #include <linux/firmware/xlnx-zynqmp.h> #include <linux/hw_ra...
Linux kernel'inin 'drivers/crypto/stm32/stm32-cryp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) STMicroelectronics SA 2017 * Author: Fabien Dessenne <fabien.dessenne@st.com> * Ux500 support taken from snippets in the old Ux500 cryp driver */ #include <crypto/aes.h> #include <crypto/engine.h> #include <crypto/internal/aead.h> #include <crypto/in...
Linux kernel'inin 'drivers/crypto/stm32/stm32-hash' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * This file is part of STM32 Crypto driver for Linux. * * Copyright (C) 2017, STMicroelectronics - All Rights Reserved * Author(s): Lionel DEBIEVE <lionel.debieve@st.com> for STMicroelectronics. */ #include <crypto/engine.h> #include <crypto/internal/hash.h> #inclu...
Linux kernel'inin 'drivers/crypto/ccp/ccp-dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2013,2019 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/kernel.h> #include <lin...
Linux kernel'inin 'drivers/crypto/ccp/ccp-dmaengine' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2016,2019 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/dma-mapping.h> #include <linux/dmaengine.h> #in...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/dbc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Platform Security Processor (PSP) Dynamic Boost Control support * * Copyright (C) 2023 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> */ #ifndef __DBC_H__ #define __DBC_H__ #include <uapi/linux/psp-dbc.h> #include...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-main' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) crypto API support * * Copyright (C) 2013,2017 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <crypto/internal/akcipher.h> #include <crypto/internal/hash.h> #include <crypto/interna...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-aes-cmac' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) AES CMAC crypto API support * * Copyright (C) 2013,2018 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/module.h> #include <linux/sched.h> #include <linux/delay.h> #include <l...
Linux kernel'inin 'drivers/crypto/ccp/sp-pci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor device driver * * Copyright (C) 2013,2019 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/bitfield.h> #include <linux/module.h> #include <linux/ker...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-des3' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) DES3 crypto API support * * Copyright (C) 2016,2017 Advanced Micro Devices, Inc. * * Author: Gary R Hook <ghook@amd.com> */ #include <crypto/internal/des.h> #include <crypto/internal/skcipher.h> #include <linux/err.h> #include...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/hsti' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Secure Processor device driver, security attributes * * Copyright (C) 2023-2024 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> */ #ifndef __HSTI_H #define __HSTI_H extern struct attribute_group psp_security_attr_gr...
Linux kernel'inin 'drivers/crypto/ccp/sev-dev-tio' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Interface to PSP for CCP/SEV-TIO/SNP-VM #include <linux/pci.h> #include <linux/tsm.h> #include <linux/psp.h> #include <linux/vmalloc.h> #include <linux/bitfield.h> #include <linux/pci-doe.h> #include <asm/sev-common.h> #include <asm/sev.h> #include <asm/page.h> #includ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/sp-dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Secure Processor driver * * Copyright (C) 2017-2019 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> * Author: Brijesh Singh <brijesh.singh@amd.com> */ #ifndef __SP_DEV_H__ #define...
Linux kernel'inin 'drivers/crypto/ccp/sp-platform' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor device driver * * Copyright (C) 2014,2018 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/device.h> #include <linux/platform_device.h> #in...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-rsa' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) RSA crypto API support * * Copyright (C) 2017 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/sched.h> #include <linux/scatterlist.h> #include <linux/string...
Linux kernel'inin 'drivers/crypto/ccp/sfs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor Seamless Firmware Servicing support. * * Copyright (C) 2025 Advanced Micro Devices, Inc. * * Author: Ashish Kalra <ashish.kalra@amd.com> */ #include <linux/firmware.h> #include "sfs.h" #include "sev-dev.h" #define SFS_DEFAULT_TIMEOUT (10 ...
Linux kernel'inin 'drivers/crypto/ccp/ccp-ops' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2013-2019 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #include <crypto/des.h> #include <crypto/scatterwalk.h> #include ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/platform-access' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Platform Security Processor (PSP) Platform Access interface * * Copyright (C) 2023 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> */ #ifndef __PSP_PLATFORM_ACCESS_H__ #define __PSP_PLATFORM_ACCESS_H__ #include <lin...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/ccp-crypto' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Cryptographic Coprocessor (CCP) crypto API support * * Copyright (C) 2013,2017 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #ifndef __CCP_CRYPTO_H__ #define __CCP_CRYPTO_H__ #include <linux/list.h> #include <linux/wa...
Linux kernel'inin 'drivers/crypto/ccp/sev-dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Encrypted Virtualization (SEV) interface * * Copyright (C) 2016,2019 Advanced Micro Devices, Inc. * * Author: Brijesh Singh <brijesh.singh@amd.com> */ #include <linux/bitfield.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/kthr...
Linux kernel'inin 'drivers/crypto/ccp/dbc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor Dynamic Boost Control interface * * Copyright (C) 2023 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> */ #include <linux/mutex.h> #include "dbc.h" #define DBC_DEFAULT_TIMEOUT (10 * MSEC_PER_SEC) str...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/sev-dev-tio' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __PSP_SEV_TIO_H__ #define __PSP_SEV_TIO_H__ #include <linux/pci-tsm.h> #include <linux/pci-ide.h> #include <linux/tsm.h> #include <uapi/linux/psp-sev.h> struct sla_addr_t { union { u64 sla; struct { u64 page_type :1, page_size :1, reserved...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/sev-dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Platform Security Processor (PSP) interface driver * * Copyright (C) 2017-2019 Advanced Micro Devices, Inc. * * Author: Brijesh Singh <brijesh.singh@amd.com> */ #ifndef __SEV_DEV_H__ #define __SEV_DEV_H__ #include <linux/device.h> #include <linux/spinloc...
Linux kernel'inin 'drivers/crypto/ccp/sp-dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor driver * * Copyright (C) 2017-2018 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> * Author: Brijesh Singh <brijesh.singh@amd.com> */ #include <linux/module.h> #incl...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-sha' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) SHA crypto API support * * Copyright (C) 2013,2018 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/sched.h...
Linux kernel'inin 'drivers/crypto/ccp/tee-dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: MIT /* * AMD Trusted Execution Environment (TEE) interface * * Author: Rijo Thomas <Rijo-john.Thomas@amd.com> * Author: Devaraj Rangasamy <Devaraj.Rangasamy@amd.com> * * Copyright (C) 2019,2021 Advanced Micro Devices, Inc. */ #include <linux/bitfield.h> #include <linux/types.h> ...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-aes-galois' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) AES GCM crypto API support * * Copyright (C) 2016,2017 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/sched.h> #include <linux/delay.h> #include <linux/sca...
Linux kernel'inin 'drivers/crypto/ccp/ccp-dev-v3' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2013,2017 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/module.h> #include <linux/kernel.h> #include <lin...
Linux kernel'inin 'drivers/crypto/ccp/ccp-dev-v5' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2016,2019 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/kernel.h> #include <linux/kthread.h> #include <linux/dma-mapping.h> #include <linux/interrupt.h> #i...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/psp-dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Platform Security Processor (PSP) interface driver * * Copyright (C) 2017-2019 Advanced Micro Devices, Inc. * * Author: Brijesh Singh <brijesh.singh@amd.com> */ #ifndef __PSP_DEV_H__ #define __PSP_DEV_H__ #include <linux/device.h> #include <linux/list.h>...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/sfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Platform Security Processor (PSP) Seamless Firmware (SFS) Support. * * Copyright (C) 2025 Advanced Micro Devices, Inc. * * Author: Ashish Kalra <ashish.kalra@amd.com> */ #ifndef __SFS_H__ #define __SFS_H__ #include <uapi/linux/psp-sfs.h> #include <linux...
Linux kernel'inin 'drivers/crypto/ccp/sev-dev-tsm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Interface to CCP/SEV-TIO for generic PCIe TDISP module #include <linux/pci.h> #include <linux/device.h> #include <linux/tsm.h> #include <linux/iommu.h> #include <linux/pci-doe.h> #include <linux/bitfield.h> #include <linux/module.h> #include <asm/sev-common.h> #includ...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-aes-xts' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) AES XTS crypto API support * * Copyright (C) 2013,2017 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/module.h> #include <linux/sch...
Linux kernel'inin 'drivers/crypto/ccp/platform-access' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AMD Platform Security Processor (PSP) Platform Access interface * * Copyright (C) 2023 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> * * Some of this code is adapted from drivers/i2c/busses/i2c-designware-amdpsp.c * developed...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/tee-dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: MIT */ /* * Copyright (C) 2019,2021 Advanced Micro Devices, Inc. * * Author: Rijo Thomas <Rijo-john.Thomas@amd.com> * Author: Devaraj Rangasamy <Devaraj.Rangasamy@amd.com> * */ /* This file describes the TEE communication interface between host and AMD * Secure Processor */ #i...
Linux kernel'inin 'drivers/crypto/ccp/ccp-debugfs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2017 Advanced Micro Devices, Inc. * * Author: Gary R Hook <gary.hook@amd.com> */ #include <linux/debugfs.h> #include <linux/ccp.h> #include "ccp-dev.h" /* DebugFS helpers */ #define OBUFP (obuf + ob...
Linux kernel'inin 'drivers/crypto/ccp/psp-dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Platform Security Processor (PSP) interface * * Copyright (C) 2016,2019 Advanced Micro Devices, Inc. * * Author: Brijesh Singh <brijesh.singh@amd.com> */ #include <linux/kernel.h> #include <linux/irqreturn.h> #include <linux/mutex.h> #include <linux/bitfield...
Linux kernel'inin 'drivers/crypto/ccp/ccp-crypto-aes' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Cryptographic Coprocessor (CCP) AES crypto API support * * Copyright (C) 2013-2019 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <crypto/aes.h> #include <crypto/ctr.h> #include <crypto/internal/skcipher.h> #inclu...
Linux kernel'inin 'drivers/crypto/ccp/hsti' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AMD Secure Processor device driver, security attributes * * Copyright (C) 2023-2024 Advanced Micro Devices, Inc. * * Author: Mario Limonciello <mario.limonciello@amd.com> */ #include <linux/device.h> #include "psp-dev.h" #include "hsti.h" #define PSP_CAPABILIT...
Linux işletim sistemi çekirdeği için 'drivers/crypto/ccp/ccp-dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Cryptographic Coprocessor (CCP) driver * * Copyright (C) 2013,2017 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> * Author: Gary R Hook <gary.hook@amd.com> */ #ifndef __CCP_DEV_H__ #define __CCP_DEV_H__ #include <linux/d...
Linux kernel'inin 'drivers/crypto/axis/artpec6_crypto' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for ARTPEC-6 crypto block using the kernel asynchronous crypto api. * * Copyright (C) 2014-2017 Axis Communications AB */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/bitfield.h> #include <linux/crypto.h> #include <linux/debugfs.h> ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/rockchip/rk3288_crypto' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __RK3288_CRYPTO_H__ #define __RK3288_CRYPTO_H__ #include <crypto/aes.h> #include <crypto/engine.h> #include <crypto/internal/des.h> #include <crypto/internal/hash.h> #include <crypto/internal/skcipher.h> #include <crypto/md5.h> #include <crypto/sha1.h> #include <cryp...
Linux kernel'inin 'drivers/crypto/rockchip/rk3288_crypto_skcipher' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Crypto acceleration support for Rockchip RK3288 * * Copyright (c) 2015, Fuzhou Rockchip Electronics Co., Ltd * * Author: Zain Wang <zain.wang@rock-chips.com> * * Some ideas are from marvell-cesa.c and s5p-sss.c driver. */ #include <crypto/engine.h> #include <c...
Linux kernel'inin 'drivers/crypto/rockchip/rk3288_crypto' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Crypto acceleration support for Rockchip RK3288 * * Copyright (c) 2015, Fuzhou Rockchip Electronics Co., Ltd * * Author: Zain Wang <zain.wang@rock-chips.com> * * Some ideas are from marvell-cesa.c and s5p-sss.c driver. */ #include "rk3288_crypto.h" #include <c...
Linux kernel'inin 'drivers/crypto/rockchip/rk3288_crypto_ahash' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Crypto acceleration support for Rockchip RK3288 * * Copyright (c) 2015, Fuzhou Rockchip Electronics Co., Ltd * * Author: Zain Wang <zain.wang@rock-chips.com> * * Some ideas are from marvell/cesa.c and s5p-sss.c driver. */ #include <linux/unaligned.h> #include ...
Linux kernel'inin 'drivers/crypto/caam/caamhash' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * caam - Freescale FSL CAAM support for ahash functions of crypto API * * Copyright 2011 Freescale Semiconductor, Inc. * Copyright 2018-2019, 2023 NXP * * Based on caamalg.c crypto API driver. * * relationship of digest job descriptor or first job descriptor after in...
Linux kernel'inin 'drivers/crypto/caam/dpseci-debugfs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* Copyright 2019 NXP */ #include <linux/module.h> #include <linux/device.h> #include <linux/debugfs.h> #include "dpseci-debugfs.h" static int dpseci_dbg_fqs_show(struct seq_file *file, void *offset) { struct dpaa2_caam_priv *priv = file->private; u32 fqid...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/dpseci_cmd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright 2013-2016 Freescale Semiconductor Inc. * Copyright 2017-2018 NXP */ #ifndef _DPSECI_CMD_H_ #define _DPSECI_CMD_H_ /* DPSECI Version */ #define DPSECI_VER_MAJOR 5 #define DPSECI_VER_MINOR 3 #define DPSECI_VER(maj, min) (((maj) << 1...
Linux kernel'inin 'drivers/crypto/caam/caamprng' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Driver to expose SEC4 PRNG via crypto RNG API * * Copyright 2022 NXP * */ #include <linux/completion.h> #include <crypto/internal/rng.h> #include <linux/dma-mapping.h> #include <linux/kernel.h> #include "compat.h" #include "regs.h" #include "intern.h" #include "desc_...
Linux kernel'inin 'drivers/crypto/caam/qi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * CAAM/SEC 4.x QI transport/backend driver * Queue Interface backend functionality * * Copyright 2013-2016 Freescale Semiconductor, Inc. * Copyright 2016-2017, 2019-2020 NXP */ #include <linux/cpumask.h> #include <linux/device.h> #include <linux/dma-mapping.h> #include...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/caamalg_qi2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright 2015-2016 Freescale Semiconductor Inc. * Copyright 2017-2018 NXP */ #ifndef _CAAMALG_QI2_H_ #define _CAAMALG_QI2_H_ #include <crypto/internal/skcipher.h> #include <linux/compiler_attributes.h> #include <soc/fsl/dpaa2-io.h> #include <soc/...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/desc_constr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * caam descriptor construction helper functions * * Copyright 2008-2012 Freescale Semiconductor, Inc. * Copyright 2019, 2025 NXP */ #ifndef DESC_CONSTR_H #define DESC_CONSTR_H #include "desc.h" #include "regs.h" #define IMMEDIATE (1 << 23) #define CAAM_CMD_SZ sizeo...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/jr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM public-level include definitions for the JobR backend * * Copyright 2008-2011 Freescale Semiconductor, Inc. */ #ifndef JR_H #define JR_H /* Prototypes for backend-level services exposed to APIs */ struct device *caam_jr_alloc(void); void caam_jr_free(struct de...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/dpseci-debugfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* Copyright 2019 NXP */ #ifndef DPSECI_DEBUGFS_H #define DPSECI_DEBUGFS_H #include <linux/dcache.h> #include "caamalg_qi2.h" #ifdef CONFIG_DEBUG_FS void dpaa2_dpseci_debugfs_init(struct dpaa2_caam_priv *priv); void dpaa2_dpseci_debugfs_exit(struct dpaa2...
Linux kernel'inin 'drivers/crypto/caam/caamalg_qi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Freescale FSL CAAM support for crypto API over QI backend. * Based on caamalg.c * * Copyright 2013-2016 Freescale Semiconductor, Inc. * Copyright 2016-2019 NXP */ #include "compat.h" #include "ctrl.h" #include "regs.h" #include "intern.h" #include "desc_constr.h" #i...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/caamalg_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Shared descriptors for aead, skcipher algorithms * * Copyright 2016, 2025 NXP */ #ifndef _CAAMALG_DESC_H_ #define _CAAMALG_DESC_H_ /* length of descriptors text */ #define DESC_AEAD_BASE (4 * CAAM_CMD_SZ) #define DESC_AEAD_ENC_LEN (DESC_AEAD_BASE + 11 * CAAM_CMD...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/intern' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM/SEC 4.x driver backend * Private/internal definitions between modules * * Copyright 2008-2011 Freescale Semiconductor, Inc. * Copyright 2019, 2023 NXP */ #ifndef INTERN_H #define INTERN_H #include "ctrl.h" #include <crypto/engine.h> /* Currently comes from ...
Linux kernel'inin 'drivers/crypto/caam/jr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * CAAM/SEC 4.x transport/backend driver * JobR backend functionality * * Copyright 2008-2012 Freescale Semiconductor, Inc. * Copyright 2019, 2023 NXP */ #include <linux/of_irq.h> #include <linux/of_address.h> #include <linux/platform_device.h> #include "compat.h" #in...
Linux kernel'inin 'drivers/crypto/caam/caamalg_desc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Shared descriptors for aead, skcipher algorithms * * Copyright 2016-2019, 2025 NXP */ #include "compat.h" #include "desc_constr.h" #include "caamalg_desc.h" #include <soc/fsl/caam-blob.h> /* * For aead functions, read payload and write payload, * both of which are ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/sg_sw_sec4' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM/SEC 4.x functions for using scatterlists in caam driver * * Copyright 2008-2011 Freescale Semiconductor, Inc. * */ #ifndef _SG_SW_SEC4_H_ #define _SG_SW_SEC4_H_ #include "ctrl.h" #include "regs.h" #include "sg_sw_qm2.h" #include <soc/fsl/dpaa2-fd.h> struct s...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/debugfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* Copyright 2019, 2023 NXP */ #ifndef CAAM_DEBUGFS_H #define CAAM_DEBUGFS_H struct dentry; struct caam_drv_private; struct caam_perfmon; #ifdef CONFIG_DEBUG_FS void caam_debugfs_init(struct caam_drv_private *ctrlpriv, struct caam_perfmon __forc...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/ctrl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM control-plane driver backend public-level include definitions * * Copyright 2012 Freescale Semiconductor, Inc. */ #ifndef CTRL_H #define CTRL_H /* Prototypes for backend-level services exposed to APIs */ extern bool caam_dpaa2; #endif /* CTRL_H */ ```
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/dpseci' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright 2013-2016 Freescale Semiconductor Inc. * Copyright 2017-2018 NXP */ #ifndef _DPSECI_H_ #define _DPSECI_H_ /* * Data Path SEC Interface API * Contains initialization APIs and runtime control APIs for DPSECI */ struct fsl_mc_io; /** *...
Linux kernel'inin 'drivers/crypto/caam/caampkc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* * caam - Freescale FSL CAAM support for Public Key Cryptography * * Copyright 2016 Freescale Semiconductor, Inc. * Copyright 2018-2019, 2023 NXP * * There is no Shared Descriptor for PKC so that the Job Descriptor must carry * all the desired key par...
Linux kernel'inin 'drivers/crypto/caam/caamhash_desc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* * Shared descriptors for ahash algorithms * * Copyright 2017-2019 NXP */ #include "compat.h" #include "desc_constr.h" #include "caamhash_desc.h" /** * cnstr_shdsc_ahash - ahash shared descriptor * @desc: pointer to buffer used for descriptor constru...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/key_gen' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM/SEC 4.x definitions for handling key-generation jobs * * Copyright 2008-2011 Freescale Semiconductor, Inc. * */ /** * split_key_len - Compute MDHA split key length for a given algorithm * @hash: Hashing algorithm selection, one of OP_ALG_ALGSEL_* - MD5, SHA1...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM descriptor composition header * Definitions to support CAAM descriptor instruction generation * * Copyright 2008-2011 Freescale Semiconductor, Inc. * Copyright 2018, 2025 NXP */ #ifndef DESC_H #define DESC_H /* * 16-byte hardware scatter/gather table * An ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/pdb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM Protocol Data Block (PDB) definition header file * * Copyright 2008-2016 Freescale Semiconductor, Inc. * */ #ifndef CAAM_PDB_H #define CAAM_PDB_H #include "compat.h" /* * PDB- IPSec ESP Header Modification Options */ #define PDBHMO_ESP_DECAP_SHIFT 28 #defin...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/sg_sw_qm2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright 2015-2016 Freescale Semiconductor, Inc. * Copyright 2017 NXP */ #ifndef _SG_SW_QM2_H_ #define _SG_SW_QM2_H_ #include <soc/fsl/dpaa2-fd.h> static inline void dma_to_qm_sg_one(struct dpaa2_sg_entry *qm_sg_ptr, dma_addr_t dma, u32 ...
Linux kernel'inin 'drivers/crypto/caam/caamalg' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * caam - Freescale FSL CAAM support for crypto API * * Copyright 2008-2011 Freescale Semiconductor, Inc. * Copyright 2016-2019, 2023, 2025 NXP * * Based on talitos crypto API driver. * * relationship of job descriptors to shared descriptors (SteveC Dec 10 2008): * ...
Linux kernel'inin 'drivers/crypto/caam/ctrl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * CAAM control-plane driver backend * Controller-level driver, kernel property detection, initialization * * Copyright 2008-2012 Freescale Semiconductor, Inc. * Copyright 2018-2019, 2023 NXP */ #include <linux/device.h> #include <linux/of_address.h> #include <linux/of_...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/sg_sw_qm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright 2013-2016 Freescale Semiconductor, Inc. * Copyright 2016-2017 NXP */ #ifndef __SG_SW_QM_H #define __SG_SW_QM_H #include <soc/fsl/qman.h> #include "regs.h" static inline void __dma_to_qm_sg(struct qm_sg_entry *qm_sg_ptr, dma_addr_t dma, ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/error' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM Error Reporting code header * * Copyright 2009-2011 Freescale Semiconductor, Inc. */ #ifndef CAAM_ERROR_H #define CAAM_ERROR_H #include "desc.h" #define CAAM_ERROR_STR_MAX 302 int caam_strstatus(struct device *dev, u32 status, bool qi_v2); #define caam_jr_s...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/qi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Public definitions for the CAAM/QI (Queue Interface) backend. * * Copyright 2013-2016 Freescale Semiconductor, Inc. * Copyright 2016-2017, 2020 NXP */ #ifndef __QI_H__ #define __QI_H__ #include <crypto/algapi.h> #include <linux/compiler_attributes.h> #include <soc...
Linux kernel'inin 'drivers/crypto/caam/pkc_desc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * caam - Freescale FSL CAAM support for Public Key Cryptography descriptors * * Copyright 2016 Freescale Semiconductor, Inc. * * There is no Shared Descriptor for PKC so that the Job Descriptor must carry * all the desired key parameters, input and output pointers. */ ...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/regs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * CAAM hardware register-level view * * Copyright 2008-2011 Freescale Semiconductor, Inc. * Copyright 2018, 2023 NXP */ #ifndef REGS_H #define REGS_H #include <linux/types.h> #include <linux/bitops.h> #include <linux/io.h> #include <linux/io-64-nonatomic-hi-lo.h> /...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/caamhash_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Shared descriptors for ahash algorithms * * Copyright 2017 NXP */ #ifndef _CAAMHASH_DESC_H_ #define _CAAMHASH_DESC_H_ /* length of descriptors text */ #define DESC_AHASH_BASE (3 * CAAM_CMD_SZ) #define DESC_AHASH_UPDATE_LEN (6 * CAAM_CMD_SZ) #d...
Linux kernel'inin 'drivers/crypto/caam/debugfs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* Copyright 2019, 2023 NXP */ #include <linux/debugfs.h> #include "compat.h" #include "debugfs.h" #include "regs.h" #include "intern.h" static int caam_debugfs_u64_get(void *data, u64 *val) { *val = caam64_to_cpu(*(u64 *)data); return 0; } static int caa...
Linux kernel'inin 'drivers/crypto/caam/key_gen' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * CAAM/SEC 4.x functions for handling key-generation jobs * * Copyright 2008-2011 Freescale Semiconductor, Inc. * */ #include "compat.h" #include "jr.h" #include "error.h" #include "desc_constr.h" #include "key_gen.h" void split_key_done(struct device *dev, u32 *desc, u...
Linux kernel'inin 'drivers/crypto/caam/dpseci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* * Copyright 2013-2016 Freescale Semiconductor Inc. * Copyright 2017-2018 NXP */ #include <linux/fsl/mc.h> #include "dpseci.h" #include "dpseci_cmd.h" /** * dpseci_open() - Open a control session for the specified object * @mc_io: Pointer to MC portal...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/compat' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * 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> #i...
Linux işletim sistemi çekirdeği için 'drivers/crypto/caam/caampkc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * caam - Freescale FSL CAAM support for Public Key Cryptography descriptors * * Copyright 2016 Freescale Semiconductor, Inc. * * There is no Shared Descriptor for PKC so that the Job Descriptor must carry * all the desired key parameters, input and output pointers. ...
Linux kernel'inin 'drivers/crypto/caam/error' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * CAAM Error Reporting * * Copyright 2009-2011 Freescale Semiconductor, Inc. */ #include "compat.h" #include "regs.h" #include "desc.h" #include "error.h" #ifdef DEBUG #include <linux/highmem.h> void caam_dump_sg(const char *prefix_str, int prefix_type, int rowsize...
Linux kernel'inin 'drivers/crypto/caam/caamalg_qi2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) /* * Copyright 2015-2016 Freescale Semiconductor Inc. * Copyright 2017-2019 NXP */ #include "compat.h" #include "regs.h" #include "caamalg_qi2.h" #include "dpseci_cmd.h" #include "desc_constr.h" #include "error.h" #include "sg_sw_sec4.h" #include "sg_sw_qm...
Linux kernel'inin 'drivers/crypto/caam/caamrng' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * caam - Freescale FSL CAAM support for hw_random * * Copyright 2011 Freescale Semiconductor, Inc. * Copyright 2018-2019, 2023 NXP * * Based on caamalg.c crypto API driver. * */ #include <linux/hw_random.h> #include <linux/completion.h> #include <linux/atomic.h> #in...
Linux kernel'inin 'drivers/crypto/caam/blob_gen' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2015 Pengutronix, Steffen Trumtrar <kernel@pengutronix.de> * Copyright (C) 2021 Pengutronix, Ahmad Fatoum <kernel@pengutronix.de> * Copyright 2024-2025 NXP */ #define pr_fmt(fmt) "caam blob_gen: " fmt #include <linux/bitfield.h> #include <linux/devi...
Linux işletim sistemi çekirdeği için 'drivers/crypto/cavium/nitrox/nitrox_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NITROX_COMMON_H #define __NITROX_COMMON_H #include "nitrox_dev.h" #include "nitrox_req.h" int nitrox_crypto_register(void); void nitrox_crypto_unregister(void); int nitrox_register_aeads(void); void nitrox_unregister_aeads(void); int nitrox_register_skciphers(void...
Linux kernel'inin 'drivers/crypto/cavium/nitrox/nitrox_lib' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/cpumask.h> #include <linux/dma-mapping.h> #include <linux/dmapool.h> #include <linux/delay.h> #include <linux/gfp.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/pci_regs.h> #include <linux/vmalloc.h> #include <linux/pci.h> #include "nitro...
Linux kernel'inin 'drivers/crypto/cavium/nitrox/nitrox_aead' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/kernel.h> #include <linux/printk.h> #include <linux/crypto.h> #include <linux/rtnetlink.h> #include <crypto/aead.h> #include <crypto/authenc.h> #include <crypto/des.h> #include <crypto/internal/aead.h> #include <crypto/scatterwalk.h> #include <crypto/gcm.h> #in...
Linux kernel'inin 'drivers/crypto/cavium/nitrox/nitrox_hal' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/delay.h> #include "nitrox_dev.h" #include "nitrox_csr.h" #include "nitrox_hal.h" #define PLL_REF_CLK 50 #define MAX_CSR_RETRIES 10 /** * emu_enable_cores - Enable EMU cluster cores. * @ndev: NITROX device */ static void emu_enable_cores(struct nitrox_device...
Linux işletim sistemi çekirdeği için 'drivers/crypto/cavium/nitrox/nitrox_hal' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NITROX_HAL_H #define __NITROX_HAL_H #include "nitrox_dev.h" void nitrox_config_aqm_rings(struct nitrox_device *ndev); void nitrox_config_aqm_unit(struct nitrox_device *ndev); void nitrox_config_emu_unit(struct nitrox_device *ndev); void nitrox_config_pkt_input_rin...
Linux işletim sistemi çekirdeği için 'drivers/crypto/cavium/nitrox/nitrox_debugfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NITROX_DEBUGFS_H #define __NITROX_DEBUGFS_H #include "nitrox_dev.h" #ifdef CONFIG_DEBUG_FS void nitrox_debugfs_init(struct nitrox_device *ndev); void nitrox_debugfs_exit(struct nitrox_device *ndev); #else static inline void nitrox_debugfs_init(struct nitrox_device...