forked from Qortal/Brooklyn
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
24 lines
764 B
C
24 lines
764 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2016 MediaTek Inc.
|
|
* Author: Ming Hsiu Tsai <minghsiu.tsai@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __MTK_MDP_REGS_H__
|
|
#define __MTK_MDP_REGS_H__
|
|
|
|
|
|
void mtk_mdp_hw_set_input_addr(struct mtk_mdp_ctx *ctx,
|
|
struct mtk_mdp_addr *addr);
|
|
void mtk_mdp_hw_set_output_addr(struct mtk_mdp_ctx *ctx,
|
|
struct mtk_mdp_addr *addr);
|
|
void mtk_mdp_hw_set_in_size(struct mtk_mdp_ctx *ctx);
|
|
void mtk_mdp_hw_set_in_image_format(struct mtk_mdp_ctx *ctx);
|
|
void mtk_mdp_hw_set_out_size(struct mtk_mdp_ctx *ctx);
|
|
void mtk_mdp_hw_set_out_image_format(struct mtk_mdp_ctx *ctx);
|
|
void mtk_mdp_hw_set_rotation(struct mtk_mdp_ctx *ctx);
|
|
void mtk_mdp_hw_set_global_alpha(struct mtk_mdp_ctx *ctx);
|
|
|
|
|
|
#endif /* __MTK_MDP_REGS_H__ */
|