Files
kernel_common_drivers/drivers/media/common/ion_dev/dev_ion.h
T
Yongjie Zhu 78e99bfc22 ion: move ion.h to include [1/1]
PD#SWPL-78227

Problem:
drm driver need use ion function

Solution:
move ion.h to common_driver/include

Verify:
s4d

Change-Id: I06b800c9394a3337c7e44363768687ed917110f2
Signed-off-by: Yongjie Zhu <yongjie.zhu@amlogic.com>
2022-05-29 19:28:59 -07:00

62 lines
1.5 KiB
C

/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#ifndef __LINUX_AMLOGIC_ION_H__
#define __LINUX_AMLOGIC_ION_H__
#include <linux/types.h>
#include <linux/amlogic/ion.h>
/**
* CUSTOM IOCTL - CMD
*/
#define DION_ERROR(fmt, args ...) pr_err("ion_dev: " fmt, ## args)
#define DION_INFO(fmt, args ...) pr_info("ion_dev: " fmt, ## args)
#define DION_DEBUG(fmt, args ...) pr_debug("ion_dev: " fmt, ## args)
#define ION_IOC_MESON_PHYS_ADDR 8
#define ION_FLAG_EXTEND_MESON_HEAP_SECURE BIT(29)
#define ION_FLAG_EXTEND_MESON_HEAP BIT(30)
#define ION_FLAG_EXTEND_PROTECTED BIT(31)
#define SECURE_MEM_DELAY_PROTECT 1
struct ion_cma_heap {
struct ion_heap heap;
struct cma *cma;
bool is_added;
unsigned long max_can_alloc_size;
unsigned long alloced_size;
/* protect size account */
struct mutex mutex;
};
struct meson_phys_data {
int handle;
unsigned int phys_addr;
unsigned int size;
};
/**
* meson_ion_share_fd_to_phys -
* associate with a fd
* @fd: passed from the user space
* @addr point to the physical address
* @size point to the size of this ion buffer
*/
int meson_ion_share_fd_to_phys(int fd, phys_addr_t *addr, size_t *len);
void meson_ion_buffer_to_phys(struct ion_buffer *buffer,
phys_addr_t *addr, size_t *len);
unsigned int meson_ion_codecmm_heap_id_get(void);
unsigned int meson_ion_cma_heap_id_get(void);
unsigned int meson_ion_fb_heap_id_get(void);
extern struct ion_heap_ops codec_mm_heap_ops;
extern struct ion_heap_ops ion_cma_ops;
#endif