blob: 5c2cfeaa9d9f59390d8c2e1ed41183db1338315c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2021 MediaTek Inc.
* Author: Yunfei Dong <yunfei.dong@mediatek.com>
*/
#ifndef _MTK_VCODEC_DEC_HW_H_
#define _MTK_VCODEC_DEC_HW_H_
#include <linux/io.h>
#include <linux/platform_device.h>
#include "mtk_vcodec_drv.h"
#define VDEC_HW_ACTIVE 0x10
#define VDEC_IRQ_CFG 0x11
#define VDEC_IRQ_CLR 0x10
#define VDEC_IRQ_CFG_REG 0xa4
/**
* enum mtk_vdec_hw_reg_idx - subdev hardware register base index
* @VDEC_HW_SYS : vdec soc register index
* @VDEC_HW_MISC: vdec misc register index
* @VDEC_HW_MAX : vdec supported max register index
*/
enum mtk_vdec_hw_reg_idx {
VDEC_HW_SYS,
VDEC_HW_MISC,
VDEC_HW_MAX
};
/**
* struct mtk_vdec_hw_dev - vdec hardware driver data
* @plat_dev: platform device
* @main_dev: main device
* @reg_base: mapped address of MTK Vcodec registers.
*
* @dec_irq : decoder irq resource
* @pm : power management control
* @hw_idx : each hardware index
*/
struct mtk_vdec_hw_dev {
struct platform_device *plat_dev;
struct mtk_vcodec_dev *main_dev;
void __iomem *reg_base[VDEC_HW_MAX];
int dec_irq;
struct mtk_vcodec_pm pm;
int hw_idx;
};
#endif /* _MTK_VCODEC_DEC_HW_H_ */
|