blob: aadabd9d1e2b68d69d9cd491a5fab7037747515b [file] [log] [blame]
Boris BREZILLONf090fb32013-10-11 12:22:06 +02001/*
2 * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 */
10
11#include <linux/clk-provider.h>
12#include <linux/clkdev.h>
13#include <linux/clk/at91_pmc.h>
Boris BREZILLONf090fb32013-10-11 12:22:06 +020014#include <linux/of.h>
Boris Brezillon1bdf0232014-09-07 08:14:29 +020015#include <linux/mfd/syscon.h>
16#include <linux/regmap.h>
Boris BREZILLONf090fb32013-10-11 12:22:06 +020017
18#include "pmc.h"
19
20#define UTMI_FIXED_MUL 40
21
22struct clk_utmi {
23 struct clk_hw hw;
Boris Brezillon1bdf0232014-09-07 08:14:29 +020024 struct regmap *regmap;
Boris BREZILLONf090fb32013-10-11 12:22:06 +020025};
26
27#define to_clk_utmi(hw) container_of(hw, struct clk_utmi, hw)
28
Boris Brezillon1bdf0232014-09-07 08:14:29 +020029static inline bool clk_utmi_ready(struct regmap *regmap)
30{
31 unsigned int status;
32
33 regmap_read(regmap, AT91_PMC_SR, &status);
34
35 return status & AT91_PMC_LOCKU;
36}
37
Boris BREZILLONf090fb32013-10-11 12:22:06 +020038static int clk_utmi_prepare(struct clk_hw *hw)
39{
40 struct clk_utmi *utmi = to_clk_utmi(hw);
Boris Brezillon1bdf0232014-09-07 08:14:29 +020041 unsigned int uckr = AT91_PMC_UPLLEN | AT91_PMC_UPLLCOUNT |
42 AT91_PMC_BIASEN;
Boris BREZILLONf090fb32013-10-11 12:22:06 +020043
Boris Brezillon1bdf0232014-09-07 08:14:29 +020044 regmap_update_bits(utmi->regmap, AT91_CKGR_UCKR, uckr, uckr);
Boris BREZILLONf090fb32013-10-11 12:22:06 +020045
Alexandre Belloni99a81702015-09-16 23:47:39 +020046 while (!clk_utmi_ready(utmi->regmap))
47 cpu_relax();
Boris BREZILLONf090fb32013-10-11 12:22:06 +020048
49 return 0;
50}
51
52static int clk_utmi_is_prepared(struct clk_hw *hw)
53{
54 struct clk_utmi *utmi = to_clk_utmi(hw);
Boris BREZILLONf090fb32013-10-11 12:22:06 +020055
Boris Brezillon1bdf0232014-09-07 08:14:29 +020056 return clk_utmi_ready(utmi->regmap);
Boris BREZILLONf090fb32013-10-11 12:22:06 +020057}
58
59static void clk_utmi_unprepare(struct clk_hw *hw)
60{
61 struct clk_utmi *utmi = to_clk_utmi(hw);
Boris BREZILLONf090fb32013-10-11 12:22:06 +020062
Boris Brezillon1bdf0232014-09-07 08:14:29 +020063 regmap_update_bits(utmi->regmap, AT91_CKGR_UCKR, AT91_PMC_UPLLEN, 0);
Boris BREZILLONf090fb32013-10-11 12:22:06 +020064}
65
66static unsigned long clk_utmi_recalc_rate(struct clk_hw *hw,
67 unsigned long parent_rate)
68{
69 /* UTMI clk is a fixed clk multiplier */
70 return parent_rate * UTMI_FIXED_MUL;
71}
72
73static const struct clk_ops utmi_ops = {
74 .prepare = clk_utmi_prepare,
75 .unprepare = clk_utmi_unprepare,
76 .is_prepared = clk_utmi_is_prepared,
77 .recalc_rate = clk_utmi_recalc_rate,
78};
79
Stephen Boydf5644f12016-06-01 14:31:22 -070080static struct clk_hw * __init
Alexandre Belloni99a81702015-09-16 23:47:39 +020081at91_clk_register_utmi(struct regmap *regmap,
Boris BREZILLONf090fb32013-10-11 12:22:06 +020082 const char *name, const char *parent_name)
83{
Boris BREZILLONf090fb32013-10-11 12:22:06 +020084 struct clk_utmi *utmi;
Stephen Boydf5644f12016-06-01 14:31:22 -070085 struct clk_hw *hw;
Boris BREZILLONf090fb32013-10-11 12:22:06 +020086 struct clk_init_data init;
Stephen Boydf5644f12016-06-01 14:31:22 -070087 int ret;
Boris BREZILLONf090fb32013-10-11 12:22:06 +020088
89 utmi = kzalloc(sizeof(*utmi), GFP_KERNEL);
90 if (!utmi)
91 return ERR_PTR(-ENOMEM);
92
93 init.name = name;
94 init.ops = &utmi_ops;
95 init.parent_names = parent_name ? &parent_name : NULL;
96 init.num_parents = parent_name ? 1 : 0;
97 init.flags = CLK_SET_RATE_GATE;
98
99 utmi->hw.init = &init;
Boris Brezillon1bdf0232014-09-07 08:14:29 +0200100 utmi->regmap = regmap;
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200101
Stephen Boydf5644f12016-06-01 14:31:22 -0700102 hw = &utmi->hw;
103 ret = clk_hw_register(NULL, &utmi->hw);
104 if (ret) {
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200105 kfree(utmi);
Stephen Boydf5644f12016-06-01 14:31:22 -0700106 hw = ERR_PTR(ret);
107 }
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200108
Stephen Boydf5644f12016-06-01 14:31:22 -0700109 return hw;
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200110}
111
Boris Brezillon1bdf0232014-09-07 08:14:29 +0200112static void __init of_at91sam9x5_clk_utmi_setup(struct device_node *np)
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200113{
Stephen Boydf5644f12016-06-01 14:31:22 -0700114 struct clk_hw *hw;
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200115 const char *parent_name;
116 const char *name = np->name;
Boris Brezillon1bdf0232014-09-07 08:14:29 +0200117 struct regmap *regmap;
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200118
119 parent_name = of_clk_get_parent_name(np, 0);
120
121 of_property_read_string(np, "clock-output-names", &name);
122
Boris Brezillon1bdf0232014-09-07 08:14:29 +0200123 regmap = syscon_node_to_regmap(of_get_parent(np));
124 if (IS_ERR(regmap))
125 return;
126
Stephen Boydf5644f12016-06-01 14:31:22 -0700127 hw = at91_clk_register_utmi(regmap, name, parent_name);
128 if (IS_ERR(hw))
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200129 return;
130
Stephen Boydf5644f12016-06-01 14:31:22 -0700131 of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
Boris BREZILLONf090fb32013-10-11 12:22:06 +0200132 return;
133}
Boris Brezillon1bdf0232014-09-07 08:14:29 +0200134CLK_OF_DECLARE(at91sam9x5_clk_utmi, "atmel,at91sam9x5-clk-utmi",
135 of_at91sam9x5_clk_utmi_setup);