blob: e4cf1180b0882ac73b462f62c8cf321d8009eb87 [file] [log] [blame]
Thomas Gleixner03761482019-05-28 09:57:24 -07001// SPDX-License-Identifier: GPL-2.0-only
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +02002/*
3 * Copyright (C) 2014 Free Electrons
4 *
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +02005 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
6 *
7 * Allwinner A31 APB0 clock gates driver
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +02008 */
9
10#include <linux/clk-provider.h>
Paul Gortmaker439a36d2016-07-04 17:12:18 -040011#include <linux/init.h>
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020012#include <linux/of.h>
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080013#include <linux/of_device.h>
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020014#include <linux/platform_device.h>
15
16#define SUN6I_APB0_GATES_MAX_SIZE 32
17
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080018struct gates_data {
19 DECLARE_BITMAP(mask, SUN6I_APB0_GATES_MAX_SIZE);
20};
21
22static const struct gates_data sun6i_a31_apb0_gates __initconst = {
23 .mask = {0x7F},
24};
25
Chen-Yu Tsai6c1d66f2014-07-09 15:54:35 +080026static const struct gates_data sun8i_a23_apb0_gates __initconst = {
27 .mask = {0x5D},
28};
29
Emilio López381c1cc2014-07-28 00:49:43 -030030static const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = {
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080031 { .compatible = "allwinner,sun6i-a31-apb0-gates-clk", .data = &sun6i_a31_apb0_gates },
Chen-Yu Tsai6c1d66f2014-07-09 15:54:35 +080032 { .compatible = "allwinner,sun8i-a23-apb0-gates-clk", .data = &sun8i_a23_apb0_gates },
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080033 { /* sentinel */ }
34};
35
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020036static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev)
37{
38 struct device_node *np = pdev->dev.of_node;
39 struct clk_onecell_data *clk_data;
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080040 const struct gates_data *data;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020041 const char *clk_parent;
42 const char *clk_name;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020043 void __iomem *reg;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020044 int ngates;
45 int i;
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080046 int j = 0;
47
48 if (!np)
49 return -ENODEV;
50
Corentin Labbe5d22a612019-11-10 16:35:20 +000051 data = of_device_get_match_data(&pdev->dev);
52 if (!data)
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080053 return -ENODEV;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020054
Cai Huoqingac57ffb2021-09-07 16:53:04 +080055 reg = devm_platform_ioremap_resource(pdev, 0);
Himangi Saraogic3dcac82014-06-28 22:53:55 +053056 if (IS_ERR(reg))
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020057 return PTR_ERR(reg);
58
59 clk_parent = of_clk_get_parent_name(np, 0);
60 if (!clk_parent)
61 return -EINVAL;
62
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020063 clk_data = devm_kzalloc(&pdev->dev, sizeof(struct clk_onecell_data),
64 GFP_KERNEL);
65 if (!clk_data)
66 return -ENOMEM;
67
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080068 /* Worst-case size approximation and memory allocation */
69 ngates = find_last_bit(data->mask, SUN6I_APB0_GATES_MAX_SIZE);
70 clk_data->clks = devm_kcalloc(&pdev->dev, (ngates + 1),
71 sizeof(struct clk *), GFP_KERNEL);
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020072 if (!clk_data->clks)
73 return -ENOMEM;
74
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080075 for_each_set_bit(i, data->mask, SUN6I_APB0_GATES_MAX_SIZE) {
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020076 of_property_read_string_index(np, "clock-output-names",
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080077 j, &clk_name);
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020078
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080079 clk_data->clks[i] = clk_register_gate(&pdev->dev, clk_name,
80 clk_parent, 0, reg, i,
81 0, NULL);
82 WARN_ON(IS_ERR(clk_data->clks[i]));
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020083
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080084 j++;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020085 }
86
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080087 clk_data->clk_num = ngates + 1;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020088
89 return of_clk_add_provider(np, of_clk_src_onecell_get, clk_data);
90}
91
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020092static struct platform_driver sun6i_a31_apb0_gates_clk_driver = {
93 .driver = {
94 .name = "sun6i-a31-apb0-gates-clk",
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020095 .of_match_table = sun6i_a31_apb0_gates_clk_dt_ids,
96 },
97 .probe = sun6i_a31_apb0_gates_clk_probe,
98};
Paul Gortmaker439a36d2016-07-04 17:12:18 -040099builtin_platform_driver(sun6i_a31_apb0_gates_clk_driver);