summaryrefslogtreecommitdiff
path: root/drivers/clk/clk-as3722.c
blob: 0f786c3d9425eb23ad1d5ba993ce9a81ab0afe04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * Clock driver for ams AS3722 device.
 *
 * Copyright (c) 2013, NVIDIA Corporation.
 *
 * Author: Laxman Dewangan <ldewangan@nvidia.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation version 2.
 *
 * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
 * whether express or implied; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 */

#include <linux/clk.h>
#include <linux/clkdev.h>
#include <linux/clk-provider.h>
#include <linux/mfd/as3722.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/slab.h>

struct as3722_clks {
	struct device *dev;
	struct as3722 *as3722;
	struct clk_hw hw;
	struct clk *clk;
	struct clk_onecell_data clk_data;
};

static inline struct as3722_clks *to_as3722_clks(struct clk_hw *hw)
{
	return container_of(hw, struct as3722_clks, hw);
}

static unsigned long as3722_clks_recalc_rate(struct clk_hw *hw,
	unsigned long parent_rate)
{
	return 32768;
}

static int as3722_clks_prepare(struct clk_hw *hw)
{
	struct as3722_clks *as3722_clks = to_as3722_clks(hw);
	int ret;

	ret = as3722_update_bits(as3722_clks->as3722, AS3722_RTC_CONTROL_REG,
			AS3722_RTC_CLK32K_OUT_EN, AS3722_RTC_CLK32K_OUT_EN);
	if (ret < 0)
		dev_err(as3722_clks->dev, "RTC_CONTROL_REG update failed, %d\n",
			ret);

	return ret;
}

static void as3722_clks_unprepare(struct clk_hw *hw)
{
	struct as3722_clks *as3722_clks = to_as3722_clks(hw);
	int ret;

	ret = as3722_update_bits(as3722_clks->as3722, AS3722_RTC_CONTROL_REG,
			AS3722_RTC_CLK32K_OUT_EN, 0);
	if (ret < 0)
		dev_err(as3722_clks->dev, "RTC_CONTROL_REG update failed, %d\n",
			ret);
}

static int as3722_clks_is_prepared(struct clk_hw *hw)
{
	struct as3722_clks *as3722_clks = to_as3722_clks(hw);
	int ret;
	u32 val;

	ret = as3722_read(as3722_clks->as3722, AS3722_RTC_CONTROL_REG, &val);
	if (ret < 0) {
		dev_err(as3722_clks->dev, "RTC_CONTROL_REG read failed, %d\n",
			ret);
		return ret;
	}

	return !!(val & AS3722_RTC_CLK32K_OUT_EN);
}

static struct clk_ops as3722_clks_ops = {
	.prepare	= as3722_clks_prepare,
	.unprepare	= as3722_clks_unprepare,
	.is_prepared	= as3722_clks_is_prepared,
	.recalc_rate	= as3722_clks_recalc_rate,
};

static struct clk_init_data as3722_clks_hw_init = {
	.name = "clk32k",
	.ops = &as3722_clks_ops,
	.flags = CLK_IS_ROOT | CLK_IGNORE_UNUSED,
};

static int as3722_clks_probe(struct platform_device *pdev)
{
	struct as3722_clks *as3722_clks;
	struct clk *clk;
	int ret;

	as3722_clks = devm_kzalloc(&pdev->dev, sizeof(*as3722_clks),
				GFP_KERNEL);
	if (!as3722_clks)
		return -ENOMEM;

	as3722_clks->clk_data.clks = devm_kzalloc(&pdev->dev,
			sizeof(*as3722_clks->clk_data.clks), GFP_KERNEL);
	if (!as3722_clks->clk_data.clks)
		return -ENOMEM;

	platform_set_drvdata(pdev, as3722_clks);

	as3722_clks->as3722 = dev_get_drvdata(pdev->dev.parent);
	as3722_clks->dev = &pdev->dev;
	as3722_clks->hw.init = &as3722_clks_hw_init;

	clk = devm_clk_register(&pdev->dev, &as3722_clks->hw);
	if (IS_ERR(clk)) {
		ret = PTR_ERR(clk);
		dev_err(&pdev->dev, "Fail to register clock %s, %d\n",
			as3722_clks_hw_init.name, ret);
		return ret;
	}
	as3722_clks->clk = clk;
	as3722_clks->clk_data.clks[0] = clk;
	as3722_clks->clk_data.clk_num = 1;
	ret = of_clk_add_provider(pdev->dev.parent->of_node,
			of_clk_src_simple_get, &as3722_clks->clk_data);
	if (ret < 0)
		dev_err(&pdev->dev, "Fail to add clock driver, %d\n", ret);
	return ret;
}

static int as3722_clks_remove(struct platform_device *pdev)
{
	of_clk_del_provider(pdev->dev.parent->of_node);
	return 0;
}

static struct platform_driver as3722_clks_driver = {
	.driver = {
		.name = "as3722-clk",
		.owner = THIS_MODULE,
	},
	.probe = as3722_clks_probe,
	.remove = as3722_clks_remove,
};

module_platform_driver(as3722_clks_driver);

MODULE_DESCRIPTION("Clock driver for ams AS3722 PMIC Device");
MODULE_ALIAS("platform:as3722-clk");
MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
MODULE_LICENSE("GPL v2");