This source file includes following definitions.
- atmel_smc_cs_conf_init
- atmel_smc_cs_encode_ncycles
- atmel_smc_cs_conf_set_timing
- atmel_smc_cs_conf_set_setup
- atmel_smc_cs_conf_set_pulse
- atmel_smc_cs_conf_set_cycle
- atmel_smc_cs_conf_apply
- atmel_hsmc_cs_conf_apply
- atmel_smc_cs_conf_get
- atmel_hsmc_cs_conf_get
- atmel_hsmc_get_reg_layout
1
2
3
4
5
6
7
8
9
10
11 #include <linux/mfd/syscon/atmel-smc.h>
12 #include <linux/string.h>
13
14
15
16
17
18
19
20 void atmel_smc_cs_conf_init(struct atmel_smc_cs_conf *conf)
21 {
22 memset(conf, 0, sizeof(*conf));
23 }
24 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_init);
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 static int atmel_smc_cs_encode_ncycles(unsigned int ncycles,
44 unsigned int msbpos,
45 unsigned int msbwidth,
46 unsigned int msbfactor,
47 unsigned int *encodedval)
48 {
49 unsigned int lsbmask = GENMASK(msbpos - 1, 0);
50 unsigned int msbmask = GENMASK(msbwidth - 1, 0);
51 unsigned int msb, lsb;
52 int ret = 0;
53
54 msb = ncycles / msbfactor;
55 lsb = ncycles % msbfactor;
56
57 if (lsb > lsbmask) {
58 lsb = 0;
59 msb++;
60 }
61
62
63
64
65
66
67 if (msb > msbmask) {
68 msb = msbmask;
69 lsb = lsbmask;
70 ret = -ERANGE;
71 }
72
73 *encodedval = (msb << msbpos) | lsb;
74
75 return ret;
76 }
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93 int atmel_smc_cs_conf_set_timing(struct atmel_smc_cs_conf *conf,
94 unsigned int shift, unsigned int ncycles)
95 {
96 unsigned int val;
97 int ret;
98
99 if (shift != ATMEL_HSMC_TIMINGS_TCLR_SHIFT &&
100 shift != ATMEL_HSMC_TIMINGS_TADL_SHIFT &&
101 shift != ATMEL_HSMC_TIMINGS_TAR_SHIFT &&
102 shift != ATMEL_HSMC_TIMINGS_TRR_SHIFT &&
103 shift != ATMEL_HSMC_TIMINGS_TWB_SHIFT)
104 return -EINVAL;
105
106
107
108
109
110
111
112 ret = atmel_smc_cs_encode_ncycles(ncycles, 3, 1, 64, &val);
113 conf->timings &= ~GENMASK(shift + 3, shift);
114 conf->timings |= val << shift;
115
116 return ret;
117 }
118 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_set_timing);
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135 int atmel_smc_cs_conf_set_setup(struct atmel_smc_cs_conf *conf,
136 unsigned int shift, unsigned int ncycles)
137 {
138 unsigned int val;
139 int ret;
140
141 if (shift != ATMEL_SMC_NWE_SHIFT && shift != ATMEL_SMC_NCS_WR_SHIFT &&
142 shift != ATMEL_SMC_NRD_SHIFT && shift != ATMEL_SMC_NCS_RD_SHIFT)
143 return -EINVAL;
144
145
146
147
148
149
150
151 ret = atmel_smc_cs_encode_ncycles(ncycles, 5, 1, 128, &val);
152 conf->setup &= ~GENMASK(shift + 7, shift);
153 conf->setup |= val << shift;
154
155 return ret;
156 }
157 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_set_setup);
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174 int atmel_smc_cs_conf_set_pulse(struct atmel_smc_cs_conf *conf,
175 unsigned int shift, unsigned int ncycles)
176 {
177 unsigned int val;
178 int ret;
179
180 if (shift != ATMEL_SMC_NWE_SHIFT && shift != ATMEL_SMC_NCS_WR_SHIFT &&
181 shift != ATMEL_SMC_NRD_SHIFT && shift != ATMEL_SMC_NCS_RD_SHIFT)
182 return -EINVAL;
183
184
185
186
187
188
189
190 ret = atmel_smc_cs_encode_ncycles(ncycles, 6, 1, 256, &val);
191 conf->pulse &= ~GENMASK(shift + 7, shift);
192 conf->pulse |= val << shift;
193
194 return ret;
195 }
196 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_set_pulse);
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213 int atmel_smc_cs_conf_set_cycle(struct atmel_smc_cs_conf *conf,
214 unsigned int shift, unsigned int ncycles)
215 {
216 unsigned int val;
217 int ret;
218
219 if (shift != ATMEL_SMC_NWE_SHIFT && shift != ATMEL_SMC_NRD_SHIFT)
220 return -EINVAL;
221
222
223
224
225
226
227
228 ret = atmel_smc_cs_encode_ncycles(ncycles, 7, 2, 256, &val);
229 conf->cycle &= ~GENMASK(shift + 15, shift);
230 conf->cycle |= val << shift;
231
232 return ret;
233 }
234 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_set_cycle);
235
236
237
238
239
240
241
242
243
244
245 void atmel_smc_cs_conf_apply(struct regmap *regmap, int cs,
246 const struct atmel_smc_cs_conf *conf)
247 {
248 regmap_write(regmap, ATMEL_SMC_SETUP(cs), conf->setup);
249 regmap_write(regmap, ATMEL_SMC_PULSE(cs), conf->pulse);
250 regmap_write(regmap, ATMEL_SMC_CYCLE(cs), conf->cycle);
251 regmap_write(regmap, ATMEL_SMC_MODE(cs), conf->mode);
252 }
253 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_apply);
254
255
256
257
258
259
260
261
262
263
264
265 void atmel_hsmc_cs_conf_apply(struct regmap *regmap,
266 const struct atmel_hsmc_reg_layout *layout,
267 int cs, const struct atmel_smc_cs_conf *conf)
268 {
269 regmap_write(regmap, ATMEL_HSMC_SETUP(layout, cs), conf->setup);
270 regmap_write(regmap, ATMEL_HSMC_PULSE(layout, cs), conf->pulse);
271 regmap_write(regmap, ATMEL_HSMC_CYCLE(layout, cs), conf->cycle);
272 regmap_write(regmap, ATMEL_HSMC_TIMINGS(layout, cs), conf->timings);
273 regmap_write(regmap, ATMEL_HSMC_MODE(layout, cs), conf->mode);
274 }
275 EXPORT_SYMBOL_GPL(atmel_hsmc_cs_conf_apply);
276
277
278
279
280
281
282
283
284
285
286 void atmel_smc_cs_conf_get(struct regmap *regmap, int cs,
287 struct atmel_smc_cs_conf *conf)
288 {
289 regmap_read(regmap, ATMEL_SMC_SETUP(cs), &conf->setup);
290 regmap_read(regmap, ATMEL_SMC_PULSE(cs), &conf->pulse);
291 regmap_read(regmap, ATMEL_SMC_CYCLE(cs), &conf->cycle);
292 regmap_read(regmap, ATMEL_SMC_MODE(cs), &conf->mode);
293 }
294 EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_get);
295
296
297
298
299
300
301
302
303
304
305
306 void atmel_hsmc_cs_conf_get(struct regmap *regmap,
307 const struct atmel_hsmc_reg_layout *layout,
308 int cs, struct atmel_smc_cs_conf *conf)
309 {
310 regmap_read(regmap, ATMEL_HSMC_SETUP(layout, cs), &conf->setup);
311 regmap_read(regmap, ATMEL_HSMC_PULSE(layout, cs), &conf->pulse);
312 regmap_read(regmap, ATMEL_HSMC_CYCLE(layout, cs), &conf->cycle);
313 regmap_read(regmap, ATMEL_HSMC_TIMINGS(layout, cs), &conf->timings);
314 regmap_read(regmap, ATMEL_HSMC_MODE(layout, cs), &conf->mode);
315 }
316 EXPORT_SYMBOL_GPL(atmel_hsmc_cs_conf_get);
317
318 static const struct atmel_hsmc_reg_layout sama5d3_reg_layout = {
319 .timing_regs_offset = 0x600,
320 };
321
322 static const struct atmel_hsmc_reg_layout sama5d2_reg_layout = {
323 .timing_regs_offset = 0x700,
324 };
325
326 static const struct of_device_id atmel_smc_ids[] = {
327 { .compatible = "atmel,at91sam9260-smc", .data = NULL },
328 { .compatible = "atmel,sama5d3-smc", .data = &sama5d3_reg_layout },
329 { .compatible = "atmel,sama5d2-smc", .data = &sama5d2_reg_layout },
330 { },
331 };
332
333
334
335
336
337
338
339
340
341
342 const struct atmel_hsmc_reg_layout *
343 atmel_hsmc_get_reg_layout(struct device_node *np)
344 {
345 const struct of_device_id *match;
346
347 match = of_match_node(atmel_smc_ids, np);
348
349 return match ? match->data : ERR_PTR(-EINVAL);
350 }
351 EXPORT_SYMBOL_GPL(atmel_hsmc_get_reg_layout);