aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-01-27 09:05:55 -0500
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-02-17 11:53:04 -0500
commit60cad091a5fefa4866c0fdea8cc34c97622de578 (patch)
treeeca46687b7c3a09a1acd8d5187081716ee54d30f
parentaf719c18075f76f83e363bd13a97937b2e9f3f7d (diff)
clk: at91: pmc: remove useless capacities handling
Capacities only handles interrupts and they are not use anymore. Remove the whole initialisation. Acked-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-rw-r--r--drivers/clk/at91/pmc.c128
1 files changed, 0 insertions, 128 deletions
diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
index dce285549de2..526df5ba042d 100644
--- a/drivers/clk/at91/pmc.c
+++ b/drivers/clk/at91/pmc.c
@@ -19,15 +19,6 @@
19 19
20#include "pmc.h" 20#include "pmc.h"
21 21
22struct at91_pmc_caps {
23 u32 available_irqs;
24};
25
26struct at91_pmc {
27 struct regmap *regmap;
28 const struct at91_pmc_caps *caps;
29};
30
31int of_at91_get_clk_range(struct device_node *np, const char *propname, 22int of_at91_get_clk_range(struct device_node *np, const char *propname,
32 struct clk_range *range) 23 struct clk_range *range)
33{ 24{
@@ -50,122 +41,3 @@ int of_at91_get_clk_range(struct device_node *np, const char *propname,
50 return 0; 41 return 0;
51} 42}
52EXPORT_SYMBOL_GPL(of_at91_get_clk_range); 43EXPORT_SYMBOL_GPL(of_at91_get_clk_range);
53
54static const struct at91_pmc_caps at91rm9200_caps = {
55 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_LOCKB |
56 AT91_PMC_MCKRDY | AT91_PMC_PCK0RDY |
57 AT91_PMC_PCK1RDY | AT91_PMC_PCK2RDY |
58 AT91_PMC_PCK3RDY,
59};
60
61static const struct at91_pmc_caps at91sam9260_caps = {
62 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_LOCKB |
63 AT91_PMC_MCKRDY | AT91_PMC_PCK0RDY |
64 AT91_PMC_PCK1RDY,
65};
66
67static const struct at91_pmc_caps at91sam9g45_caps = {
68 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_MCKRDY |
69 AT91_PMC_LOCKU | AT91_PMC_PCK0RDY |
70 AT91_PMC_PCK1RDY,
71};
72
73static const struct at91_pmc_caps at91sam9n12_caps = {
74 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_LOCKB |
75 AT91_PMC_MCKRDY | AT91_PMC_PCK0RDY |
76 AT91_PMC_PCK1RDY | AT91_PMC_MOSCSELS |
77 AT91_PMC_MOSCRCS | AT91_PMC_CFDEV,
78};
79
80static const struct at91_pmc_caps at91sam9x5_caps = {
81 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_MCKRDY |
82 AT91_PMC_LOCKU | AT91_PMC_PCK0RDY |
83 AT91_PMC_PCK1RDY | AT91_PMC_MOSCSELS |
84 AT91_PMC_MOSCRCS | AT91_PMC_CFDEV,
85};
86
87static const struct at91_pmc_caps sama5d2_caps = {
88 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_MCKRDY |
89 AT91_PMC_LOCKU | AT91_PMC_PCK0RDY |
90 AT91_PMC_PCK1RDY | AT91_PMC_PCK2RDY |
91 AT91_PMC_MOSCSELS | AT91_PMC_MOSCRCS |
92 AT91_PMC_CFDEV | AT91_PMC_GCKRDY,
93};
94
95static const struct at91_pmc_caps sama5d3_caps = {
96 .available_irqs = AT91_PMC_MOSCS | AT91_PMC_LOCKA | AT91_PMC_MCKRDY |
97 AT91_PMC_LOCKU | AT91_PMC_PCK0RDY |
98 AT91_PMC_PCK1RDY | AT91_PMC_PCK2RDY |
99 AT91_PMC_MOSCSELS | AT91_PMC_MOSCRCS |
100 AT91_PMC_CFDEV,
101};
102
103static void __init of_at91_pmc_setup(struct device_node *np,
104 const struct at91_pmc_caps *caps)
105{
106 struct at91_pmc *pmc;
107 struct regmap *regmap;
108
109 regmap = syscon_node_to_regmap(np);
110 if (IS_ERR(regmap))
111 panic("Could not retrieve syscon regmap");
112
113 pmc = kzalloc(sizeof(*pmc), GFP_KERNEL);
114 if (!pmc)
115 return;
116
117 pmc->regmap = regmap;
118 pmc->caps = caps;
119
120 regmap_write(pmc->regmap, AT91_PMC_IDR, 0xffffffff);
121
122}
123
124static void __init of_at91rm9200_pmc_setup(struct device_node *np)
125{
126 of_at91_pmc_setup(np, &at91rm9200_caps);
127}
128CLK_OF_DECLARE(at91rm9200_clk_pmc, "atmel,at91rm9200-pmc",
129 of_at91rm9200_pmc_setup);
130
131static void __init of_at91sam9260_pmc_setup(struct device_node *np)
132{
133 of_at91_pmc_setup(np, &at91sam9260_caps);
134}
135CLK_OF_DECLARE(at91sam9260_clk_pmc, "atmel,at91sam9260-pmc",
136 of_at91sam9260_pmc_setup);
137
138static void __init of_at91sam9g45_pmc_setup(struct device_node *np)
139{
140 of_at91_pmc_setup(np, &at91sam9g45_caps);
141}
142CLK_OF_DECLARE(at91sam9g45_clk_pmc, "atmel,at91sam9g45-pmc",
143 of_at91sam9g45_pmc_setup);
144
145static void __init of_at91sam9n12_pmc_setup(struct device_node *np)
146{
147 of_at91_pmc_setup(np, &at91sam9n12_caps);
148}
149CLK_OF_DECLARE(at91sam9n12_clk_pmc, "atmel,at91sam9n12-pmc",
150 of_at91sam9n12_pmc_setup);
151
152static void __init of_at91sam9x5_pmc_setup(struct device_node *np)
153{
154 of_at91_pmc_setup(np, &at91sam9x5_caps);
155}
156CLK_OF_DECLARE(at91sam9x5_clk_pmc, "atmel,at91sam9x5-pmc",
157 of_at91sam9x5_pmc_setup);
158
159static void __init of_sama5d2_pmc_setup(struct device_node *np)
160{
161 of_at91_pmc_setup(np, &sama5d2_caps);
162}
163CLK_OF_DECLARE(sama5d2_clk_pmc, "atmel,sama5d2-pmc",
164 of_sama5d2_pmc_setup);
165
166static void __init of_sama5d3_pmc_setup(struct device_node *np)
167{
168 of_at91_pmc_setup(np, &sama5d3_caps);
169}
170CLK_OF_DECLARE(sama5d3_clk_pmc, "atmel,sama5d3-pmc",
171 of_sama5d3_pmc_setup);