mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
30
drivers/crypto/ux500/Kconfig
Normal file
30
drivers/crypto/ux500/Kconfig
Normal file
|
@ -0,0 +1,30 @@
|
|||
#
|
||||
# Copyright (C) ST-Ericsson SA 2010
|
||||
# Author: Shujuan Chen (shujuan.chen@stericsson.com)
|
||||
# License terms: GNU General Public License (GPL) version 2
|
||||
#
|
||||
|
||||
config CRYPTO_DEV_UX500_CRYP
|
||||
tristate "UX500 crypto driver for CRYP block"
|
||||
depends on CRYPTO_DEV_UX500
|
||||
select CRYPTO_DES
|
||||
help
|
||||
This selects the crypto driver for the UX500_CRYP hardware. It supports
|
||||
AES-ECB, CBC and CTR with keys sizes of 128, 192 and 256 bit sizes.
|
||||
|
||||
config CRYPTO_DEV_UX500_HASH
|
||||
tristate "UX500 crypto driver for HASH block"
|
||||
depends on CRYPTO_DEV_UX500
|
||||
select CRYPTO_HASH
|
||||
select CRYPTO_HMAC
|
||||
help
|
||||
This selects the hash driver for the UX500_HASH hardware.
|
||||
Depends on UX500/STM DMA if running in DMA mode.
|
||||
|
||||
config CRYPTO_DEV_UX500_DEBUG
|
||||
bool "Activate ux500 platform debug-mode for crypto and hash block"
|
||||
depends on CRYPTO_DEV_UX500_CRYP || CRYPTO_DEV_UX500_HASH
|
||||
default n
|
||||
help
|
||||
Say Y if you want to add debug prints to ux500_hash and
|
||||
ux500_cryp devices.
|
8
drivers/crypto/ux500/Makefile
Normal file
8
drivers/crypto/ux500/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# Copyright (C) ST-Ericsson SA 2010
|
||||
# Author: Shujuan Chen (shujuan.chen@stericsson.com)
|
||||
# License terms: GNU General Public License (GPL) version 2
|
||||
#
|
||||
|
||||
obj-$(CONFIG_CRYPTO_DEV_UX500_HASH) += hash/
|
||||
obj-$(CONFIG_CRYPTO_DEV_UX500_CRYP) += cryp/
|
13
drivers/crypto/ux500/cryp/Makefile
Normal file
13
drivers/crypto/ux500/cryp/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
#/*
|
||||
# * Copyright (C) ST-Ericsson SA 2010
|
||||
# * Author: shujuan.chen@stericsson.com for ST-Ericsson.
|
||||
# * License terms: GNU General Public License (GPL) version 2 */
|
||||
|
||||
ifdef CONFIG_CRYPTO_DEV_UX500_DEBUG
|
||||
CFLAGS_cryp_core.o := -DDEBUG -O0
|
||||
CFLAGS_cryp.o := -DDEBUG -O0
|
||||
CFLAGS_cryp_irq.o := -DDEBUG -O0
|
||||
endif
|
||||
|
||||
obj-$(CONFIG_CRYPTO_DEV_UX500_CRYP) += ux500_cryp.o
|
||||
ux500_cryp-objs := cryp.o cryp_irq.o cryp_core.o
|
387
drivers/crypto/ux500/cryp/cryp.c
Normal file
387
drivers/crypto/ux500/cryp/cryp.c
Normal file
|
@ -0,0 +1,387 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
|
||||
#include <linux/errno.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#include "cryp_p.h"
|
||||
#include "cryp.h"
|
||||
|
||||
/**
|
||||
* cryp_wait_until_done - wait until the device logic is not busy
|
||||
*/
|
||||
void cryp_wait_until_done(struct cryp_device_data *device_data)
|
||||
{
|
||||
while (cryp_is_logic_busy(device_data))
|
||||
cpu_relax();
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_check - This routine checks Peripheral and PCell Id
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
*/
|
||||
int cryp_check(struct cryp_device_data *device_data)
|
||||
{
|
||||
int peripheralid2 = 0;
|
||||
|
||||
if (NULL == device_data)
|
||||
return -EINVAL;
|
||||
|
||||
peripheralid2 = readl_relaxed(&device_data->base->periphId2);
|
||||
|
||||
if (peripheralid2 != CRYP_PERIPHERAL_ID2_DB8500)
|
||||
return -EPERM;
|
||||
|
||||
/* Check Peripheral and Pcell Id Register for CRYP */
|
||||
if ((CRYP_PERIPHERAL_ID0 ==
|
||||
readl_relaxed(&device_data->base->periphId0))
|
||||
&& (CRYP_PERIPHERAL_ID1 ==
|
||||
readl_relaxed(&device_data->base->periphId1))
|
||||
&& (CRYP_PERIPHERAL_ID3 ==
|
||||
readl_relaxed(&device_data->base->periphId3))
|
||||
&& (CRYP_PCELL_ID0 ==
|
||||
readl_relaxed(&device_data->base->pcellId0))
|
||||
&& (CRYP_PCELL_ID1 ==
|
||||
readl_relaxed(&device_data->base->pcellId1))
|
||||
&& (CRYP_PCELL_ID2 ==
|
||||
readl_relaxed(&device_data->base->pcellId2))
|
||||
&& (CRYP_PCELL_ID3 ==
|
||||
readl_relaxed(&device_data->base->pcellId3))) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -EPERM;
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_activity - This routine enables/disable the cryptography function.
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @cryp_crypen: Enable/Disable functionality
|
||||
*/
|
||||
void cryp_activity(struct cryp_device_data *device_data,
|
||||
enum cryp_crypen cryp_crypen)
|
||||
{
|
||||
CRYP_PUT_BITS(&device_data->base->cr,
|
||||
cryp_crypen,
|
||||
CRYP_CR_CRYPEN_POS,
|
||||
CRYP_CR_CRYPEN_MASK);
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_flush_inoutfifo - Resets both the input and the output FIFOs
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
*/
|
||||
void cryp_flush_inoutfifo(struct cryp_device_data *device_data)
|
||||
{
|
||||
/*
|
||||
* We always need to disble the hardware before trying to flush the
|
||||
* FIFO. This is something that isn't written in the design
|
||||
* specification, but we have been informed by the hardware designers
|
||||
* that this must be done.
|
||||
*/
|
||||
cryp_activity(device_data, CRYP_CRYPEN_DISABLE);
|
||||
cryp_wait_until_done(device_data);
|
||||
|
||||
CRYP_SET_BITS(&device_data->base->cr, CRYP_CR_FFLUSH_MASK);
|
||||
/*
|
||||
* CRYP_SR_INFIFO_READY_MASK is the expected value on the status
|
||||
* register when starting a new calculation, which means Input FIFO is
|
||||
* not full and input FIFO is empty.
|
||||
*/
|
||||
while (readl_relaxed(&device_data->base->sr) !=
|
||||
CRYP_SR_INFIFO_READY_MASK)
|
||||
cpu_relax();
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_set_configuration - This routine set the cr CRYP IP
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @cryp_config: Pointer to the configuration parameter
|
||||
* @control_register: The control register to be written later on.
|
||||
*/
|
||||
int cryp_set_configuration(struct cryp_device_data *device_data,
|
||||
struct cryp_config *cryp_config,
|
||||
u32 *control_register)
|
||||
{
|
||||
u32 cr_for_kse;
|
||||
|
||||
if (NULL == device_data || NULL == cryp_config)
|
||||
return -EINVAL;
|
||||
|
||||
*control_register |= (cryp_config->keysize << CRYP_CR_KEYSIZE_POS);
|
||||
|
||||
/* Prepare key for decryption in AES_ECB and AES_CBC mode. */
|
||||
if ((CRYP_ALGORITHM_DECRYPT == cryp_config->algodir) &&
|
||||
((CRYP_ALGO_AES_ECB == cryp_config->algomode) ||
|
||||
(CRYP_ALGO_AES_CBC == cryp_config->algomode))) {
|
||||
cr_for_kse = *control_register;
|
||||
/*
|
||||
* This seems a bit odd, but it is indeed needed to set this to
|
||||
* encrypt even though it is a decryption that we are doing. It
|
||||
* also mentioned in the design spec that you need to do this.
|
||||
* After the keyprepartion for decrypting is done you should set
|
||||
* algodir back to decryption, which is done outside this if
|
||||
* statement.
|
||||
*
|
||||
* According to design specification we should set mode ECB
|
||||
* during key preparation even though we might be running CBC
|
||||
* when enter this function.
|
||||
*
|
||||
* Writing to KSE_ENABLED will drop CRYPEN when key preparation
|
||||
* is done. Therefore we need to set CRYPEN again outside this
|
||||
* if statement when running decryption.
|
||||
*/
|
||||
cr_for_kse |= ((CRYP_ALGORITHM_ENCRYPT << CRYP_CR_ALGODIR_POS) |
|
||||
(CRYP_ALGO_AES_ECB << CRYP_CR_ALGOMODE_POS) |
|
||||
(CRYP_CRYPEN_ENABLE << CRYP_CR_CRYPEN_POS) |
|
||||
(KSE_ENABLED << CRYP_CR_KSE_POS));
|
||||
|
||||
writel_relaxed(cr_for_kse, &device_data->base->cr);
|
||||
cryp_wait_until_done(device_data);
|
||||
}
|
||||
|
||||
*control_register |=
|
||||
((cryp_config->algomode << CRYP_CR_ALGOMODE_POS) |
|
||||
(cryp_config->algodir << CRYP_CR_ALGODIR_POS));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_configure_protection - set the protection bits in the CRYP logic.
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @p_protect_config: Pointer to the protection mode and
|
||||
* secure mode configuration
|
||||
*/
|
||||
int cryp_configure_protection(struct cryp_device_data *device_data,
|
||||
struct cryp_protection_config *p_protect_config)
|
||||
{
|
||||
if (NULL == p_protect_config)
|
||||
return -EINVAL;
|
||||
|
||||
CRYP_WRITE_BIT(&device_data->base->cr,
|
||||
(u32) p_protect_config->secure_access,
|
||||
CRYP_CR_SECURE_MASK);
|
||||
CRYP_PUT_BITS(&device_data->base->cr,
|
||||
p_protect_config->privilege_access,
|
||||
CRYP_CR_PRLG_POS,
|
||||
CRYP_CR_PRLG_MASK);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_is_logic_busy - returns the busy status of the CRYP logic
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
*/
|
||||
int cryp_is_logic_busy(struct cryp_device_data *device_data)
|
||||
{
|
||||
return CRYP_TEST_BITS(&device_data->base->sr,
|
||||
CRYP_SR_BUSY_MASK);
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_configure_for_dma - configures the CRYP IP for DMA operation
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @dma_req: Specifies the DMA request type value.
|
||||
*/
|
||||
void cryp_configure_for_dma(struct cryp_device_data *device_data,
|
||||
enum cryp_dma_req_type dma_req)
|
||||
{
|
||||
CRYP_SET_BITS(&device_data->base->dmacr,
|
||||
(u32) dma_req);
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_configure_key_values - configures the key values for CRYP operations
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @key_reg_index: Key value index register
|
||||
* @key_value: The key value struct
|
||||
*/
|
||||
int cryp_configure_key_values(struct cryp_device_data *device_data,
|
||||
enum cryp_key_reg_index key_reg_index,
|
||||
struct cryp_key_value key_value)
|
||||
{
|
||||
while (cryp_is_logic_busy(device_data))
|
||||
cpu_relax();
|
||||
|
||||
switch (key_reg_index) {
|
||||
case CRYP_KEY_REG_1:
|
||||
writel_relaxed(key_value.key_value_left,
|
||||
&device_data->base->key_1_l);
|
||||
writel_relaxed(key_value.key_value_right,
|
||||
&device_data->base->key_1_r);
|
||||
break;
|
||||
case CRYP_KEY_REG_2:
|
||||
writel_relaxed(key_value.key_value_left,
|
||||
&device_data->base->key_2_l);
|
||||
writel_relaxed(key_value.key_value_right,
|
||||
&device_data->base->key_2_r);
|
||||
break;
|
||||
case CRYP_KEY_REG_3:
|
||||
writel_relaxed(key_value.key_value_left,
|
||||
&device_data->base->key_3_l);
|
||||
writel_relaxed(key_value.key_value_right,
|
||||
&device_data->base->key_3_r);
|
||||
break;
|
||||
case CRYP_KEY_REG_4:
|
||||
writel_relaxed(key_value.key_value_left,
|
||||
&device_data->base->key_4_l);
|
||||
writel_relaxed(key_value.key_value_right,
|
||||
&device_data->base->key_4_r);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_configure_init_vector - configures the initialization vector register
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @init_vector_index: Specifies the index of the init vector.
|
||||
* @init_vector_value: Specifies the value for the init vector.
|
||||
*/
|
||||
int cryp_configure_init_vector(struct cryp_device_data *device_data,
|
||||
enum cryp_init_vector_index
|
||||
init_vector_index,
|
||||
struct cryp_init_vector_value
|
||||
init_vector_value)
|
||||
{
|
||||
while (cryp_is_logic_busy(device_data))
|
||||
cpu_relax();
|
||||
|
||||
switch (init_vector_index) {
|
||||
case CRYP_INIT_VECTOR_INDEX_0:
|
||||
writel_relaxed(init_vector_value.init_value_left,
|
||||
&device_data->base->init_vect_0_l);
|
||||
writel_relaxed(init_vector_value.init_value_right,
|
||||
&device_data->base->init_vect_0_r);
|
||||
break;
|
||||
case CRYP_INIT_VECTOR_INDEX_1:
|
||||
writel_relaxed(init_vector_value.init_value_left,
|
||||
&device_data->base->init_vect_1_l);
|
||||
writel_relaxed(init_vector_value.init_value_right,
|
||||
&device_data->base->init_vect_1_r);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_save_device_context - Store hardware registers and
|
||||
* other device context parameter
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @ctx: Crypto device context
|
||||
*/
|
||||
void cryp_save_device_context(struct cryp_device_data *device_data,
|
||||
struct cryp_device_context *ctx,
|
||||
int cryp_mode)
|
||||
{
|
||||
enum cryp_algo_mode algomode;
|
||||
struct cryp_register __iomem *src_reg = device_data->base;
|
||||
struct cryp_config *config =
|
||||
(struct cryp_config *)device_data->current_ctx;
|
||||
|
||||
/*
|
||||
* Always start by disable the hardware and wait for it to finish the
|
||||
* ongoing calculations before trying to reprogram it.
|
||||
*/
|
||||
cryp_activity(device_data, CRYP_CRYPEN_DISABLE);
|
||||
cryp_wait_until_done(device_data);
|
||||
|
||||
if (cryp_mode == CRYP_MODE_DMA)
|
||||
cryp_configure_for_dma(device_data, CRYP_DMA_DISABLE_BOTH);
|
||||
|
||||
if (CRYP_TEST_BITS(&src_reg->sr, CRYP_SR_IFEM_MASK) == 0)
|
||||
ctx->din = readl_relaxed(&src_reg->din);
|
||||
|
||||
ctx->cr = readl_relaxed(&src_reg->cr) & CRYP_CR_CONTEXT_SAVE_MASK;
|
||||
|
||||
switch (config->keysize) {
|
||||
case CRYP_KEY_SIZE_256:
|
||||
ctx->key_4_l = readl_relaxed(&src_reg->key_4_l);
|
||||
ctx->key_4_r = readl_relaxed(&src_reg->key_4_r);
|
||||
|
||||
case CRYP_KEY_SIZE_192:
|
||||
ctx->key_3_l = readl_relaxed(&src_reg->key_3_l);
|
||||
ctx->key_3_r = readl_relaxed(&src_reg->key_3_r);
|
||||
|
||||
case CRYP_KEY_SIZE_128:
|
||||
ctx->key_2_l = readl_relaxed(&src_reg->key_2_l);
|
||||
ctx->key_2_r = readl_relaxed(&src_reg->key_2_r);
|
||||
|
||||
default:
|
||||
ctx->key_1_l = readl_relaxed(&src_reg->key_1_l);
|
||||
ctx->key_1_r = readl_relaxed(&src_reg->key_1_r);
|
||||
}
|
||||
|
||||
/* Save IV for CBC mode for both AES and DES. */
|
||||
algomode = ((ctx->cr & CRYP_CR_ALGOMODE_MASK) >> CRYP_CR_ALGOMODE_POS);
|
||||
if (algomode == CRYP_ALGO_TDES_CBC ||
|
||||
algomode == CRYP_ALGO_DES_CBC ||
|
||||
algomode == CRYP_ALGO_AES_CBC) {
|
||||
ctx->init_vect_0_l = readl_relaxed(&src_reg->init_vect_0_l);
|
||||
ctx->init_vect_0_r = readl_relaxed(&src_reg->init_vect_0_r);
|
||||
ctx->init_vect_1_l = readl_relaxed(&src_reg->init_vect_1_l);
|
||||
ctx->init_vect_1_r = readl_relaxed(&src_reg->init_vect_1_r);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* cryp_restore_device_context - Restore hardware registers and
|
||||
* other device context parameter
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @ctx: Crypto device context
|
||||
*/
|
||||
void cryp_restore_device_context(struct cryp_device_data *device_data,
|
||||
struct cryp_device_context *ctx)
|
||||
{
|
||||
struct cryp_register __iomem *reg = device_data->base;
|
||||
struct cryp_config *config =
|
||||
(struct cryp_config *)device_data->current_ctx;
|
||||
|
||||
/*
|
||||
* Fall through for all items in switch statement. DES is captured in
|
||||
* the default.
|
||||
*/
|
||||
switch (config->keysize) {
|
||||
case CRYP_KEY_SIZE_256:
|
||||
writel_relaxed(ctx->key_4_l, ®->key_4_l);
|
||||
writel_relaxed(ctx->key_4_r, ®->key_4_r);
|
||||
|
||||
case CRYP_KEY_SIZE_192:
|
||||
writel_relaxed(ctx->key_3_l, ®->key_3_l);
|
||||
writel_relaxed(ctx->key_3_r, ®->key_3_r);
|
||||
|
||||
case CRYP_KEY_SIZE_128:
|
||||
writel_relaxed(ctx->key_2_l, ®->key_2_l);
|
||||
writel_relaxed(ctx->key_2_r, ®->key_2_r);
|
||||
|
||||
default:
|
||||
writel_relaxed(ctx->key_1_l, ®->key_1_l);
|
||||
writel_relaxed(ctx->key_1_r, ®->key_1_r);
|
||||
}
|
||||
|
||||
/* Restore IV for CBC mode for AES and DES. */
|
||||
if (config->algomode == CRYP_ALGO_TDES_CBC ||
|
||||
config->algomode == CRYP_ALGO_DES_CBC ||
|
||||
config->algomode == CRYP_ALGO_AES_CBC) {
|
||||
writel_relaxed(ctx->init_vect_0_l, ®->init_vect_0_l);
|
||||
writel_relaxed(ctx->init_vect_0_r, ®->init_vect_0_r);
|
||||
writel_relaxed(ctx->init_vect_1_l, ®->init_vect_1_l);
|
||||
writel_relaxed(ctx->init_vect_1_r, ®->init_vect_1_r);
|
||||
}
|
||||
}
|
313
drivers/crypto/ux500/cryp/cryp.h
Normal file
313
drivers/crypto/ux500/cryp/cryp.h
Normal file
|
@ -0,0 +1,313 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
|
||||
#ifndef _CRYP_H_
|
||||
#define _CRYP_H_
|
||||
|
||||
#include <linux/completion.h>
|
||||
#include <linux/dmaengine.h>
|
||||
#include <linux/klist.h>
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#define DEV_DBG_NAME "crypX crypX:"
|
||||
|
||||
/* CRYP enable/disable */
|
||||
enum cryp_crypen {
|
||||
CRYP_CRYPEN_DISABLE = 0,
|
||||
CRYP_CRYPEN_ENABLE = 1
|
||||
};
|
||||
|
||||
/* CRYP Start Computation enable/disable */
|
||||
enum cryp_start {
|
||||
CRYP_START_DISABLE = 0,
|
||||
CRYP_START_ENABLE = 1
|
||||
};
|
||||
|
||||
/* CRYP Init Signal enable/disable */
|
||||
enum cryp_init {
|
||||
CRYP_INIT_DISABLE = 0,
|
||||
CRYP_INIT_ENABLE = 1
|
||||
};
|
||||
|
||||
/* Cryp State enable/disable */
|
||||
enum cryp_state {
|
||||
CRYP_STATE_DISABLE = 0,
|
||||
CRYP_STATE_ENABLE = 1
|
||||
};
|
||||
|
||||
/* Key preparation bit enable */
|
||||
enum cryp_key_prep {
|
||||
KSE_DISABLED = 0,
|
||||
KSE_ENABLED = 1
|
||||
};
|
||||
|
||||
/* Key size for AES */
|
||||
#define CRYP_KEY_SIZE_128 (0)
|
||||
#define CRYP_KEY_SIZE_192 (1)
|
||||
#define CRYP_KEY_SIZE_256 (2)
|
||||
|
||||
/* AES modes */
|
||||
enum cryp_algo_mode {
|
||||
CRYP_ALGO_TDES_ECB,
|
||||
CRYP_ALGO_TDES_CBC,
|
||||
CRYP_ALGO_DES_ECB,
|
||||
CRYP_ALGO_DES_CBC,
|
||||
CRYP_ALGO_AES_ECB,
|
||||
CRYP_ALGO_AES_CBC,
|
||||
CRYP_ALGO_AES_CTR,
|
||||
CRYP_ALGO_AES_XTS
|
||||
};
|
||||
|
||||
/* Cryp Encryption or Decryption */
|
||||
enum cryp_algorithm_dir {
|
||||
CRYP_ALGORITHM_ENCRYPT,
|
||||
CRYP_ALGORITHM_DECRYPT
|
||||
};
|
||||
|
||||
/* Hardware access method */
|
||||
enum cryp_mode {
|
||||
CRYP_MODE_POLLING,
|
||||
CRYP_MODE_INTERRUPT,
|
||||
CRYP_MODE_DMA
|
||||
};
|
||||
|
||||
/**
|
||||
* struct cryp_config -
|
||||
* @keysize: Key size for AES
|
||||
* @algomode: AES modes
|
||||
* @algodir: Cryp Encryption or Decryption
|
||||
*
|
||||
* CRYP configuration structure to be passed to set configuration
|
||||
*/
|
||||
struct cryp_config {
|
||||
int keysize;
|
||||
enum cryp_algo_mode algomode;
|
||||
enum cryp_algorithm_dir algodir;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct cryp_protection_config -
|
||||
* @privilege_access: Privileged cryp state enable/disable
|
||||
* @secure_access: Secure cryp state enable/disable
|
||||
*
|
||||
* Protection configuration structure for setting privilage access
|
||||
*/
|
||||
struct cryp_protection_config {
|
||||
enum cryp_state privilege_access;
|
||||
enum cryp_state secure_access;
|
||||
};
|
||||
|
||||
/* Cryp status */
|
||||
enum cryp_status_id {
|
||||
CRYP_STATUS_BUSY = 0x10,
|
||||
CRYP_STATUS_OUTPUT_FIFO_FULL = 0x08,
|
||||
CRYP_STATUS_OUTPUT_FIFO_NOT_EMPTY = 0x04,
|
||||
CRYP_STATUS_INPUT_FIFO_NOT_FULL = 0x02,
|
||||
CRYP_STATUS_INPUT_FIFO_EMPTY = 0x01
|
||||
};
|
||||
|
||||
/* Cryp DMA interface */
|
||||
#define CRYP_DMA_TX_FIFO 0x08
|
||||
#define CRYP_DMA_RX_FIFO 0x10
|
||||
|
||||
enum cryp_dma_req_type {
|
||||
CRYP_DMA_DISABLE_BOTH,
|
||||
CRYP_DMA_ENABLE_IN_DATA,
|
||||
CRYP_DMA_ENABLE_OUT_DATA,
|
||||
CRYP_DMA_ENABLE_BOTH_DIRECTIONS
|
||||
};
|
||||
|
||||
enum cryp_dma_channel {
|
||||
CRYP_DMA_RX = 0,
|
||||
CRYP_DMA_TX
|
||||
};
|
||||
|
||||
/* Key registers */
|
||||
enum cryp_key_reg_index {
|
||||
CRYP_KEY_REG_1,
|
||||
CRYP_KEY_REG_2,
|
||||
CRYP_KEY_REG_3,
|
||||
CRYP_KEY_REG_4
|
||||
};
|
||||
|
||||
/* Key register left and right */
|
||||
struct cryp_key_value {
|
||||
u32 key_value_left;
|
||||
u32 key_value_right;
|
||||
};
|
||||
|
||||
/* Cryp Initialization structure */
|
||||
enum cryp_init_vector_index {
|
||||
CRYP_INIT_VECTOR_INDEX_0,
|
||||
CRYP_INIT_VECTOR_INDEX_1
|
||||
};
|
||||
|
||||
/* struct cryp_init_vector_value -
|
||||
* @init_value_left
|
||||
* @init_value_right
|
||||
* */
|
||||
struct cryp_init_vector_value {
|
||||
u32 init_value_left;
|
||||
u32 init_value_right;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct cryp_device_context - structure for a cryp context.
|
||||
* @cr: control register
|
||||
* @dmacr: DMA control register
|
||||
* @imsc: Interrupt mask set/clear register
|
||||
* @key_1_l: Key 1l register
|
||||
* @key_1_r: Key 1r register
|
||||
* @key_2_l: Key 2l register
|
||||
* @key_2_r: Key 2r register
|
||||
* @key_3_l: Key 3l register
|
||||
* @key_3_r: Key 3r register
|
||||
* @key_4_l: Key 4l register
|
||||
* @key_4_r: Key 4r register
|
||||
* @init_vect_0_l: Initialization vector 0l register
|
||||
* @init_vect_0_r: Initialization vector 0r register
|
||||
* @init_vect_1_l: Initialization vector 1l register
|
||||
* @init_vect_1_r: Initialization vector 0r register
|
||||
* @din: Data in register
|
||||
* @dout: Data out register
|
||||
*
|
||||
* CRYP power management specifc structure.
|
||||
*/
|
||||
struct cryp_device_context {
|
||||
u32 cr;
|
||||
u32 dmacr;
|
||||
u32 imsc;
|
||||
|
||||
u32 key_1_l;
|
||||
u32 key_1_r;
|
||||
u32 key_2_l;
|
||||
u32 key_2_r;
|
||||
u32 key_3_l;
|
||||
u32 key_3_r;
|
||||
u32 key_4_l;
|
||||
u32 key_4_r;
|
||||
|
||||
u32 init_vect_0_l;
|
||||
u32 init_vect_0_r;
|
||||
u32 init_vect_1_l;
|
||||
u32 init_vect_1_r;
|
||||
|
||||
u32 din;
|
||||
u32 dout;
|
||||
};
|
||||
|
||||
struct cryp_dma {
|
||||
dma_cap_mask_t mask;
|
||||
struct completion cryp_dma_complete;
|
||||
struct dma_chan *chan_cryp2mem;
|
||||
struct dma_chan *chan_mem2cryp;
|
||||
struct stedma40_chan_cfg *cfg_cryp2mem;
|
||||
struct stedma40_chan_cfg *cfg_mem2cryp;
|
||||
int sg_src_len;
|
||||
int sg_dst_len;
|
||||
struct scatterlist *sg_src;
|
||||
struct scatterlist *sg_dst;
|
||||
int nents_src;
|
||||
int nents_dst;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct cryp_device_data - structure for a cryp device.
|
||||
* @base: Pointer to virtual base address of the cryp device.
|
||||
* @phybase: Pointer to physical memory location of the cryp device.
|
||||
* @dev: Pointer to the devices dev structure.
|
||||
* @clk: Pointer to the device's clock control.
|
||||
* @pwr_regulator: Pointer to the device's power control.
|
||||
* @power_status: Current status of the power.
|
||||
* @ctx_lock: Lock for current_ctx.
|
||||
* @current_ctx: Pointer to the currently allocated context.
|
||||
* @list_node: For inclusion into a klist.
|
||||
* @dma: The dma structure holding channel configuration.
|
||||
* @power_state: TRUE = power state on, FALSE = power state off.
|
||||
* @power_state_spinlock: Spinlock for power_state.
|
||||
* @restore_dev_ctx: TRUE = saved ctx, FALSE = no saved ctx.
|
||||
*/
|
||||
struct cryp_device_data {
|
||||
struct cryp_register __iomem *base;
|
||||
phys_addr_t phybase;
|
||||
struct device *dev;
|
||||
struct clk *clk;
|
||||
struct regulator *pwr_regulator;
|
||||
int power_status;
|
||||
struct spinlock ctx_lock;
|
||||
struct cryp_ctx *current_ctx;
|
||||
struct klist_node list_node;
|
||||
struct cryp_dma dma;
|
||||
bool power_state;
|
||||
struct spinlock power_state_spinlock;
|
||||
bool restore_dev_ctx;
|
||||
};
|
||||
|
||||
void cryp_wait_until_done(struct cryp_device_data *device_data);
|
||||
|
||||
/* Initialization functions */
|
||||
|
||||
int cryp_check(struct cryp_device_data *device_data);
|
||||
|
||||
void cryp_activity(struct cryp_device_data *device_data,
|
||||
enum cryp_crypen cryp_crypen);
|
||||
|
||||
void cryp_flush_inoutfifo(struct cryp_device_data *device_data);
|
||||
|
||||
int cryp_set_configuration(struct cryp_device_data *device_data,
|
||||
struct cryp_config *cryp_config,
|
||||
u32 *control_register);
|
||||
|
||||
void cryp_configure_for_dma(struct cryp_device_data *device_data,
|
||||
enum cryp_dma_req_type dma_req);
|
||||
|
||||
int cryp_configure_key_values(struct cryp_device_data *device_data,
|
||||
enum cryp_key_reg_index key_reg_index,
|
||||
struct cryp_key_value key_value);
|
||||
|
||||
int cryp_configure_init_vector(struct cryp_device_data *device_data,
|
||||
enum cryp_init_vector_index
|
||||
init_vector_index,
|
||||
struct cryp_init_vector_value
|
||||
init_vector_value);
|
||||
|
||||
int cryp_configure_protection(struct cryp_device_data *device_data,
|
||||
struct cryp_protection_config *p_protect_config);
|
||||
|
||||
/* Power management funtions */
|
||||
void cryp_save_device_context(struct cryp_device_data *device_data,
|
||||
struct cryp_device_context *ctx,
|
||||
int cryp_mode);
|
||||
|
||||
void cryp_restore_device_context(struct cryp_device_data *device_data,
|
||||
struct cryp_device_context *ctx);
|
||||
|
||||
/* Data transfer and status bits. */
|
||||
int cryp_is_logic_busy(struct cryp_device_data *device_data);
|
||||
|
||||
int cryp_get_status(struct cryp_device_data *device_data);
|
||||
|
||||
/**
|
||||
* cryp_write_indata - This routine writes 32 bit data into the data input
|
||||
* register of the cryptography IP.
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @write_data: Data to write.
|
||||
*/
|
||||
int cryp_write_indata(struct cryp_device_data *device_data, u32 write_data);
|
||||
|
||||
/**
|
||||
* cryp_read_outdata - This routine reads the data from the data output
|
||||
* register of the CRYP logic
|
||||
* @device_data: Pointer to the device data struct for base address.
|
||||
* @read_data: Read the data from the output FIFO.
|
||||
*/
|
||||
int cryp_read_outdata(struct cryp_device_data *device_data, u32 *read_data);
|
||||
|
||||
#endif /* _CRYP_H_ */
|
1816
drivers/crypto/ux500/cryp/cryp_core.c
Normal file
1816
drivers/crypto/ux500/cryp/cryp_core.c
Normal file
File diff suppressed because it is too large
Load diff
45
drivers/crypto/ux500/cryp/cryp_irq.c
Normal file
45
drivers/crypto/ux500/cryp/cryp_irq.c
Normal file
|
@ -0,0 +1,45 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/bitmap.h>
|
||||
#include <linux/device.h>
|
||||
|
||||
#include "cryp.h"
|
||||
#include "cryp_p.h"
|
||||
#include "cryp_irq.h"
|
||||
#include "cryp_irqp.h"
|
||||
|
||||
void cryp_enable_irq_src(struct cryp_device_data *device_data, u32 irq_src)
|
||||
{
|
||||
u32 i;
|
||||
|
||||
dev_dbg(device_data->dev, "[%s]", __func__);
|
||||
|
||||
i = readl_relaxed(&device_data->base->imsc);
|
||||
i = i | irq_src;
|
||||
writel_relaxed(i, &device_data->base->imsc);
|
||||
}
|
||||
|
||||
void cryp_disable_irq_src(struct cryp_device_data *device_data, u32 irq_src)
|
||||
{
|
||||
u32 i;
|
||||
|
||||
dev_dbg(device_data->dev, "[%s]", __func__);
|
||||
|
||||
i = readl_relaxed(&device_data->base->imsc);
|
||||
i = i & ~irq_src;
|
||||
writel_relaxed(i, &device_data->base->imsc);
|
||||
}
|
||||
|
||||
bool cryp_pending_irq_src(struct cryp_device_data *device_data, u32 irq_src)
|
||||
{
|
||||
return (readl_relaxed(&device_data->base->mis) & irq_src) > 0;
|
||||
}
|
31
drivers/crypto/ux500/cryp/cryp_irq.h
Normal file
31
drivers/crypto/ux500/cryp/cryp_irq.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
|
||||
#ifndef _CRYP_IRQ_H_
|
||||
#define _CRYP_IRQ_H_
|
||||
|
||||
#include "cryp.h"
|
||||
|
||||
enum cryp_irq_src_id {
|
||||
CRYP_IRQ_SRC_INPUT_FIFO = 0x1,
|
||||
CRYP_IRQ_SRC_OUTPUT_FIFO = 0x2,
|
||||
CRYP_IRQ_SRC_ALL = 0x3
|
||||
};
|
||||
|
||||
/**
|
||||
* M0 Funtions
|
||||
*/
|
||||
void cryp_enable_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
||||
|
||||
void cryp_disable_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
||||
|
||||
bool cryp_pending_irq_src(struct cryp_device_data *device_data, u32 irq_src);
|
||||
|
||||
#endif /* _CRYP_IRQ_H_ */
|
125
drivers/crypto/ux500/cryp/cryp_irqp.h
Normal file
125
drivers/crypto/ux500/cryp/cryp_irqp.h
Normal file
|
@ -0,0 +1,125 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
|
||||
#ifndef __CRYP_IRQP_H_
|
||||
#define __CRYP_IRQP_H_
|
||||
|
||||
#include "cryp_irq.h"
|
||||
|
||||
/**
|
||||
*
|
||||
* CRYP Registers - Offset mapping
|
||||
* +-----------------+
|
||||
* 00h | CRYP_CR | Configuration register
|
||||
* +-----------------+
|
||||
* 04h | CRYP_SR | Status register
|
||||
* +-----------------+
|
||||
* 08h | CRYP_DIN | Data In register
|
||||
* +-----------------+
|
||||
* 0ch | CRYP_DOUT | Data out register
|
||||
* +-----------------+
|
||||
* 10h | CRYP_DMACR | DMA control register
|
||||
* +-----------------+
|
||||
* 14h | CRYP_IMSC | IMSC
|
||||
* +-----------------+
|
||||
* 18h | CRYP_RIS | Raw interrupt status
|
||||
* +-----------------+
|
||||
* 1ch | CRYP_MIS | Masked interrupt status.
|
||||
* +-----------------+
|
||||
* Key registers
|
||||
* IVR registers
|
||||
* Peripheral
|
||||
* Cell IDs
|
||||
*
|
||||
* Refer data structure for other register map
|
||||
*/
|
||||
|
||||
/**
|
||||
* struct cryp_register
|
||||
* @cr - Configuration register
|
||||
* @status - Status register
|
||||
* @din - Data input register
|
||||
* @din_size - Data input size register
|
||||
* @dout - Data output register
|
||||
* @dout_size - Data output size register
|
||||
* @dmacr - Dma control register
|
||||
* @imsc - Interrupt mask set/clear register
|
||||
* @ris - Raw interrupt status
|
||||
* @mis - Masked interrupt statu register
|
||||
* @key_1_l - Key register 1 L
|
||||
* @key_1_r - Key register 1 R
|
||||
* @key_2_l - Key register 2 L
|
||||
* @key_2_r - Key register 2 R
|
||||
* @key_3_l - Key register 3 L
|
||||
* @key_3_r - Key register 3 R
|
||||
* @key_4_l - Key register 4 L
|
||||
* @key_4_r - Key register 4 R
|
||||
* @init_vect_0_l - init vector 0 L
|
||||
* @init_vect_0_r - init vector 0 R
|
||||
* @init_vect_1_l - init vector 1 L
|
||||
* @init_vect_1_r - init vector 1 R
|
||||
* @cryp_unused1 - unused registers
|
||||
* @itcr - Integration test control register
|
||||
* @itip - Integration test input register
|
||||
* @itop - Integration test output register
|
||||
* @cryp_unused2 - unused registers
|
||||
* @periphId0 - FE0 CRYP Peripheral Identication Register
|
||||
* @periphId1 - FE4
|
||||
* @periphId2 - FE8
|
||||
* @periphId3 - FEC
|
||||
* @pcellId0 - FF0 CRYP PCell Identication Register
|
||||
* @pcellId1 - FF4
|
||||
* @pcellId2 - FF8
|
||||
* @pcellId3 - FFC
|
||||
*/
|
||||
struct cryp_register {
|
||||
u32 cr; /* Configuration register */
|
||||
u32 sr; /* Status register */
|
||||
u32 din; /* Data input register */
|
||||
u32 din_size; /* Data input size register */
|
||||
u32 dout; /* Data output register */
|
||||
u32 dout_size; /* Data output size register */
|
||||
u32 dmacr; /* Dma control register */
|
||||
u32 imsc; /* Interrupt mask set/clear register */
|
||||
u32 ris; /* Raw interrupt status */
|
||||
u32 mis; /* Masked interrupt statu register */
|
||||
|
||||
u32 key_1_l; /*Key register 1 L */
|
||||
u32 key_1_r; /*Key register 1 R */
|
||||
u32 key_2_l; /*Key register 2 L */
|
||||
u32 key_2_r; /*Key register 2 R */
|
||||
u32 key_3_l; /*Key register 3 L */
|
||||
u32 key_3_r; /*Key register 3 R */
|
||||
u32 key_4_l; /*Key register 4 L */
|
||||
u32 key_4_r; /*Key register 4 R */
|
||||
|
||||
u32 init_vect_0_l; /*init vector 0 L */
|
||||
u32 init_vect_0_r; /*init vector 0 R */
|
||||
u32 init_vect_1_l; /*init vector 1 L */
|
||||
u32 init_vect_1_r; /*init vector 1 R */
|
||||
|
||||
u32 cryp_unused1[(0x80 - 0x58) / sizeof(u32)]; /* unused registers */
|
||||
u32 itcr; /*Integration test control register */
|
||||
u32 itip; /*Integration test input register */
|
||||
u32 itop; /*Integration test output register */
|
||||
u32 cryp_unused2[(0xFE0 - 0x8C) / sizeof(u32)]; /* unused registers */
|
||||
|
||||
u32 periphId0; /* FE0 CRYP Peripheral Identication Register */
|
||||
u32 periphId1; /* FE4 */
|
||||
u32 periphId2; /* FE8 */
|
||||
u32 periphId3; /* FEC */
|
||||
|
||||
u32 pcellId0; /* FF0 CRYP PCell Identication Register */
|
||||
u32 pcellId1; /* FF4 */
|
||||
u32 pcellId2; /* FF8 */
|
||||
u32 pcellId3; /* FFC */
|
||||
};
|
||||
|
||||
#endif
|
123
drivers/crypto/ux500/cryp/cryp_p.h
Normal file
123
drivers/crypto/ux500/cryp/cryp_p.h
Normal file
|
@ -0,0 +1,123 @@
|
|||
/**
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen <shujuan.chen@stericsson.com> for ST-Ericsson.
|
||||
* Author: Jonas Linde <jonas.linde@stericsson.com> for ST-Ericsson.
|
||||
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson.
|
||||
* Author: Berne Hebark <berne.herbark@stericsson.com> for ST-Ericsson.
|
||||
* Author: Niklas Hernaeus <niklas.hernaeus@stericsson.com> for ST-Ericsson.
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
|
||||
#ifndef _CRYP_P_H_
|
||||
#define _CRYP_P_H_
|
||||
|
||||
#include <linux/io.h>
|
||||
#include <linux/bitops.h>
|
||||
|
||||
#include "cryp.h"
|
||||
#include "cryp_irqp.h"
|
||||
|
||||
/**
|
||||
* Generic Macros
|
||||
*/
|
||||
#define CRYP_SET_BITS(reg_name, mask) \
|
||||
writel_relaxed((readl_relaxed(reg_name) | mask), reg_name)
|
||||
|
||||
#define CRYP_WRITE_BIT(reg_name, val, mask) \
|
||||
writel_relaxed(((readl_relaxed(reg_name) & ~(mask)) |\
|
||||
((val) & (mask))), reg_name)
|
||||
|
||||
#define CRYP_TEST_BITS(reg_name, val) \
|
||||
(readl_relaxed(reg_name) & (val))
|
||||
|
||||
#define CRYP_PUT_BITS(reg, val, shift, mask) \
|
||||
writel_relaxed(((readl_relaxed(reg) & ~(mask)) | \
|
||||
(((u32)val << shift) & (mask))), reg)
|
||||
|
||||
/**
|
||||
* CRYP specific Macros
|
||||
*/
|
||||
#define CRYP_PERIPHERAL_ID0 0xE3
|
||||
#define CRYP_PERIPHERAL_ID1 0x05
|
||||
|
||||
#define CRYP_PERIPHERAL_ID2_DB8500 0x28
|
||||
#define CRYP_PERIPHERAL_ID3 0x00
|
||||
|
||||
#define CRYP_PCELL_ID0 0x0D
|
||||
#define CRYP_PCELL_ID1 0xF0
|
||||
#define CRYP_PCELL_ID2 0x05
|
||||
#define CRYP_PCELL_ID3 0xB1
|
||||
|
||||
/**
|
||||
* CRYP register default values
|
||||
*/
|
||||
#define MAX_DEVICE_SUPPORT 2
|
||||
|
||||
/* Priv set, keyrden set and datatype 8bits swapped set as default. */
|
||||
#define CRYP_CR_DEFAULT 0x0482
|
||||
#define CRYP_DMACR_DEFAULT 0x0
|
||||
#define CRYP_IMSC_DEFAULT 0x0
|
||||
#define CRYP_DIN_DEFAULT 0x0
|
||||
#define CRYP_DOUT_DEFAULT 0x0
|
||||
#define CRYP_KEY_DEFAULT 0x0
|
||||
#define CRYP_INIT_VECT_DEFAULT 0x0
|
||||
|
||||
/**
|
||||
* CRYP Control register specific mask
|
||||
*/
|
||||
#define CRYP_CR_SECURE_MASK BIT(0)
|
||||
#define CRYP_CR_PRLG_MASK BIT(1)
|
||||
#define CRYP_CR_ALGODIR_MASK BIT(2)
|
||||
#define CRYP_CR_ALGOMODE_MASK (BIT(5) | BIT(4) | BIT(3))
|
||||
#define CRYP_CR_DATATYPE_MASK (BIT(7) | BIT(6))
|
||||
#define CRYP_CR_KEYSIZE_MASK (BIT(9) | BIT(8))
|
||||
#define CRYP_CR_KEYRDEN_MASK BIT(10)
|
||||
#define CRYP_CR_KSE_MASK BIT(11)
|
||||
#define CRYP_CR_START_MASK BIT(12)
|
||||
#define CRYP_CR_INIT_MASK BIT(13)
|
||||
#define CRYP_CR_FFLUSH_MASK BIT(14)
|
||||
#define CRYP_CR_CRYPEN_MASK BIT(15)
|
||||
#define CRYP_CR_CONTEXT_SAVE_MASK (CRYP_CR_SECURE_MASK |\
|
||||
CRYP_CR_PRLG_MASK |\
|
||||
CRYP_CR_ALGODIR_MASK |\
|
||||
CRYP_CR_ALGOMODE_MASK |\
|
||||
CRYP_CR_DATATYPE_MASK |\
|
||||
CRYP_CR_KEYSIZE_MASK |\
|
||||
CRYP_CR_KEYRDEN_MASK |\
|
||||
CRYP_CR_DATATYPE_MASK)
|
||||
|
||||
|
||||
#define CRYP_SR_INFIFO_READY_MASK (BIT(0) | BIT(1))
|
||||
#define CRYP_SR_IFEM_MASK BIT(0)
|
||||
#define CRYP_SR_BUSY_MASK BIT(4)
|
||||
|
||||
/**
|
||||
* Bit position used while setting bits in register
|
||||
*/
|
||||
#define CRYP_CR_PRLG_POS 1
|
||||
#define CRYP_CR_ALGODIR_POS 2
|
||||
#define CRYP_CR_ALGOMODE_POS 3
|
||||
#define CRYP_CR_DATATYPE_POS 6
|
||||
#define CRYP_CR_KEYSIZE_POS 8
|
||||
#define CRYP_CR_KEYRDEN_POS 10
|
||||
#define CRYP_CR_KSE_POS 11
|
||||
#define CRYP_CR_START_POS 12
|
||||
#define CRYP_CR_INIT_POS 13
|
||||
#define CRYP_CR_CRYPEN_POS 15
|
||||
|
||||
#define CRYP_SR_BUSY_POS 4
|
||||
|
||||
/**
|
||||
* CRYP PCRs------PC_NAND control register
|
||||
* BIT_MASK
|
||||
*/
|
||||
#define CRYP_DMA_REQ_MASK (BIT(1) | BIT(0))
|
||||
#define CRYP_DMA_REQ_MASK_POS 0
|
||||
|
||||
|
||||
struct cryp_system_context {
|
||||
/* CRYP Register structure */
|
||||
struct cryp_register *p_cryp_reg[MAX_DEVICE_SUPPORT];
|
||||
};
|
||||
|
||||
#endif
|
11
drivers/crypto/ux500/hash/Makefile
Normal file
11
drivers/crypto/ux500/hash/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
#
|
||||
# Copyright (C) ST-Ericsson SA 2010
|
||||
# Author: Shujuan Chen (shujuan.chen@stericsson.com)
|
||||
# License terms: GNU General Public License (GPL) version 2
|
||||
#
|
||||
ifdef CONFIG_CRYPTO_DEV_UX500_DEBUG
|
||||
CFLAGS_hash_core.o := -DDEBUG -O0
|
||||
endif
|
||||
|
||||
obj-$(CONFIG_CRYPTO_DEV_UX500_HASH) += ux500_hash.o
|
||||
ux500_hash-objs := hash_core.o
|
398
drivers/crypto/ux500/hash/hash_alg.h
Normal file
398
drivers/crypto/ux500/hash/hash_alg.h
Normal file
|
@ -0,0 +1,398 @@
|
|||
/*
|
||||
* Copyright (C) ST-Ericsson SA 2010
|
||||
* Author: Shujuan Chen (shujuan.chen@stericsson.com)
|
||||
* Author: Joakim Bech (joakim.xx.bech@stericsson.com)
|
||||
* Author: Berne Hebark (berne.hebark@stericsson.com))
|
||||
* License terms: GNU General Public License (GPL) version 2
|
||||
*/
|
||||
#ifndef _HASH_ALG_H
|
||||
#define _HASH_ALG_H
|
||||
|
||||
#include <linux/bitops.h>
|
||||
|
||||
#define HASH_BLOCK_SIZE 64
|
||||
#define HASH_DMA_FIFO 4
|
||||
#define HASH_DMA_ALIGN_SIZE 4
|
||||
#define HASH_DMA_PERFORMANCE_MIN_SIZE 1024
|
||||
#define HASH_BYTES_PER_WORD 4
|
||||
|
||||
/* Maximum value of the length's high word */
|
||||
#define HASH_HIGH_WORD_MAX_VAL 0xFFFFFFFFUL
|
||||
|
||||
/* Power on Reset values HASH registers */
|
||||
#define HASH_RESET_CR_VALUE 0x0
|
||||
#define HASH_RESET_STR_VALUE 0x0
|
||||
|
||||
/* Number of context swap registers */
|
||||
#define HASH_CSR_COUNT 52
|
||||
|
||||
#define HASH_RESET_CSRX_REG_VALUE 0x0
|
||||
#define HASH_RESET_CSFULL_REG_VALUE 0x0
|
||||
#define HASH_RESET_CSDATAIN_REG_VALUE 0x0
|
||||
|
||||
#define HASH_RESET_INDEX_VAL 0x0
|
||||
#define HASH_RESET_BIT_INDEX_VAL 0x0
|
||||
#define HASH_RESET_BUFFER_VAL 0x0
|
||||
#define HASH_RESET_LEN_HIGH_VAL 0x0
|
||||
#define HASH_RESET_LEN_LOW_VAL 0x0
|
||||
|
||||
/* Control register bitfields */
|
||||
#define HASH_CR_RESUME_MASK 0x11FCF
|
||||
|
||||
#define HASH_CR_SWITCHON_POS 31
|
||||
#define HASH_CR_SWITCHON_MASK BIT(31)
|
||||
|
||||
#define HASH_CR_EMPTYMSG_POS 20
|
||||
#define HASH_CR_EMPTYMSG_MASK BIT(20)
|
||||
|
||||
#define HASH_CR_DINF_POS 12
|
||||
#define HASH_CR_DINF_MASK BIT(12)
|
||||
|
||||
#define HASH_CR_NBW_POS 8
|
||||
#define HASH_CR_NBW_MASK 0x00000F00UL
|
||||
|
||||
#define HASH_CR_LKEY_POS 16
|
||||
#define HASH_CR_LKEY_MASK BIT(16)
|
||||
|
||||
#define HASH_CR_ALGO_POS 7
|
||||
#define HASH_CR_ALGO_MASK BIT(7)
|
||||
|
||||
#define HASH_CR_MODE_POS 6
|
||||
#define HASH_CR_MODE_MASK BIT(6)
|
||||
|
||||
#define HASH_CR_DATAFORM_POS 4
|
||||
#define HASH_CR_DATAFORM_MASK (BIT(4) | BIT(5))
|
||||
|
||||
#define HASH_CR_DMAE_POS 3
|
||||
#define HASH_CR_DMAE_MASK BIT(3)
|
||||
|
||||
#define HASH_CR_INIT_POS 2
|
||||
#define HASH_CR_INIT_MASK BIT(2)
|
||||
|
||||
#define HASH_CR_PRIVN_POS 1
|
||||
#define HASH_CR_PRIVN_MASK BIT(1)
|
||||
|
||||
#define HASH_CR_SECN_POS 0
|
||||
#define HASH_CR_SECN_MASK BIT(0)
|
||||
|
||||
/* Start register bitfields */
|
||||
#define HASH_STR_DCAL_POS 8
|
||||
#define HASH_STR_DCAL_MASK BIT(8)
|
||||
#define HASH_STR_DEFAULT 0x0
|
||||
|
||||
#define HASH_STR_NBLW_POS 0
|
||||
#define HASH_STR_NBLW_MASK 0x0000001FUL
|
||||
|
||||
#define HASH_NBLW_MAX_VAL 0x1F
|
||||
|
||||
/* PrimeCell IDs */
|
||||
#define HASH_P_ID0 0xE0
|
||||
#define HASH_P_ID1 0x05
|
||||
#define HASH_P_ID2 0x38
|
||||
#define HASH_P_ID3 0x00
|
||||
#define HASH_CELL_ID0 0x0D
|
||||
#define HASH_CELL_ID1 0xF0
|
||||
#define HASH_CELL_ID2 0x05
|
||||
#define HASH_CELL_ID3 0xB1
|
||||
|
||||
#define HASH_SET_BITS(reg_name, mask) \
|
||||
writel_relaxed((readl_relaxed(reg_name) | mask), reg_name)
|
||||
|
||||
#define HASH_CLEAR_BITS(reg_name, mask) \
|
||||
writel_relaxed((readl_relaxed(reg_name) & ~mask), reg_name)
|
||||
|
||||
#define HASH_PUT_BITS(reg, val, shift, mask) \
|
||||
writel_relaxed(((readl(reg) & ~(mask)) | \
|
||||
(((u32)val << shift) & (mask))), reg)
|
||||
|
||||
#define HASH_SET_DIN(val, len) writesl(&device_data->base->din, (val), (len))
|
||||
|
||||
#define HASH_INITIALIZE \
|
||||
HASH_PUT_BITS( \
|
||||
&device_data->base->cr, \
|
||||
0x01, HASH_CR_INIT_POS, \
|
||||
HASH_CR_INIT_MASK)
|
||||
|
||||
#define HASH_SET_DATA_FORMAT(data_format) \
|
||||
HASH_PUT_BITS( \
|
||||
&device_data->base->cr, \
|
||||
(u32) (data_format), HASH_CR_DATAFORM_POS, \
|
||||
HASH_CR_DATAFORM_MASK)
|
||||
#define HASH_SET_NBLW(val) \
|
||||
HASH_PUT_BITS( \
|
||||
&device_data->base->str, \
|
||||
(u32) (val), HASH_STR_NBLW_POS, \
|
||||
HASH_STR_NBLW_MASK)
|
||||
#define HASH_SET_DCAL \
|
||||
HASH_PUT_BITS( \
|
||||
&device_data->base->str, \
|
||||
0x01, HASH_STR_DCAL_POS, \
|
||||
HASH_STR_DCAL_MASK)
|
||||
|
||||
/* Hardware access method */
|
||||
enum hash_mode {
|
||||
HASH_MODE_CPU,
|
||||
HASH_MODE_DMA
|
||||
};
|
||||
|
||||
/**
|
||||
* struct uint64 - Structure to handle 64 bits integers.
|
||||
* @high_word: Most significant bits.
|
||||
* @low_word: Least significant bits.
|
||||
*
|
||||
* Used to handle 64 bits integers.
|
||||
*/
|
||||
struct uint64 {
|
||||
u32 high_word;
|
||||
u32 low_word;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_register - Contains all registers in ux500 hash hardware.
|
||||
* @cr: HASH control register (0x000).
|
||||
* @din: HASH data input register (0x004).
|
||||
* @str: HASH start register (0x008).
|
||||
* @hx: HASH digest register 0..7 (0x00c-0x01C).
|
||||
* @padding0: Reserved (0x02C).
|
||||
* @itcr: Integration test control register (0x080).
|
||||
* @itip: Integration test input register (0x084).
|
||||
* @itop: Integration test output register (0x088).
|
||||
* @padding1: Reserved (0x08C).
|
||||
* @csfull: HASH context full register (0x0F8).
|
||||
* @csdatain: HASH context swap data input register (0x0FC).
|
||||
* @csrx: HASH context swap register 0..51 (0x100-0x1CC).
|
||||
* @padding2: Reserved (0x1D0).
|
||||
* @periphid0: HASH peripheral identification register 0 (0xFE0).
|
||||
* @periphid1: HASH peripheral identification register 1 (0xFE4).
|
||||
* @periphid2: HASH peripheral identification register 2 (0xFE8).
|
||||
* @periphid3: HASH peripheral identification register 3 (0xFEC).
|
||||
* @cellid0: HASH PCell identification register 0 (0xFF0).
|
||||
* @cellid1: HASH PCell identification register 1 (0xFF4).
|
||||
* @cellid2: HASH PCell identification register 2 (0xFF8).
|
||||
* @cellid3: HASH PCell identification register 3 (0xFFC).
|
||||
*
|
||||
* The device communicates to the HASH via 32-bit-wide control registers
|
||||
* accessible via the 32-bit width AMBA rev. 2.0 AHB Bus. Below is a structure
|
||||
* with the registers used.
|
||||
*/
|
||||
struct hash_register {
|
||||
u32 cr;
|
||||
u32 din;
|
||||
u32 str;
|
||||
u32 hx[8];
|
||||
|
||||
u32 padding0[(0x080 - 0x02C) / sizeof(u32)];
|
||||
|
||||
u32 itcr;
|
||||
u32 itip;
|
||||
u32 itop;
|
||||
|
||||
u32 padding1[(0x0F8 - 0x08C) / sizeof(u32)];
|
||||
|
||||
u32 csfull;
|
||||
u32 csdatain;
|
||||
u32 csrx[HASH_CSR_COUNT];
|
||||
|
||||
u32 padding2[(0xFE0 - 0x1D0) / sizeof(u32)];
|
||||
|
||||
u32 periphid0;
|
||||
u32 periphid1;
|
||||
u32 periphid2;
|
||||
u32 periphid3;
|
||||
|
||||
u32 cellid0;
|
||||
u32 cellid1;
|
||||
u32 cellid2;
|
||||
u32 cellid3;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_state - Hash context state.
|
||||
* @temp_cr: Temporary HASH Control Register.
|
||||
* @str_reg: HASH Start Register.
|
||||
* @din_reg: HASH Data Input Register.
|
||||
* @csr[52]: HASH Context Swap Registers 0-39.
|
||||
* @csfull: HASH Context Swap Registers 40 ie Status flags.
|
||||
* @csdatain: HASH Context Swap Registers 41 ie Input data.
|
||||
* @buffer: Working buffer for messages going to the hardware.
|
||||
* @length: Length of the part of message hashed so far (floor(N/64) * 64).
|
||||
* @index: Valid number of bytes in buffer (N % 64).
|
||||
* @bit_index: Valid number of bits in buffer (N % 8).
|
||||
*
|
||||
* This structure is used between context switches, i.e. when ongoing jobs are
|
||||
* interupted with new jobs. When this happens we need to store intermediate
|
||||
* results in software.
|
||||
*
|
||||
* WARNING: "index" is the member of the structure, to be sure that "buffer"
|
||||
* is aligned on a 4-bytes boundary. This is highly implementation dependent
|
||||
* and MUST be checked whenever this code is ported on new platforms.
|
||||
*/
|
||||
struct hash_state {
|
||||
u32 temp_cr;
|
||||
u32 str_reg;
|
||||
u32 din_reg;
|
||||
u32 csr[52];
|
||||
u32 csfull;
|
||||
u32 csdatain;
|
||||
u32 buffer[HASH_BLOCK_SIZE / sizeof(u32)];
|
||||
struct uint64 length;
|
||||
u8 index;
|
||||
u8 bit_index;
|
||||
};
|
||||
|
||||
/**
|
||||
* enum hash_device_id - HASH device ID.
|
||||
* @HASH_DEVICE_ID_0: Hash hardware with ID 0
|
||||
* @HASH_DEVICE_ID_1: Hash hardware with ID 1
|
||||
*/
|
||||
enum hash_device_id {
|
||||
HASH_DEVICE_ID_0 = 0,
|
||||
HASH_DEVICE_ID_1 = 1
|
||||
};
|
||||
|
||||
/**
|
||||
* enum hash_data_format - HASH data format.
|
||||
* @HASH_DATA_32_BITS: 32 bits data format
|
||||
* @HASH_DATA_16_BITS: 16 bits data format
|
||||
* @HASH_DATA_8_BITS: 8 bits data format.
|
||||
* @HASH_DATA_1_BITS: 1 bit data format.
|
||||
*/
|
||||
enum hash_data_format {
|
||||
HASH_DATA_32_BITS = 0x0,
|
||||
HASH_DATA_16_BITS = 0x1,
|
||||
HASH_DATA_8_BITS = 0x2,
|
||||
HASH_DATA_1_BIT = 0x3
|
||||
};
|
||||
|
||||
/**
|
||||
* enum hash_algo - Enumeration for selecting between SHA1 or SHA2 algorithm.
|
||||
* @HASH_ALGO_SHA1: Indicates that SHA1 is used.
|
||||
* @HASH_ALGO_SHA2: Indicates that SHA2 (SHA256) is used.
|
||||
*/
|
||||
enum hash_algo {
|
||||
HASH_ALGO_SHA1 = 0x0,
|
||||
HASH_ALGO_SHA256 = 0x1
|
||||
};
|
||||
|
||||
/**
|
||||
* enum hash_op - Enumeration for selecting between HASH or HMAC mode.
|
||||
* @HASH_OPER_MODE_HASH: Indicates usage of normal HASH mode.
|
||||
* @HASH_OPER_MODE_HMAC: Indicates usage of HMAC.
|
||||
*/
|
||||
enum hash_op {
|
||||
HASH_OPER_MODE_HASH = 0x0,
|
||||
HASH_OPER_MODE_HMAC = 0x1
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_config - Configuration data for the hardware.
|
||||
* @data_format: Format of data entered into the hash data in register.
|
||||
* @algorithm: Algorithm selection bit.
|
||||
* @oper_mode: Operating mode selection bit.
|
||||
*/
|
||||
struct hash_config {
|
||||
int data_format;
|
||||
int algorithm;
|
||||
int oper_mode;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_dma - Structure used for dma.
|
||||
* @mask: DMA capabilities bitmap mask.
|
||||
* @complete: Used to maintain state for a "completion".
|
||||
* @chan_mem2hash: DMA channel.
|
||||
* @cfg_mem2hash: DMA channel configuration.
|
||||
* @sg_len: Scatterlist length.
|
||||
* @sg: Scatterlist.
|
||||
* @nents: Number of sg entries.
|
||||
*/
|
||||
struct hash_dma {
|
||||
dma_cap_mask_t mask;
|
||||
struct completion complete;
|
||||
struct dma_chan *chan_mem2hash;
|
||||
void *cfg_mem2hash;
|
||||
int sg_len;
|
||||
struct scatterlist *sg;
|
||||
int nents;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_ctx - The context used for hash calculations.
|
||||
* @key: The key used in the operation.
|
||||
* @keylen: The length of the key.
|
||||
* @state: The state of the current calculations.
|
||||
* @config: The current configuration.
|
||||
* @digestsize: The size of current digest.
|
||||
* @device: Pointer to the device structure.
|
||||
*/
|
||||
struct hash_ctx {
|
||||
u8 *key;
|
||||
u32 keylen;
|
||||
struct hash_config config;
|
||||
int digestsize;
|
||||
struct hash_device_data *device;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_ctx - The request context used for hash calculations.
|
||||
* @state: The state of the current calculations.
|
||||
* @dma_mode: Used in special cases (workaround), e.g. need to change to
|
||||
* cpu mode, if not supported/working in dma mode.
|
||||
* @updated: Indicates if hardware is initialized for new operations.
|
||||
*/
|
||||
struct hash_req_ctx {
|
||||
struct hash_state state;
|
||||
bool dma_mode;
|
||||
u8 updated;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct hash_device_data - structure for a hash device.
|
||||
* @base: Pointer to virtual base address of the hash device.
|
||||
* @phybase: Pointer to physical memory location of the hash device.
|
||||
* @list_node: For inclusion in klist.
|
||||
* @dev: Pointer to the device dev structure.
|
||||
* @ctx_lock: Spinlock for current_ctx.
|
||||
* @current_ctx: Pointer to the currently allocated context.
|
||||
* @power_state: TRUE = power state on, FALSE = power state off.
|
||||
* @power_state_lock: Spinlock for power_state.
|
||||
* @regulator: Pointer to the device's power control.
|
||||
* @clk: Pointer to the device's clock control.
|
||||
* @restore_dev_state: TRUE = saved state, FALSE = no saved state.
|
||||
* @dma: Structure used for dma.
|
||||
*/
|
||||
struct hash_device_data {
|
||||
struct hash_register __iomem *base;
|
||||
phys_addr_t phybase;
|
||||
struct klist_node list_node;
|
||||
struct device *dev;
|
||||
struct spinlock ctx_lock;
|
||||
struct hash_ctx *current_ctx;
|
||||
bool power_state;
|
||||
struct spinlock power_state_lock;
|
||||
struct regulator *regulator;
|
||||
struct clk *clk;
|
||||
bool restore_dev_state;
|
||||
struct hash_state state; /* Used for saving and resuming state */
|
||||
struct hash_dma dma;
|
||||
};
|
||||
|
||||
int hash_check_hw(struct hash_device_data *device_data);
|
||||
|
||||
int hash_setconfiguration(struct hash_device_data *device_data,
|
||||
struct hash_config *config);
|
||||
|
||||
void hash_begin(struct hash_device_data *device_data, struct hash_ctx *ctx);
|
||||
|
||||
void hash_get_digest(struct hash_device_data *device_data,
|
||||
u8 *digest, int algorithm);
|
||||
|
||||
int hash_hw_update(struct ahash_request *req);
|
||||
|
||||
int hash_save_state(struct hash_device_data *device_data,
|
||||
struct hash_state *state);
|
||||
|
||||
int hash_resume_state(struct hash_device_data *device_data,
|
||||
const struct hash_state *state);
|
||||
|
||||
#endif
|
2001
drivers/crypto/ux500/hash/hash_core.c
Normal file
2001
drivers/crypto/ux500/hash/hash_core.c
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue