mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
amlogic: sha_dma: Move register mappings to platform header
The registers location for the SHA DMA driver is not unique for the different platforms. Move the mapping out of the driver and into the platform-specific header. Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Ice64637844a3cb384b01e466cb8c1cea5f764129
This commit is contained in:
parent
ed01e0c407
commit
26d9439353
3 changed files with 9 additions and 4 deletions
|
@ -9,10 +9,7 @@
|
|||
#include <crypto/sha_dma.h>
|
||||
#include <lib/mmio.h>
|
||||
|
||||
#define AML_SHA_DMA_BASE 0xc883e000
|
||||
|
||||
#define AML_SHA_DMA_DESC (AML_SHA_DMA_BASE + 0x08)
|
||||
#define AML_SHA_DMA_STATUS (AML_SHA_DMA_BASE + 0x18)
|
||||
#include "aml_private.h"
|
||||
|
||||
#define ASD_MODE_SHA224 0x7
|
||||
#define ASD_MODE_SHA256 0x6
|
||||
|
|
|
@ -95,6 +95,10 @@
|
|||
#define AML_HIU_MAILBOX_STAT_3 UL(0xDA83C42C)
|
||||
#define AML_HIU_MAILBOX_CLR_3 UL(0xDA83C430)
|
||||
|
||||
#define AML_SHA_DMA_BASE UL(0xC883E000)
|
||||
#define AML_SHA_DMA_DESC (AML_SHA_DMA_BASE + 0x08)
|
||||
#define AML_SHA_DMA_STATUS (AML_SHA_DMA_BASE + 0x18)
|
||||
|
||||
/*******************************************************************************
|
||||
* System Monitor Call IDs and arguments
|
||||
******************************************************************************/
|
||||
|
|
|
@ -105,6 +105,10 @@
|
|||
#define AML_HIU_MAILBOX_STAT_3 UL(0xDA83C42C)
|
||||
#define AML_HIU_MAILBOX_CLR_3 UL(0xDA83C430)
|
||||
|
||||
#define AML_SHA_DMA_BASE UL(0xC883E000)
|
||||
#define AML_SHA_DMA_DESC (AML_SHA_DMA_BASE + 0x08)
|
||||
#define AML_SHA_DMA_STATUS (AML_SHA_DMA_BASE + 0x18)
|
||||
|
||||
/*******************************************************************************
|
||||
* System Monitor Call IDs and arguments
|
||||
******************************************************************************/
|
||||
|
|
Loading…
Add table
Reference in a new issue