mirror of https://github.com/wolfSSL/wolfBoot.git
76 lines
1.9 KiB
C
76 lines
1.9 KiB
C
/* client.h
|
|
*
|
|
* Minimal PSA client definitions for wolfBoot Zephyr integration.
|
|
*
|
|
* Copyright (C) 2026 wolfSSL Inc.
|
|
*
|
|
* This file is part of wolfBoot.
|
|
*
|
|
* wolfBoot 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* wolfBoot 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
|
|
*/
|
|
|
|
#ifndef WOLFBOOT_PSA_CLIENT_H_
|
|
#define WOLFBOOT_PSA_CLIENT_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include "psa/error.h"
|
|
|
|
#ifndef __PSA_CLIENT_H__
|
|
#define __PSA_CLIENT_H__
|
|
#endif
|
|
|
|
typedef int32_t psa_handle_t;
|
|
typedef uint32_t rot_size_t;
|
|
|
|
#ifndef ROT_SIZE_MAX
|
|
#define ROT_SIZE_MAX UINT32_MAX
|
|
#endif
|
|
|
|
typedef struct psa_invec {
|
|
const void *base;
|
|
size_t len;
|
|
} psa_invec;
|
|
|
|
typedef struct psa_outvec {
|
|
void *base;
|
|
size_t len;
|
|
} psa_outvec;
|
|
|
|
#ifndef PSA_IPC_CALL
|
|
#define PSA_IPC_CALL ((int32_t)1)
|
|
#endif
|
|
|
|
#ifndef PSA_CALL_TYPE_MIN
|
|
#define PSA_CALL_TYPE_MIN (PSA_IPC_CALL)
|
|
#endif
|
|
#ifndef PSA_CALL_TYPE_MAX
|
|
#define PSA_CALL_TYPE_MAX (PSA_IPC_CALL)
|
|
#endif
|
|
|
|
#ifndef PSA_MAX_IOVEC
|
|
#define PSA_MAX_IOVEC 4
|
|
#endif
|
|
|
|
#define IOVEC_LEN(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
psa_handle_t psa_connect(uint32_t sid, uint32_t version);
|
|
void psa_close(psa_handle_t handle);
|
|
psa_status_t psa_call(psa_handle_t handle, int32_t type,
|
|
const psa_invec *in_vec, size_t in_len,
|
|
psa_outvec *out_vec, size_t out_len);
|
|
|
|
#endif /* WOLFBOOT_PSA_CLIENT_H_ */
|