Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / clk / mediatek / clk-mt2701-vdec.c
blob94db86f8d0a462bcf5e9b0fe6e5ed6e16474d629
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2014 MediaTek Inc.
4 * Author: Shunli Wang <shunli.wang@mediatek.com>
5 */
7 #include <linux/clk-provider.h>
8 #include <linux/platform_device.h>
10 #include "clk-mtk.h"
11 #include "clk-gate.h"
13 #include <dt-bindings/clock/mt2701-clk.h>
15 static const struct mtk_gate_regs vdec0_cg_regs = {
16 .set_ofs = 0x0000,
17 .clr_ofs = 0x0004,
18 .sta_ofs = 0x0000,
21 static const struct mtk_gate_regs vdec1_cg_regs = {
22 .set_ofs = 0x0008,
23 .clr_ofs = 0x000c,
24 .sta_ofs = 0x0008,
27 #define GATE_VDEC0(_id, _name, _parent, _shift) \
28 GATE_MTK(_id, _name, _parent, &vdec0_cg_regs, _shift, &mtk_clk_gate_ops_setclr_inv)
30 #define GATE_VDEC1(_id, _name, _parent, _shift) \
31 GATE_MTK(_id, _name, _parent, &vdec1_cg_regs, _shift, &mtk_clk_gate_ops_setclr_inv)
33 static const struct mtk_gate vdec_clks[] = {
34 GATE_VDEC0(CLK_VDEC_CKGEN, "vdec_cken", "vdec_sel", 0),
35 GATE_VDEC1(CLK_VDEC_LARB, "vdec_larb_cken", "mm_sel", 0),
38 static const struct mtk_clk_desc vdec_desc = {
39 .clks = vdec_clks,
40 .num_clks = ARRAY_SIZE(vdec_clks),
43 static const struct of_device_id of_match_clk_mt2701_vdec[] = {
45 .compatible = "mediatek,mt2701-vdecsys",
46 .data = &vdec_desc,
47 }, {
48 /* sentinel */
51 MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_vdec);
53 static struct platform_driver clk_mt2701_vdec_drv = {
54 .probe = mtk_clk_simple_probe,
55 .remove = mtk_clk_simple_remove,
56 .driver = {
57 .name = "clk-mt2701-vdec",
58 .of_match_table = of_match_clk_mt2701_vdec,
61 module_platform_driver(clk_mt2701_vdec_drv);
63 MODULE_DESCRIPTION("MediaTek MT2701 Video Decoders clocks driver");
64 MODULE_LICENSE("GPL");