mirror of https://gitee.com/openkylin/linux.git
staging: ccree: SPDXify driver
Replace verbatim GPL v2 copy with SPDX tag. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c7fc46fd14
commit
70da8241af
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
config CRYPTO_DEV_CCREE
|
config CRYPTO_DEV_CCREE
|
||||||
tristate "Support for ARM TrustZone CryptoCell C7XX family of Crypto accelerators"
|
tristate "Support for ARM TrustZone CryptoCell C7XX family of Crypto accelerators"
|
||||||
depends on CRYPTO && CRYPTO_HW && OF && HAS_DMA
|
depends on CRYPTO && CRYPTO_HW && OF && HAS_DMA
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
obj-$(CONFIG_CRYPTO_DEV_CCREE) := ccree.o
|
obj-$(CONFIG_CRYPTO_DEV_CCREE) := ccree.o
|
||||||
ccree-y := ssi_driver.o ssi_buffer_mgr.o ssi_request_mgr.o ssi_cipher.o ssi_hash.o ssi_aead.o ssi_ivgen.o ssi_sram_mgr.o ssi_pm.o
|
ccree-y := ssi_driver.o ssi_buffer_mgr.o ssi_request_mgr.o ssi_cipher.o ssi_hash.o ssi_aead.o ssi_ivgen.o ssi_sram_mgr.o ssi_pm.o
|
||||||
ccree-$(CONFIG_CRYPTO_FIPS) += ssi_fips.o
|
ccree-$(CONFIG_CRYPTO_FIPS) += ssi_fips.o
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _CC_CRYPTO_CTX_H_
|
#ifndef _CC_CRYPTO_CTX_H_
|
||||||
#define _CC_CRYPTO_CTX_H_
|
#define _CC_CRYPTO_CTX_H_
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_DEBUGFS_H__
|
#ifndef __CC_DEBUGFS_H__
|
||||||
#define __CC_DEBUGFS_H__
|
#define __CC_DEBUGFS_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_HW_QUEUE_DEFS_H__
|
#ifndef __CC_HW_QUEUE_DEFS_H__
|
||||||
#define __CC_HW_QUEUE_DEFS_H__
|
#define __CC_HW_QUEUE_DEFS_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _CC_LLI_DEFS_H_
|
#ifndef _CC_LLI_DEFS_H_
|
||||||
#define _CC_LLI_DEFS_H_
|
#define _CC_LLI_DEFS_H_
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_CRYS_KERNEL_H__
|
#ifndef __CC_CRYS_KERNEL_H__
|
||||||
#define __CC_CRYS_KERNEL_H__
|
#define __CC_CRYS_KERNEL_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_HOST_H__
|
#ifndef __CC_HOST_H__
|
||||||
#define __CC_HOST_H__
|
#define __CC_HOST_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_REG_COMMON_H__
|
#ifndef __CC_REG_COMMON_H__
|
||||||
#define __CC_REG_COMMON_H__
|
#define __CC_REG_COMMON_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _HASH_DEFS_H_
|
#ifndef _HASH_DEFS_H_
|
||||||
#define _HASH_DEFS_H_
|
#define _HASH_DEFS_H_
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file ssi_aead.h
|
/* \file ssi_aead.h
|
||||||
* ARM CryptoCell AEAD Crypto API
|
* ARM CryptoCell AEAD Crypto API
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/crypto.h>
|
#include <linux/crypto.h>
|
||||||
#include <linux/version.h>
|
#include <linux/version.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file buffer_mgr.h
|
/* \file buffer_mgr.h
|
||||||
* Buffer Manager
|
* Buffer Manager
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file ssi_cipher.h
|
/* \file ssi_cipher.h
|
||||||
* ARM CryptoCell Cipher Crypto API
|
* ARM CryptoCell Cipher Crypto API
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file ssi_driver.h
|
/* \file ssi_driver.h
|
||||||
* ARM CryptoCell Linux Crypto Driver
|
* ARM CryptoCell Linux Crypto Driver
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/fips.h>
|
#include <linux/fips.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_FIPS_H__
|
#ifndef __CC_FIPS_H__
|
||||||
#define __CC_FIPS_H__
|
#define __CC_FIPS_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file ssi_hash.h
|
/* \file ssi_hash.h
|
||||||
* ARM CryptoCell Hash Crypto API
|
* ARM CryptoCell Hash Crypto API
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <crypto/ctr.h>
|
#include <crypto/ctr.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_IVGEN_H__
|
#ifndef __CC_IVGEN_H__
|
||||||
#define __CC_IVGEN_H__
|
#define __CC_IVGEN_H__
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file ssi_pm.h
|
/* \file ssi_pm.h
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* \file request_mgr.h
|
/* \file request_mgr.h
|
||||||
* Request Manager
|
* Request Manager
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "ssi_driver.h"
|
#include "ssi_driver.h"
|
||||||
#include "ssi_sram_mgr.h"
|
#include "ssi_sram_mgr.h"
|
||||||
|
|
|
@ -1,18 +1,5 @@
|
||||||
/*
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
* Copyright (C) 2012-2017 ARM Limited or its affiliates.
|
/* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
|
||||||
* published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __CC_SRAM_MGR_H__
|
#ifndef __CC_SRAM_MGR_H__
|
||||||
#define __CC_SRAM_MGR_H__
|
#define __CC_SRAM_MGR_H__
|
||||||
|
|
Loading…
Reference in New Issue