blob: 99736ceb71b5d7d2b1d5bf8a67922791adb52ee7 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2019 MediaTek Inc.
4 * Author: Wendell Lin <wendell.lin@mediatek.com>
5 */
6
7#include <linux/clk-provider.h>
8#include <linux/platform_device.h>
9#include <dt-bindings/clock/mt6779-clk.h>
10
11#include "clk-mtk.h"
12#include "clk-gate.h"
13
14static const struct mtk_gate_regs cam_cg_regs = {
15 .set_ofs = 0x0004,
16 .clr_ofs = 0x0008,
17 .sta_ofs = 0x0000,
18};
19
20#define GATE_CAM(_id, _name, _parent, _shift) \
21 GATE_CAM_FLAGS(_id, _name, _parent, _shift, 0)
22
23#define GATE_CAM_FLAGS(_id, _name, _parent, _shift, _flags) { \
24 .id = _id, \
25 .name = _name, \
26 .parent_name = _parent, \
27 .regs = &cam_cg_regs, \
28 .shift = _shift, \
29 .ops = &mtk_clk_gate_ops_setclr, \
30 .flags = _flags, \
31 }
32
33static const struct mtk_gate cam_clks[] = {
34 GATE_CAM(CLK_CAM_LARB10, "camsys_larb10", "cam_sel", 0),
35 GATE_CAM(CLK_CAM_DFP_VAD, "camsys_dfp_vad", "cam_sel", 1),
36 GATE_CAM(CLK_CAM_LARB11, "camsys_larb11", "cam_sel", 2),
37 GATE_CAM(CLK_CAM_LARB9, "camsys_larb9", "cam_sel", 3),
38 GATE_CAM(CLK_CAM_CAM, "camsys_cam", "cam_sel", 6),
39 GATE_CAM(CLK_CAM_CAMTG, "camsys_camtg", "cam_sel", 7),
40 GATE_CAM(CLK_CAM_SENINF, "camsys_seninf", "cam_sel", 8),
41 GATE_CAM(CLK_CAM_CAMSV0, "camsys_camsv0", "cam_sel", 9),
42 GATE_CAM(CLK_CAM_CAMSV1, "camsys_camsv1", "cam_sel", 10),
43 GATE_CAM(CLK_CAM_CAMSV2, "camsys_camsv2", "cam_sel", 11),
44 GATE_CAM(CLK_CAM_CAMSV3, "camsys_camsv3", "cam_sel", 12),
45 GATE_CAM(CLK_CAM_CCU, "camsys_ccu", "cam_sel", 13),
46 GATE_CAM(CLK_CAM_FAKE_ENG, "camsys_fake_eng", "cam_sel", 14),
47};
48
49static const struct of_device_id of_match_clk_mt6779_cam[] = {
50 { .compatible = "mediatek,mt6779-camsys", },
51 {}
52};
53
54static int clk_mt6779_cam_probe(struct platform_device *pdev)
55{
56 struct clk_onecell_data *clk_data;
57 struct device_node *node = pdev->dev.of_node;
58
59 clk_data = mtk_alloc_clk_data(CLK_CAM_NR_CLK);
60
61 mtk_clk_register_gates(node, cam_clks, ARRAY_SIZE(cam_clks),
62 clk_data);
63
64 return of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
65}
66
67static struct platform_driver clk_mt6779_cam_drv = {
68 .probe = clk_mt6779_cam_probe,
69 .driver = {
70 .name = "clk-mt6779-cam",
71 .of_match_table = of_match_clk_mt6779_cam,
72 },
73};
74
75builtin_platform_driver(clk_mt6779_cam_drv);