mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2016 Pengutronix
|
|
*/
|
|
|
|
#ifndef IMX_VDOA_H
|
|
#define IMX_VDOA_H
|
|
|
|
struct vdoa_data;
|
|
struct vdoa_ctx;
|
|
|
|
#if (defined CONFIG_VIDEO_IMX_VDOA || defined CONFIG_VIDEO_IMX_VDOA_MODULE)
|
|
|
|
struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa);
|
|
int vdoa_context_configure(struct vdoa_ctx *ctx,
|
|
unsigned int width, unsigned int height,
|
|
u32 pixelformat);
|
|
void vdoa_context_destroy(struct vdoa_ctx *ctx);
|
|
|
|
void vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src);
|
|
int vdoa_wait_for_completion(struct vdoa_ctx *ctx);
|
|
|
|
#else
|
|
|
|
static inline struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline int vdoa_context_configure(struct vdoa_ctx *ctx,
|
|
unsigned int width,
|
|
unsigned int height,
|
|
u32 pixelformat)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void vdoa_context_destroy(struct vdoa_ctx *ctx) { };
|
|
|
|
static inline void vdoa_device_run(struct vdoa_ctx *ctx,
|
|
dma_addr_t dst, dma_addr_t src) { };
|
|
|
|
static inline int vdoa_wait_for_completion(struct vdoa_ctx *ctx)
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif /* IMX_VDOA_H */
|