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>
99 lines
2.3 KiB
C
99 lines
2.3 KiB
C
/*
|
|
* Copyright (c) 2023 Rockchip Electronics Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __RPMSG_CMD_H__
|
|
#define __RPMSG_CMD_H__
|
|
|
|
#include "rtconfig.h"
|
|
#ifdef RT_USING_RPMSG_CMD
|
|
|
|
#include <rtdevice.h>
|
|
#include "hal_base.h"
|
|
#include "rpmsg_lite.h"
|
|
#include "rpmsg_queue.h"
|
|
#include "rpmsg_base.h"
|
|
|
|
/* RPMsg cmd callback */
|
|
struct rpmsg_cmd_table_t
|
|
{
|
|
uint32_t cmd;
|
|
void (*callback)(void *param);
|
|
};
|
|
|
|
/* RPMsg cmd handle */
|
|
struct rpmsg_ept_handle_t
|
|
{
|
|
uint32_t master_id;
|
|
uint32_t remote_id;
|
|
|
|
struct rpmsg_lite_instance *instance;
|
|
struct rpmsg_lite_endpoint *ept;
|
|
uint32_t endpoint;
|
|
|
|
uint32_t cmd_counter;
|
|
struct rpmsg_cmd_table_t *cmd_table;
|
|
|
|
rt_thread_t thread;
|
|
struct rt_messagequeue *mq;
|
|
};
|
|
|
|
/* RPMSG cmd head format */
|
|
struct rpmsg_cmd_head_t
|
|
{
|
|
uint32_t type;
|
|
uint32_t cmd;
|
|
void *priv;
|
|
void *addr;
|
|
};
|
|
|
|
/* RPMSG cmd data format */
|
|
struct rpmsg_cmd_data_t
|
|
{
|
|
struct rpmsg_cmd_head_t head;
|
|
struct rpmsg_ept_handle_t *handle;
|
|
uint32_t endpoint;
|
|
};
|
|
|
|
/* RPMsg mq max count */
|
|
#define RPMSG_MQ_MAX 32UL
|
|
|
|
/* RPMsg cmd type define */
|
|
#define RPMSG_TYPE_DIRECT 1UL
|
|
#define RPMSG_TYPE_URGENT 2UL
|
|
#define RPMSG_TYPE_NORMAL 3UL
|
|
|
|
/* RPMsg cmd define */
|
|
#define RPMSG_CMD2ACK(val) (val | 0x01UL) /* CMD covert to ACK */
|
|
#define RPMSG_ACK2CMD(val) (val & (~0x01UL)) /* ACK covert to CMD */
|
|
|
|
#define RPMSG_CMD_GET_CPU_USAGE ((1UL << 1) + 0)
|
|
#define RPMSG_ACK_GET_CPU_USAGE ((1UL << 1) + 1)
|
|
#define RPMSG_CMD_GET_ECN_USAGE ((2UL << 1) + 0)
|
|
#define RPMSG_ACK_GET_ECN_USAGE ((2UL << 1) + 1)
|
|
|
|
/* RPMsg Common API Functions */
|
|
void rpmsg_cmd_ept_init(struct rpmsg_ept_handle_t *handle,
|
|
uint32_t master_id, uint32_t remote_id, uint32_t endpoint,
|
|
struct rpmsg_cmd_table_t *cmd_table, uint32_t cmd_counter,
|
|
uint32_t stack_size, uint32_t priority);
|
|
|
|
void rpmsg_cmd_ept_thread_init(struct rpmsg_ept_handle_t *handle,
|
|
uint32_t stack_size, uint32_t priority);
|
|
|
|
rt_err_t rpmsg_cmd_send(struct rpmsg_cmd_data_t *p_rpmsg_data, uint32_t timeout);
|
|
|
|
/* RPMsg Command Functions */
|
|
#if defined(PRIMARY_CPU) /*CPU1*/
|
|
void rpmsg_cmd_cpuusage(void *param);
|
|
#endif
|
|
|
|
/* RPMsg Command Callback Functions */
|
|
void rpmsg_cmd_cpuusage_callback(void *param);
|
|
|
|
#endif //RT_USING_RPMSG_LITE
|
|
|
|
#endif //__RPMSG_CMD_H__
|