project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2022 Rockchip Electronics Co. Ltd.
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include "rkcrypto_common.h"
|
|
#include "rkcrypto_core.h"
|
|
#include "rkcrypto_mem.h"
|
|
|
|
#define BLOCK_SIZE 512 * 1024
|
|
#define MAX_COUNT 1024
|
|
|
|
int test_crypto_mem(void)
|
|
{
|
|
int32_t count;
|
|
rk_crypto_mem *mem[MAX_COUNT];
|
|
|
|
if (rk_crypto_init()) {
|
|
printf("rk_crypto_init error!\n");
|
|
return -1;
|
|
}
|
|
|
|
for (count = 0; count < MAX_COUNT; count ++) {
|
|
mem[count] = rk_crypto_mem_alloc(BLOCK_SIZE);
|
|
if (!mem[count]) {
|
|
usleep(300); // wait for kernel log print to avoid confusion
|
|
printf("Crypto mem alloc: maximum size is [%d KB * %d].\n",
|
|
(BLOCK_SIZE / 1024), count);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (count == MAX_COUNT) {
|
|
printf("Crypto mem alloc: successfully alloc [%d KB * %d] size.\n",
|
|
(BLOCK_SIZE / 1024), count);
|
|
printf("You and can alloc for more. Change '#define MAX_COUNT' to test larger size.\n");
|
|
}
|
|
|
|
for (count = count - 1; count >= 0; count --) {
|
|
rk_crypto_mem_free(mem[count]);
|
|
}
|
|
|
|
rk_crypto_deinit();
|
|
|
|
return 0;
|
|
}
|