1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2022 MediaTek Inc.
6 #include <dt-bindings/clock/mediatek,mt8365-clk.h>
7 #include <linux/clk-provider.h>
8 #include <linux/platform_device.h>
13 static const struct mtk_gate_regs vdec0_cg_regs
= {
19 static const struct mtk_gate_regs vdec1_cg_regs
= {
25 #define GATE_VDEC0(_id, _name, _parent, _shift) \
26 GATE_MTK(_id, _name, _parent, &vdec0_cg_regs, _shift, \
27 &mtk_clk_gate_ops_setclr_inv)
29 #define GATE_VDEC1(_id, _name, _parent, _shift) \
30 GATE_MTK(_id, _name, _parent, &vdec1_cg_regs, _shift, \
31 &mtk_clk_gate_ops_setclr_inv)
33 static const struct mtk_gate vdec_clks
[] = {
35 GATE_VDEC0(CLK_VDEC_VDEC
, "vdec_fvdec_ck", "mm_sel", 0),
37 GATE_VDEC1(CLK_VDEC_LARB1
, "vdec_flarb1_ck", "mm_sel", 0),
40 static const struct mtk_clk_desc vdec_desc
= {
42 .num_clks
= ARRAY_SIZE(vdec_clks
),
45 static const struct of_device_id of_match_clk_mt8365_vdec
[] = {
47 .compatible
= "mediatek,mt8365-vdecsys",
53 MODULE_DEVICE_TABLE(of
, of_match_clk_mt8365_vdec
);
55 static struct platform_driver clk_mt8365_vdec_drv
= {
56 .probe
= mtk_clk_simple_probe
,
57 .remove
= mtk_clk_simple_remove
,
59 .name
= "clk-mt8365-vdec",
60 .of_match_table
= of_match_clk_mt8365_vdec
,
63 module_platform_driver(clk_mt8365_vdec_drv
);
65 MODULE_DESCRIPTION("MediaTek MT8365 Video Decoders clocks driver");
66 MODULE_LICENSE("GPL");