162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Copyright (c) 2022 MediaTek Inc.
462306a36Sopenharmony_ci * Author: Garmin Chang <garmin.chang@mediatek.com>
562306a36Sopenharmony_ci */
662306a36Sopenharmony_ci
762306a36Sopenharmony_ci#include <dt-bindings/clock/mediatek,mt8188-clk.h>
862306a36Sopenharmony_ci#include <linux/clk-provider.h>
962306a36Sopenharmony_ci#include <linux/platform_device.h>
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_ci#include "clk-gate.h"
1262306a36Sopenharmony_ci#include "clk-mtk.h"
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_0_cg_regs = {
1562306a36Sopenharmony_ci	.set_ofs = 0x24,
1662306a36Sopenharmony_ci	.clr_ofs = 0x28,
1762306a36Sopenharmony_ci	.sta_ofs = 0x20,
1862306a36Sopenharmony_ci};
1962306a36Sopenharmony_ci
2062306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_1_cg_regs = {
2162306a36Sopenharmony_ci	.set_ofs = 0x30,
2262306a36Sopenharmony_ci	.clr_ofs = 0x34,
2362306a36Sopenharmony_ci	.sta_ofs = 0x2c,
2462306a36Sopenharmony_ci};
2562306a36Sopenharmony_ci
2662306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_2_cg_regs = {
2762306a36Sopenharmony_ci	.set_ofs = 0x3c,
2862306a36Sopenharmony_ci	.clr_ofs = 0x40,
2962306a36Sopenharmony_ci	.sta_ofs = 0x38,
3062306a36Sopenharmony_ci};
3162306a36Sopenharmony_ci
3262306a36Sopenharmony_ci#define GATE_VPP0_0(_id, _name, _parent, _shift)			\
3362306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_0_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
3462306a36Sopenharmony_ci
3562306a36Sopenharmony_ci#define GATE_VPP0_1(_id, _name, _parent, _shift)			\
3662306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_1_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
3762306a36Sopenharmony_ci
3862306a36Sopenharmony_ci#define GATE_VPP0_2(_id, _name, _parent, _shift)			\
3962306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_2_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
4062306a36Sopenharmony_ci
4162306a36Sopenharmony_cistatic const struct mtk_gate vpp0_clks[] = {
4262306a36Sopenharmony_ci	/* VPP0_0 */
4362306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_FG, "vpp0_mdp_fg", "top_vpp", 1),
4462306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_STITCH, "vpp0_stitch", "top_vpp", 2),
4562306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_PADDING, "vpp0_padding", "top_vpp", 7),
4662306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_TCC, "vpp0_mdp_tcc", "top_vpp", 8),
4762306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_WARP0_ASYNC_TX, "vpp0_warp0_async_tx", "top_vpp", 10),
4862306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_WARP1_ASYNC_TX, "vpp0_warp1_async_tx", "top_vpp", 11),
4962306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MUTEX, "vpp0_mutex", "top_vpp", 13),
5062306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP02VPP1_RELAY, "vpp02vpp1_relay", "top_vpp", 14),
5162306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_VPP12VPP0_ASYNC, "vpp0_vpp12vpp0_async", "top_vpp", 15),
5262306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MMSYSRAM_TOP, "vpp0_mmsysram_top", "top_vpp", 16),
5362306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_AAL, "vpp0_mdp_aal", "top_vpp", 17),
5462306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_RSZ, "vpp0_mdp_rsz", "top_vpp", 18),
5562306a36Sopenharmony_ci	/* VPP0_1 */
5662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_COMMON_MMSRAM, "vpp0_smi_common_mmsram", "top_vpp", 0),
5762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_LARB0_MMSRAM, "vpp0_gals_vdo0_larb0_mmsram", "top_vpp", 1),
5862306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_LARB1_MMSRAM, "vpp0_gals_vdo0_larb1_mmsram", "top_vpp", 2),
5962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VENCSYS_MMSRAM, "vpp0_gals_vencsys_mmsram", "top_vpp", 3),
6062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VENCSYS_CORE1_MMSRAM,
6162306a36Sopenharmony_ci		    "vpp0_gals_vencsys_core1_mmsram", "top_vpp", 4),
6262306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_INFRA_MMSRAM, "vpp0_gals_infra_mmsram", "top_vpp", 5),
6362306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_CAMSYS_MMSRAM, "vpp0_gals_camsys_mmsram", "top_vpp", 6),
6462306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_LARB5_MMSRAM, "vpp0_gals_vpp1_larb5_mmsram", "top_vpp", 7),
6562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_LARB6_MMSRAM, "vpp0_gals_vpp1_larb6_mmsram", "top_vpp", 8),
6662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_REORDER_MMSRAM, "vpp0_smi_reorder_mmsram", "top_vpp", 9),
6762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_IOMMU, "vpp0_smi_iommu", "top_vpp", 10),
6862306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_IMGSYS_CAMSYS, "vpp0_gals_imgsys_camsys", "top_vpp", 11),
6962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_RDMA, "vpp0_mdp_rdma", "top_vpp", 12),
7062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_WROT, "vpp0_mdp_wrot", "top_vpp", 13),
7162306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_EMI0_EMI1, "vpp0_gals_emi0_emi1", "top_vpp", 16),
7262306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_SUB_COMMON_REORDER, "vpp0_smi_sub_common_reorder", "top_vpp", 17),
7362306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_RSI, "vpp0_smi_rsi", "top_vpp", 18),
7462306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_COMMON_LARB4, "vpp0_smi_common_larb4", "top_vpp", 19),
7562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDEC_VDEC_CORE1, "vpp0_gals_vdec_vdec_core1", "top_vpp", 20),
7662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_WPESYS, "vpp0_gals_vpp1_wpesys", "top_vpp", 21),
7762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_VDO1_VENCSYS_CORE1,
7862306a36Sopenharmony_ci		    "vpp0_gals_vdo0_vdo1_vencsys_core1", "top_vpp", 22),
7962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_FAKE_ENG, "vpp0_fake_eng", "top_vpp", 23),
8062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_HDR, "vpp0_mdp_hdr", "top_vpp", 24),
8162306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_TDSHP, "vpp0_mdp_tdshp", "top_vpp", 25),
8262306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_COLOR, "vpp0_mdp_color", "top_vpp", 26),
8362306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_OVL, "vpp0_mdp_ovl", "top_vpp", 27),
8462306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_DSIP_RDMA, "vpp0_dsip_rdma", "top_vpp", 28),
8562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_DISP_WDMA, "vpp0_disp_wdma", "top_vpp", 29),
8662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_HMS, "vpp0_mdp_hms", "top_vpp", 30),
8762306a36Sopenharmony_ci	/* VPP0_2 */
8862306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP0_RELAY, "vpp0_warp0_relay", "top_wpe_vpp", 0),
8962306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP0_ASYNC, "vpp0_warp0_async", "top_wpe_vpp", 1),
9062306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP1_RELAY, "vpp0_warp1_relay", "top_wpe_vpp", 2),
9162306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP1_ASYNC, "vpp0_warp1_async", "top_wpe_vpp", 3),
9262306a36Sopenharmony_ci};
9362306a36Sopenharmony_ci
9462306a36Sopenharmony_cistatic const struct mtk_clk_desc vpp0_desc = {
9562306a36Sopenharmony_ci	.clks = vpp0_clks,
9662306a36Sopenharmony_ci	.num_clks = ARRAY_SIZE(vpp0_clks),
9762306a36Sopenharmony_ci};
9862306a36Sopenharmony_ci
9962306a36Sopenharmony_cistatic const struct platform_device_id clk_mt8188_vpp0_id_table[] = {
10062306a36Sopenharmony_ci	{ .name = "clk-mt8188-vpp0", .driver_data = (kernel_ulong_t)&vpp0_desc },
10162306a36Sopenharmony_ci	{ /* sentinel */ }
10262306a36Sopenharmony_ci};
10362306a36Sopenharmony_ciMODULE_DEVICE_TABLE(platform, clk_mt8188_vpp0_id_table);
10462306a36Sopenharmony_ci
10562306a36Sopenharmony_cistatic struct platform_driver clk_mt8188_vpp0_drv = {
10662306a36Sopenharmony_ci	.probe = mtk_clk_pdev_probe,
10762306a36Sopenharmony_ci	.remove_new = mtk_clk_pdev_remove,
10862306a36Sopenharmony_ci	.driver = {
10962306a36Sopenharmony_ci		.name = "clk-mt8188-vpp0",
11062306a36Sopenharmony_ci	},
11162306a36Sopenharmony_ci	.id_table = clk_mt8188_vpp0_id_table,
11262306a36Sopenharmony_ci};
11362306a36Sopenharmony_cimodule_platform_driver(clk_mt8188_vpp0_drv);
11462306a36Sopenharmony_ciMODULE_LICENSE("GPL");
115