mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-02 18:06:13 +02:00

Fix segmentation fault when run pxp lib unit test on iMX8ULP platform Signed-off-by: Guoniu.zhou <guoniu.zhou@nxp.com> Reviewed-by : Robby.Cai <robby.cai@nxp.com>
67 lines
1.1 KiB
C
67 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2013-2014 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
*
|
|
* Copyright 2019 NXP
|
|
*/
|
|
#ifndef _PXP_DEVICE
|
|
#define _PXP_DEVICE
|
|
|
|
#include <linux/idr.h>
|
|
#include <linux/hash.h>
|
|
#include <uapi/linux/pxp_device.h>
|
|
|
|
struct pxp_irq_info {
|
|
wait_queue_head_t waitq;
|
|
atomic_t irq_pending;
|
|
int hist_status;
|
|
};
|
|
|
|
struct pxp_buffer_hash {
|
|
struct hlist_head *hash_table;
|
|
u32 order;
|
|
spinlock_t hash_lock;
|
|
};
|
|
|
|
struct pxp_buf_obj {
|
|
uint32_t handle;
|
|
|
|
uint32_t size;
|
|
uint32_t mem_type;
|
|
|
|
unsigned long offset;
|
|
void *virtual;
|
|
unsigned long attrs;
|
|
|
|
struct hlist_node item;
|
|
|
|
struct sg_table *sgt_base;
|
|
/* DMABUF related */
|
|
struct dma_buf_attachment *db_attach;
|
|
};
|
|
|
|
struct pxp_chan_obj {
|
|
uint32_t handle;
|
|
struct dma_chan *chan;
|
|
};
|
|
|
|
/* File private data */
|
|
struct pxp_file {
|
|
struct file *filp;
|
|
|
|
/* record allocated dma buffer */
|
|
struct idr buffer_idr;
|
|
spinlock_t buffer_lock;
|
|
|
|
/* record allocated dma channel */
|
|
struct idr channel_idr;
|
|
spinlock_t channel_lock;
|
|
};
|
|
|
|
struct pxp_attachment {
|
|
struct sg_table sgt;
|
|
enum dma_data_direction dma_dir;
|
|
};
|
|
|
|
#endif
|