162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only
262306a36Sopenharmony_ci//
362306a36Sopenharmony_ci// Copyright (c) 2021 MediaTek Inc.
462306a36Sopenharmony_ci// Author: Chun-Jie Chen <chun-jie.chen@mediatek.com>
562306a36Sopenharmony_ci
662306a36Sopenharmony_ci#include "clk-gate.h"
762306a36Sopenharmony_ci#include "clk-mtk.h"
862306a36Sopenharmony_ci
962306a36Sopenharmony_ci#include <dt-bindings/clock/mt8195-clk.h>
1062306a36Sopenharmony_ci#include <linux/clk-provider.h>
1162306a36Sopenharmony_ci#include <linux/platform_device.h>
1262306a36Sopenharmony_ci
1362306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_0_cg_regs = {
1462306a36Sopenharmony_ci	.set_ofs = 0x24,
1562306a36Sopenharmony_ci	.clr_ofs = 0x28,
1662306a36Sopenharmony_ci	.sta_ofs = 0x20,
1762306a36Sopenharmony_ci};
1862306a36Sopenharmony_ci
1962306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_1_cg_regs = {
2062306a36Sopenharmony_ci	.set_ofs = 0x30,
2162306a36Sopenharmony_ci	.clr_ofs = 0x34,
2262306a36Sopenharmony_ci	.sta_ofs = 0x2c,
2362306a36Sopenharmony_ci};
2462306a36Sopenharmony_ci
2562306a36Sopenharmony_cistatic const struct mtk_gate_regs vpp0_2_cg_regs = {
2662306a36Sopenharmony_ci	.set_ofs = 0x3c,
2762306a36Sopenharmony_ci	.clr_ofs = 0x40,
2862306a36Sopenharmony_ci	.sta_ofs = 0x38,
2962306a36Sopenharmony_ci};
3062306a36Sopenharmony_ci
3162306a36Sopenharmony_ci#define GATE_VPP0_0(_id, _name, _parent, _shift)			\
3262306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_0_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
3362306a36Sopenharmony_ci
3462306a36Sopenharmony_ci#define GATE_VPP0_1(_id, _name, _parent, _shift)			\
3562306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_1_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
3662306a36Sopenharmony_ci
3762306a36Sopenharmony_ci#define GATE_VPP0_2(_id, _name, _parent, _shift)			\
3862306a36Sopenharmony_ci	GATE_MTK(_id, _name, _parent, &vpp0_2_cg_regs, _shift, &mtk_clk_gate_ops_setclr)
3962306a36Sopenharmony_ci
4062306a36Sopenharmony_cistatic const struct mtk_gate vpp0_clks[] = {
4162306a36Sopenharmony_ci	/* VPP0_0 */
4262306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_FG, "vpp0_mdp_fg", "top_vpp", 1),
4362306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_STITCH, "vpp0_stitch", "top_vpp", 2),
4462306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_PADDING, "vpp0_padding", "top_vpp", 7),
4562306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_TCC, "vpp0_mdp_tcc", "top_vpp", 8),
4662306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_WARP0_ASYNC_TX, "vpp0_warp0_async_tx", "top_vpp", 10),
4762306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_WARP1_ASYNC_TX, "vpp0_warp1_async_tx", "top_vpp", 11),
4862306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MUTEX, "vpp0_mutex", "top_vpp", 13),
4962306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_VPP02VPP1_RELAY, "vpp0_vpp02vpp1_relay", "top_vpp", 14),
5062306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_VPP12VPP0_ASYNC, "vpp0_vpp12vpp0_async", "top_vpp", 15),
5162306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MMSYSRAM_TOP, "vpp0_mmsysram_top", "top_vpp", 16),
5262306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_AAL, "vpp0_mdp_aal", "top_vpp", 17),
5362306a36Sopenharmony_ci	GATE_VPP0_0(CLK_VPP0_MDP_RSZ, "vpp0_mdp_rsz", "top_vpp", 18),
5462306a36Sopenharmony_ci	/* VPP0_1 */
5562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_COMMON, "vpp0_smi_common", "top_vpp", 0),
5662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_LARB0, "vpp0_gals_vdo0_larb0", "top_vpp", 1),
5762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_LARB1, "vpp0_gals_vdo0_larb1", "top_vpp", 2),
5862306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VENCSYS, "vpp0_gals_vencsys", "top_vpp", 3),
5962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VENCSYS_CORE1, "vpp0_gals_vencsys_core1", "top_vpp", 4),
6062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_INFRA, "vpp0_gals_infra", "top_vpp", 5),
6162306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_CAMSYS, "vpp0_gals_camsys", "top_vpp", 6),
6262306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_LARB5, "vpp0_gals_vpp1_larb5", "top_vpp", 7),
6362306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_LARB6, "vpp0_gals_vpp1_larb6", "top_vpp", 8),
6462306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_REORDER, "vpp0_smi_reorder", "top_vpp", 9),
6562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_IOMMU, "vpp0_smi_iommu", "top_vpp", 10),
6662306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_IMGSYS_CAMSYS, "vpp0_gals_imgsys_camsys", "top_vpp", 11),
6762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_RDMA, "vpp0_mdp_rdma", "top_vpp", 12),
6862306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_WROT, "vpp0_mdp_wrot", "top_vpp", 13),
6962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_EMI0_EMI1, "vpp0_gals_emi0_emi1", "top_vpp", 16),
7062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_SUB_COMMON_REORDER, "vpp0_smi_sub_common_reorder", "top_vpp", 17),
7162306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_RSI, "vpp0_smi_rsi", "top_vpp", 18),
7262306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_SMI_COMMON_LARB4, "vpp0_smi_common_larb4", "top_vpp", 19),
7362306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDEC_VDEC_CORE1, "vpp0_gals_vdec_vdec_core1", "top_vpp", 20),
7462306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VPP1_WPE, "vpp0_gals_vpp1_wpe", "top_vpp", 21),
7562306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_GALS_VDO0_VDO1_VENCSYS_CORE1, "vpp0_gals_vdo0_vdo1_vencsys_core1",
7662306a36Sopenharmony_ci		    "top_vpp", 22),
7762306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_FAKE_ENG, "vpp0_fake_eng", "top_vpp", 23),
7862306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_HDR, "vpp0_mdp_hdr", "top_vpp", 24),
7962306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_TDSHP, "vpp0_mdp_tdshp", "top_vpp", 25),
8062306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_COLOR, "vpp0_mdp_color", "top_vpp", 26),
8162306a36Sopenharmony_ci	GATE_VPP0_1(CLK_VPP0_MDP_OVL, "vpp0_mdp_ovl", "top_vpp", 27),
8262306a36Sopenharmony_ci	/* VPP0_2 */
8362306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP0_RELAY, "vpp0_warp0_relay", "top_wpe_vpp", 0),
8462306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP0_MDP_DL_ASYNC, "vpp0_warp0_mdp_dl_async", "top_wpe_vpp", 1),
8562306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP1_RELAY, "vpp0_warp1_relay", "top_wpe_vpp", 2),
8662306a36Sopenharmony_ci	GATE_VPP0_2(CLK_VPP0_WARP1_MDP_DL_ASYNC, "vpp0_warp1_mdp_dl_async", "top_wpe_vpp", 3),
8762306a36Sopenharmony_ci};
8862306a36Sopenharmony_ci
8962306a36Sopenharmony_cistatic const struct mtk_clk_desc vpp0_desc = {
9062306a36Sopenharmony_ci	.clks = vpp0_clks,
9162306a36Sopenharmony_ci	.num_clks = ARRAY_SIZE(vpp0_clks),
9262306a36Sopenharmony_ci};
9362306a36Sopenharmony_ci
9462306a36Sopenharmony_cistatic const struct platform_device_id clk_mt8195_vpp0_id_table[] = {
9562306a36Sopenharmony_ci	{ .name = "clk-mt8195-vpp0", .driver_data = (kernel_ulong_t)&vpp0_desc },
9662306a36Sopenharmony_ci	{ /* sentinel */ }
9762306a36Sopenharmony_ci};
9862306a36Sopenharmony_ciMODULE_DEVICE_TABLE(platform, clk_mt8195_vpp0_id_table);
9962306a36Sopenharmony_ci
10062306a36Sopenharmony_cistatic struct platform_driver clk_mt8195_vpp0_drv = {
10162306a36Sopenharmony_ci	.probe = mtk_clk_pdev_probe,
10262306a36Sopenharmony_ci	.remove_new = mtk_clk_pdev_remove,
10362306a36Sopenharmony_ci	.driver = {
10462306a36Sopenharmony_ci		.name = "clk-mt8195-vpp0",
10562306a36Sopenharmony_ci	},
10662306a36Sopenharmony_ci	.id_table = clk_mt8195_vpp0_id_table,
10762306a36Sopenharmony_ci};
10862306a36Sopenharmony_cimodule_platform_driver(clk_mt8195_vpp0_drv);
10962306a36Sopenharmony_ciMODULE_LICENSE("GPL");
110