xref: /openbmc/linux/drivers/clk/mediatek/clk-mt8135-apmixedsys.c (revision 5ee9cd065836e5934710ca35653bce7905add20b)
1aafcf16cSAngeloGioacchino Del Regno // SPDX-License-Identifier: GPL-2.0-only
2aafcf16cSAngeloGioacchino Del Regno /*
3aafcf16cSAngeloGioacchino Del Regno  * Copyright (c) 2014 MediaTek Inc.
4aafcf16cSAngeloGioacchino Del Regno  *               James Liao <jamesjj.liao@mediatek.com>
5aafcf16cSAngeloGioacchino Del Regno  * Copyright (c) 2023 Collabora, Ltd.
6aafcf16cSAngeloGioacchino Del Regno  *               AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
7aafcf16cSAngeloGioacchino Del Regno  */
8aafcf16cSAngeloGioacchino Del Regno 
9aafcf16cSAngeloGioacchino Del Regno #include <dt-bindings/clock/mt8135-clk.h>
10aafcf16cSAngeloGioacchino Del Regno #include <linux/clk.h>
11aafcf16cSAngeloGioacchino Del Regno #include <linux/of.h>
12aafcf16cSAngeloGioacchino Del Regno #include <linux/platform_device.h>
13aafcf16cSAngeloGioacchino Del Regno 
14aafcf16cSAngeloGioacchino Del Regno #include "clk-mtk.h"
15aafcf16cSAngeloGioacchino Del Regno #include "clk-pll.h"
16aafcf16cSAngeloGioacchino Del Regno 
17aafcf16cSAngeloGioacchino Del Regno #define MT8135_PLL_FMAX		(2000 * MHZ)
18aafcf16cSAngeloGioacchino Del Regno #define CON0_MT8135_RST_BAR	BIT(27)
19aafcf16cSAngeloGioacchino Del Regno 
20aafcf16cSAngeloGioacchino Del Regno #define PLL(_id, _name, _reg, _pwr_reg, _en_mask, _flags, _pcwbits, _pd_reg, _pd_shift, _tuner_reg, _pcw_reg, _pcw_shift) { \
21aafcf16cSAngeloGioacchino Del Regno 		.id = _id,						\
22aafcf16cSAngeloGioacchino Del Regno 		.name = _name,						\
23aafcf16cSAngeloGioacchino Del Regno 		.reg = _reg,						\
24aafcf16cSAngeloGioacchino Del Regno 		.pwr_reg = _pwr_reg,					\
25aafcf16cSAngeloGioacchino Del Regno 		.en_mask = _en_mask,					\
26aafcf16cSAngeloGioacchino Del Regno 		.flags = _flags,					\
27aafcf16cSAngeloGioacchino Del Regno 		.rst_bar_mask = CON0_MT8135_RST_BAR,			\
28aafcf16cSAngeloGioacchino Del Regno 		.fmax = MT8135_PLL_FMAX,				\
29aafcf16cSAngeloGioacchino Del Regno 		.pcwbits = _pcwbits,					\
30aafcf16cSAngeloGioacchino Del Regno 		.pd_reg = _pd_reg,					\
31aafcf16cSAngeloGioacchino Del Regno 		.pd_shift = _pd_shift,					\
32aafcf16cSAngeloGioacchino Del Regno 		.tuner_reg = _tuner_reg,				\
33aafcf16cSAngeloGioacchino Del Regno 		.pcw_reg = _pcw_reg,					\
34aafcf16cSAngeloGioacchino Del Regno 		.pcw_shift = _pcw_shift,				\
35aafcf16cSAngeloGioacchino Del Regno 	}
36aafcf16cSAngeloGioacchino Del Regno 
37aafcf16cSAngeloGioacchino Del Regno static const struct mtk_pll_data plls[] = {
38aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_ARMPLL1, "armpll1", 0x200, 0x218, 0x80000000, 0, 21, 0x204, 24, 0x0, 0x204, 0),
39aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_ARMPLL2, "armpll2", 0x2cc, 0x2e4, 0x80000000, 0, 21, 0x2d0, 24, 0x0, 0x2d0, 0),
40aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_MAINPLL, "mainpll", 0x21c, 0x234, 0xf0000000, HAVE_RST_BAR, 21, 0x21c, 6, 0x0, 0x220, 0),
41aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_UNIVPLL, "univpll", 0x238, 0x250, 0xf3000000, HAVE_RST_BAR, 7, 0x238, 6, 0x0, 0x238, 9),
42aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_MMPLL, "mmpll", 0x254, 0x26c, 0xf0000000, HAVE_RST_BAR, 21, 0x254, 6, 0x0, 0x258, 0),
43aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_MSDCPLL, "msdcpll", 0x278, 0x290, 0x80000000, 0, 21, 0x278, 6, 0x0, 0x27c, 0),
44aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_TVDPLL, "tvdpll", 0x294, 0x2ac, 0x80000000, 0, 31, 0x294, 6, 0x0, 0x298, 0),
45aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_LVDSPLL, "lvdspll", 0x2b0, 0x2c8, 0x80000000, 0, 21, 0x2b0, 6, 0x0, 0x2b4, 0),
46aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_AUDPLL, "audpll", 0x2e8, 0x300, 0x80000000, 0, 31, 0x2e8, 6, 0x2f8, 0x2ec, 0),
47aafcf16cSAngeloGioacchino Del Regno 	PLL(CLK_APMIXED_VDECPLL, "vdecpll", 0x304, 0x31c, 0x80000000, 0, 21, 0x2b0, 6, 0x0, 0x308, 0),
48aafcf16cSAngeloGioacchino Del Regno };
49aafcf16cSAngeloGioacchino Del Regno 
clk_mt8135_apmixed_probe(struct platform_device * pdev)5054b7026fSAngeloGioacchino Del Regno static int clk_mt8135_apmixed_probe(struct platform_device *pdev)
51aafcf16cSAngeloGioacchino Del Regno {
52aafcf16cSAngeloGioacchino Del Regno 	struct clk_hw_onecell_data *clk_data;
5354b7026fSAngeloGioacchino Del Regno 	struct device_node *node = pdev->dev.of_node;
5454b7026fSAngeloGioacchino Del Regno 	int ret;
55aafcf16cSAngeloGioacchino Del Regno 
56aafcf16cSAngeloGioacchino Del Regno 	clk_data = mtk_alloc_clk_data(CLK_APMIXED_NR_CLK);
57aafcf16cSAngeloGioacchino Del Regno 	if (!clk_data)
5854b7026fSAngeloGioacchino Del Regno 		return -ENOMEM;
59aafcf16cSAngeloGioacchino Del Regno 
6054b7026fSAngeloGioacchino Del Regno 	ret = mtk_clk_register_plls(node, plls, ARRAY_SIZE(plls), clk_data);
6154b7026fSAngeloGioacchino Del Regno 	if (ret)
62*19a66e36SChristophe JAILLET 		goto free_clk_data;
6354b7026fSAngeloGioacchino Del Regno 
6454b7026fSAngeloGioacchino Del Regno 	ret = of_clk_add_hw_provider(node, of_clk_hw_onecell_get, clk_data);
6554b7026fSAngeloGioacchino Del Regno 	if (ret)
6654b7026fSAngeloGioacchino Del Regno 		goto unregister_plls;
6754b7026fSAngeloGioacchino Del Regno 
6854b7026fSAngeloGioacchino Del Regno 	return 0;
6954b7026fSAngeloGioacchino Del Regno 
7054b7026fSAngeloGioacchino Del Regno unregister_plls:
7154b7026fSAngeloGioacchino Del Regno 	mtk_clk_unregister_plls(plls, ARRAY_SIZE(plls), clk_data);
72*19a66e36SChristophe JAILLET free_clk_data:
73*19a66e36SChristophe JAILLET 	mtk_free_clk_data(clk_data);
7454b7026fSAngeloGioacchino Del Regno 
7554b7026fSAngeloGioacchino Del Regno 	return ret;
76aafcf16cSAngeloGioacchino Del Regno }
7754b7026fSAngeloGioacchino Del Regno 
clk_mt8135_apmixed_remove(struct platform_device * pdev)78a65615dfSUwe Kleine-König static void clk_mt8135_apmixed_remove(struct platform_device *pdev)
7954b7026fSAngeloGioacchino Del Regno {
8054b7026fSAngeloGioacchino Del Regno 	struct device_node *node = pdev->dev.of_node;
8154b7026fSAngeloGioacchino Del Regno 	struct clk_hw_onecell_data *clk_data = platform_get_drvdata(pdev);
8254b7026fSAngeloGioacchino Del Regno 
8354b7026fSAngeloGioacchino Del Regno 	of_clk_del_provider(node);
8454b7026fSAngeloGioacchino Del Regno 	mtk_clk_unregister_plls(plls, ARRAY_SIZE(plls), clk_data);
8554b7026fSAngeloGioacchino Del Regno 	mtk_free_clk_data(clk_data);
8654b7026fSAngeloGioacchino Del Regno }
8754b7026fSAngeloGioacchino Del Regno 
8854b7026fSAngeloGioacchino Del Regno static const struct of_device_id of_match_clk_mt8135_apmixed[] = {
8954b7026fSAngeloGioacchino Del Regno 	{ .compatible = "mediatek,mt8135-apmixedsys" },
9054b7026fSAngeloGioacchino Del Regno 	{ /* sentinel */ }
9154b7026fSAngeloGioacchino Del Regno };
9254b7026fSAngeloGioacchino Del Regno MODULE_DEVICE_TABLE(of, of_match_clk_mt8135_apmixed);
9354b7026fSAngeloGioacchino Del Regno 
9454b7026fSAngeloGioacchino Del Regno static struct platform_driver clk_mt8135_apmixed_drv = {
9554b7026fSAngeloGioacchino Del Regno 	.probe = clk_mt8135_apmixed_probe,
96a65615dfSUwe Kleine-König 	.remove_new = clk_mt8135_apmixed_remove,
9754b7026fSAngeloGioacchino Del Regno 	.driver = {
9854b7026fSAngeloGioacchino Del Regno 		.name = "clk-mt8135-apmixed",
9954b7026fSAngeloGioacchino Del Regno 		.of_match_table = of_match_clk_mt8135_apmixed,
10054b7026fSAngeloGioacchino Del Regno 	},
10154b7026fSAngeloGioacchino Del Regno };
10254b7026fSAngeloGioacchino Del Regno module_platform_driver(clk_mt8135_apmixed_drv)
10354b7026fSAngeloGioacchino Del Regno 
10454b7026fSAngeloGioacchino Del Regno MODULE_DESCRIPTION("MediaTek MT8135 apmixedsys clocks driver");
105aafcf16cSAngeloGioacchino Del Regno MODULE_LICENSE("GPL");
106