crowetic a94b3d14aa Brooklyn+ (PLUS) changes
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
2022-05-12 10:47:00 -07:00

34 lines
856 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2015-2016 MediaTek Inc.
* Author: Houlong Wei <houlong.wei@mediatek.com>
* Ming Hsiu Tsai <minghsiu.tsai@mediatek.com>
*/
#ifndef __MTK_MDP_VPU_H__
#define __MTK_MDP_VPU_H__
#include "mtk_mdp_ipi.h"
/**
* struct mtk_mdp_vpu - VPU instance for MDP
* @pdev : pointer to the VPU platform device
* @inst_addr : VPU MDP instance address
* @failure : VPU execution result status
* @vsi : VPU shared information
*/
struct mtk_mdp_vpu {
struct platform_device *pdev;
uint32_t inst_addr;
int32_t failure;
struct mdp_process_vsi *vsi;
};
int mtk_mdp_vpu_register(struct platform_device *pdev);
int mtk_mdp_vpu_init(struct mtk_mdp_vpu *vpu);
int mtk_mdp_vpu_deinit(struct mtk_mdp_vpu *vpu);
int mtk_mdp_vpu_process(struct mtk_mdp_vpu *vpu);
#endif /* __MTK_MDP_VPU_H__ */