Newer
Older
mbed-os / features / FEATURE_EXPERIMENTAL_API / FEATURE_PSA / TARGET_MBED_PSA_SRV / val / val_protected_storage.c
@Devaraj Ranganna Devaraj Ranganna on 18 Jun 2020 1 KB psa: Replace Mbed PSA with TF-M
/** @file
 * Copyright (c) 2019, Arm Limited or its affiliates. All rights reserved.
 * SPDX-License-Identifier : Apache-2.0
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
**/

#include "val_target.h"
#include "pal_interfaces_ns.h"
#include "val_framework.h"
#include "val_client_defs.h"
#include "val_protected_storage.h"

/**
    @brief    - This API will call the requested protected storage function
    @param    - type : function code
                ...  : variable number of arguments
    @return   - Error status
**/
uint32_t val_ps_function(int type, ...)
{
    va_list      valist;
    uint32_t status;

    va_start(valist, type);
    status = pal_ps_function(type, valist);
    va_end(valist);
    return status;
}