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>
80 lines
2.2 KiB
C
80 lines
2.2 KiB
C
/**
|
|
******************************************************************************
|
|
*
|
|
* @file ipc_host.h
|
|
*
|
|
* @brief IPC module.
|
|
*
|
|
* Copyright (C) BouffaloLab 2017-2018
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
#ifndef _IPC_HOST_H_
|
|
#define _IPC_HOST_H_
|
|
|
|
/*
|
|
* INCLUDE FILES
|
|
******************************************************************************
|
|
*/
|
|
#include "ipc_shared.h"
|
|
#ifndef __KERNEL__
|
|
#include "arch.h"
|
|
#else
|
|
#include "ipc_compat.h"
|
|
#endif
|
|
|
|
// #include "fmac_txq.h"
|
|
#include "hal_desc.h"
|
|
|
|
/**
|
|
******************************************************************************
|
|
* @brief This structure is used to initialize the MAC SW
|
|
*
|
|
* The WLAN device driver provides functions call-back with this structure
|
|
******************************************************************************
|
|
*/
|
|
struct ipc_host_cb_tag
|
|
{
|
|
/// WLAN driver call-back function: recv_msg_ind
|
|
uint8_t (*recv_msg_ind)(void *pthis, void *host_id);
|
|
|
|
/// WLAN driver call-back function: recv_msgack_ind
|
|
uint8_t (*recv_msgack_ind)(void *pthis, void *host_id);
|
|
};
|
|
|
|
/// Definition of the IPC Host environment structure.
|
|
struct ipc_host_env_tag
|
|
{
|
|
/// Structure containing the callback pointers
|
|
struct ipc_host_cb_tag cb;
|
|
|
|
/// E2A ACKs of A2E MSGs
|
|
uint8_t msga2e_cnt;
|
|
void *msga2e_hostid;
|
|
|
|
/// Pointer to the attached object (used in callbacks and register accesses)
|
|
void *pthis;
|
|
};
|
|
|
|
/**
|
|
******************************************************************************
|
|
* @brief Initialize the IPC running on the Application CPU.
|
|
*
|
|
* This function:
|
|
* - initializes the IPC software environments
|
|
* - enables the interrupts in the IPC block
|
|
*
|
|
* @param[in] env Pointer to the IPC host environment
|
|
*
|
|
* @warning Since this function resets the IPC Shared memory, it must be called
|
|
* before the LMAC FW is launched because LMAC sets some init values in IPC
|
|
* Shared memory at boot.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
void ssv_ipc_host_init(struct ipc_host_env_tag *env,
|
|
struct ipc_host_cb_tag *cb,
|
|
void *pthis);
|
|
|
|
#endif // _IPC_HOST_H_
|
|
|