forked from wolfSSL/wolfssl
add missing header file
This commit is contained in:
84
wolfssl/wolfcrypt/port/caam/wolfcaam_qnx.h
Normal file
84
wolfssl/wolfcrypt/port/caam/wolfcaam_qnx.h
Normal file
@ -0,0 +1,84 @@
|
||||
/* wolfcaam_qnx.h
|
||||
*
|
||||
* Copyright (C) 2006-2020 wolfSSL Inc.
|
||||
*
|
||||
* This file is part of wolfSSL.
|
||||
*
|
||||
* wolfSSL is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* wolfSSL 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
||||
*/
|
||||
|
||||
|
||||
/* This file is for interacting with the driver code */
|
||||
#ifndef WOLFCAAM_QNX_H
|
||||
#define WOLFCAAM_QNX_H
|
||||
|
||||
#include <wolfssl/wolfcrypt/settings.h>
|
||||
|
||||
#ifdef WOLFSSL_QNX_CAAM
|
||||
#include <sys/iofunc.h>
|
||||
#include <sys/neutrino.h>
|
||||
|
||||
#define Error int
|
||||
#define Value int
|
||||
#define Boolean int
|
||||
#define Success 1
|
||||
#define Failure 0
|
||||
#define INTERRUPT_Panic()
|
||||
#define MemoryMapMayNotBeEmpty -1
|
||||
#define CAAM_WAITING -2
|
||||
#define NoActivityReady -1
|
||||
#define MemoryOperationNotPerformed -1
|
||||
|
||||
#define CAAM_ADDRESS unsigned int
|
||||
#ifndef WOLFSSL_CAAM_BUFFER
|
||||
#define WOLFSSL_CAAM_BUFFER
|
||||
typedef struct CAAM_BUFFER {
|
||||
int BufferType;
|
||||
CAAM_ADDRESS TheAddress;
|
||||
int Length;
|
||||
} CAAM_BUFFER;
|
||||
#endif
|
||||
|
||||
|
||||
/* IMX6UL */
|
||||
#define CAAM_BASE 0x02140000
|
||||
#define CAAM_PAGE 0x00100000
|
||||
|
||||
#define DataBuffer 0
|
||||
#define LastBuffer 0
|
||||
#define Success 1
|
||||
|
||||
/* unique devId for CAAM use on crypto callbacks */
|
||||
#define WOLFSSL_CAAM_DEVID 7
|
||||
|
||||
#include <wolfssl/wolfcrypt/port/caam/wolfcaam_ecdsa.h>
|
||||
#include <wolfssl/wolfcrypt/port/caam/wolfcaam_cmac.h>
|
||||
#include <wolfssl/wolfcrypt/cryptocb.h>
|
||||
|
||||
#define ResourceNotAvailable -3
|
||||
#define CAAM_WAITING -2
|
||||
|
||||
WOLFSSL_LOCAL int SynchronousSendRequest(int type, unsigned int args[4],
|
||||
CAAM_BUFFER *buf, int sz);
|
||||
WOLFSSL_LOCAL int wc_CAAMInitInterface(void);
|
||||
WOLFSSL_LOCAL void wc_CAAMFreeInterface(void);
|
||||
|
||||
#define CAAM_SEND_REQUEST(type, sz, arg, buf) \
|
||||
SynchronousSendRequest((type), (arg), (buf), (sz))
|
||||
#define CAAM_INIT_INTERFACE wc_CAAMInitInterface
|
||||
#define CAAM_FREE_INTERFACE wc_CAAMFreeInterface
|
||||
#endif
|
||||
|
||||
#endif /* WOLFCAAM_QNX_H */
|
Reference in New Issue
Block a user