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>
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) Rockchip Electronics Co.Ltd
|
|
* Author: Felix Zeng <felix.zeng@rock-chips.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_RKNPU_MEM_H
|
|
#define __LINUX_RKNPU_MEM_H
|
|
|
|
#include <linux/mm_types.h>
|
|
#include <linux/version.h>
|
|
|
|
/*
|
|
* rknpu DMA buffer structure.
|
|
*
|
|
* @flags: indicate memory type to allocated buffer and cache attribute.
|
|
* @size: size requested from user, in bytes and this size is aligned
|
|
* in page unit.
|
|
* @kv_addr: kernel virtual address to allocated memory region.
|
|
* @dma_addr: bus address(accessed by dma) to allocated memory region.
|
|
* - this address could be physical address without IOMMU and
|
|
* device address with IOMMU.
|
|
* @pages: Array of backing pages.
|
|
* @sgt: Imported sg_table.
|
|
* @dmabuf: buffer for this attachment.
|
|
* @owner: Is this memory internally allocated.
|
|
*/
|
|
struct rknpu_mem_object {
|
|
unsigned long flags;
|
|
unsigned long size;
|
|
void __iomem *kv_addr;
|
|
dma_addr_t dma_addr;
|
|
struct page **pages;
|
|
struct sg_table *sgt;
|
|
struct dma_buf *dmabuf;
|
|
struct list_head head;
|
|
unsigned int owner;
|
|
};
|
|
|
|
int rknpu_mem_create_ioctl(struct rknpu_device *rknpu_dev, unsigned long data,
|
|
struct file *file);
|
|
int rknpu_mem_destroy_ioctl(struct rknpu_device *rknpu_dev, unsigned long data,
|
|
struct file *file);
|
|
int rknpu_mem_sync_ioctl(struct rknpu_device *rknpu_dev, unsigned long data);
|
|
|
|
#endif
|