blob: 3bd8357f912e267b08961847d05bab302578ebfc [file] [log] [blame]
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +02001/*
2 * Copyright (C) 2014 Free Electrons
3 *
4 * License Terms: GNU General Public License v2
5 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
6 *
7 * Allwinner A31 APB0 clock gates driver
8 *
9 */
10
11#include <linux/clk-provider.h>
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080012#include <linux/clkdev.h>
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020013#include <linux/module.h>
14#include <linux/of.h>
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080015#include <linux/of_device.h>
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020016#include <linux/platform_device.h>
17
18#define SUN6I_APB0_GATES_MAX_SIZE 32
19
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080020struct gates_data {
21 DECLARE_BITMAP(mask, SUN6I_APB0_GATES_MAX_SIZE);
22};
23
24static const struct gates_data sun6i_a31_apb0_gates __initconst = {
25 .mask = {0x7F},
26};
27
28const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = {
29 { .compatible = "allwinner,sun6i-a31-apb0-gates-clk", .data = &sun6i_a31_apb0_gates },
30 { /* sentinel */ }
31};
32
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020033static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev)
34{
35 struct device_node *np = pdev->dev.of_node;
36 struct clk_onecell_data *clk_data;
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080037 const struct of_device_id *device;
38 const struct gates_data *data;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020039 const char *clk_parent;
40 const char *clk_name;
41 struct resource *r;
42 void __iomem *reg;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020043 int ngates;
44 int i;
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080045 int j = 0;
46
47 if (!np)
48 return -ENODEV;
49
50 device = of_match_device(sun6i_a31_apb0_gates_clk_dt_ids, &pdev->dev);
51 if (!device)
52 return -ENODEV;
53 data = device->data;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020054
55 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
56 reg = devm_ioremap_resource(&pdev->dev, r);
57 if (!reg)
58 return PTR_ERR(reg);
59
60 clk_parent = of_clk_get_parent_name(np, 0);
61 if (!clk_parent)
62 return -EINVAL;
63
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020064 clk_data = devm_kzalloc(&pdev->dev, sizeof(struct clk_onecell_data),
65 GFP_KERNEL);
66 if (!clk_data)
67 return -ENOMEM;
68
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080069 /* Worst-case size approximation and memory allocation */
70 ngates = find_last_bit(data->mask, SUN6I_APB0_GATES_MAX_SIZE);
71 clk_data->clks = devm_kcalloc(&pdev->dev, (ngates + 1),
72 sizeof(struct clk *), GFP_KERNEL);
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020073 if (!clk_data->clks)
74 return -ENOMEM;
75
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080076 for_each_set_bit(i, data->mask, SUN6I_APB0_GATES_MAX_SIZE) {
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020077 of_property_read_string_index(np, "clock-output-names",
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080078 j, &clk_name);
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020079
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080080 clk_data->clks[i] = clk_register_gate(&pdev->dev, clk_name,
81 clk_parent, 0, reg, i,
82 0, NULL);
83 WARN_ON(IS_ERR(clk_data->clks[i]));
84 clk_register_clkdev(clk_data->clks[i], clk_name, NULL);
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020085
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080086 j++;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020087 }
88
Chen-Yu Tsaib72efd02014-07-09 15:54:34 +080089 clk_data->clk_num = ngates + 1;
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020090
91 return of_clk_add_provider(np, of_clk_src_onecell_get, clk_data);
92}
93
Boris BREZILLONc8a76ca2014-05-15 10:55:11 +020094static struct platform_driver sun6i_a31_apb0_gates_clk_driver = {
95 .driver = {
96 .name = "sun6i-a31-apb0-gates-clk",
97 .owner = THIS_MODULE,
98 .of_match_table = sun6i_a31_apb0_gates_clk_dt_ids,
99 },
100 .probe = sun6i_a31_apb0_gates_clk_probe,
101};
102module_platform_driver(sun6i_a31_apb0_gates_clk_driver);
103
104MODULE_AUTHOR("Boris BREZILLON <boris.brezillon@free-electrons.com>");
105MODULE_DESCRIPTION("Allwinner A31 APB0 gate clocks driver");
106MODULE_LICENSE("GPL v2");