blob: ebf69ff48ae2656594b0840fb7bd8a917e159406 [file] [log] [blame]
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +02001/*
2 * EBI driver for Atmel chips
3 * inspired by the fsl weim bus driver
4 *
5 * Copyright (C) 2013 Jean-Jacques Hiblot <jjhiblot@traphandler.com>
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/clk.h>
13#include <linux/io.h>
14#include <linux/mfd/syscon.h>
15#include <linux/mfd/syscon/atmel-matrix.h>
16#include <linux/mfd/syscon/atmel-smc.h>
Paul Gortmaker8a86a092016-06-16 20:37:48 -040017#include <linux/init.h>
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020018#include <linux/of_device.h>
19#include <linux/regmap.h>
20
Boris Brezillon9453fa42017-03-16 09:30:32 +010021struct atmel_ebi_dev_config {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020022 int cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010023 struct atmel_smc_cs_conf smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020024};
25
Boris Brezillon9453fa42017-03-16 09:30:32 +010026struct atmel_ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020027
Boris Brezillon9453fa42017-03-16 09:30:32 +010028struct atmel_ebi_dev {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020029 struct list_head node;
Boris Brezillon9453fa42017-03-16 09:30:32 +010030 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020031 u32 mode;
32 int numcs;
Boris Brezillon9453fa42017-03-16 09:30:32 +010033 struct atmel_ebi_dev_config configs[];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020034};
35
Boris Brezillon9453fa42017-03-16 09:30:32 +010036struct atmel_ebi_caps {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020037 unsigned int available_cs;
Boris Brezillond9f81da2017-03-16 09:30:30 +010038 unsigned int ebi_csa_offs;
Boris Brezillon9453fa42017-03-16 09:30:32 +010039 void (*get_config)(struct atmel_ebi_dev *ebid,
40 struct atmel_ebi_dev_config *conf);
41 int (*xlate_config)(struct atmel_ebi_dev *ebid,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020042 struct device_node *configs_np,
Boris Brezillon9453fa42017-03-16 09:30:32 +010043 struct atmel_ebi_dev_config *conf);
44 void (*apply_config)(struct atmel_ebi_dev *ebid,
45 struct atmel_ebi_dev_config *conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020046};
47
Boris Brezillon9453fa42017-03-16 09:30:32 +010048struct atmel_ebi {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020049 struct clk *clk;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020050 struct regmap *matrix;
Boris Brezillon87108dc2017-01-27 10:24:09 +010051 struct {
52 struct regmap *regmap;
53 struct clk *clk;
54 } smc;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020055
56 struct device *dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +010057 const struct atmel_ebi_caps *caps;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020058 struct list_head devs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020059};
60
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010061struct atmel_smc_timing_xlate {
62 const char *name;
63 int (*converter)(struct atmel_smc_cs_conf *conf,
64 unsigned int shift, unsigned int nycles);
65 unsigned int shift;
66};
67
68#define ATMEL_SMC_SETUP_XLATE(nm, pos) \
69 { .name = nm, .converter = atmel_smc_cs_conf_set_setup, .shift = pos}
70
71#define ATMEL_SMC_PULSE_XLATE(nm, pos) \
72 { .name = nm, .converter = atmel_smc_cs_conf_set_pulse, .shift = pos}
73
74#define ATMEL_SMC_CYCLE_XLATE(nm, pos) \
Alexander Dahl3fb3b3c2017-07-25 14:00:24 +020075 { .name = nm, .converter = atmel_smc_cs_conf_set_cycle, .shift = pos}
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010076
Boris Brezillon9453fa42017-03-16 09:30:32 +010077static void at91sam9_ebi_get_config(struct atmel_ebi_dev *ebid,
78 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020079{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010080 atmel_smc_cs_conf_get(ebid->ebi->smc.regmap, conf->cs,
81 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020082}
83
Boris Brezillon9453fa42017-03-16 09:30:32 +010084static void sama5_ebi_get_config(struct atmel_ebi_dev *ebid,
85 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020086{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010087 atmel_hsmc_cs_conf_get(ebid->ebi->smc.regmap, conf->cs,
88 &conf->smcconf);
89}
90
91static const struct atmel_smc_timing_xlate timings_xlate_table[] = {
92 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-rd-setup-ns",
93 ATMEL_SMC_NCS_RD_SHIFT),
94 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-wr-setup-ns",
95 ATMEL_SMC_NCS_WR_SHIFT),
96 ATMEL_SMC_SETUP_XLATE("atmel,smc-nrd-setup-ns", ATMEL_SMC_NRD_SHIFT),
97 ATMEL_SMC_SETUP_XLATE("atmel,smc-nwe-setup-ns", ATMEL_SMC_NWE_SHIFT),
98 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-rd-pulse-ns",
99 ATMEL_SMC_NCS_RD_SHIFT),
100 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-wr-pulse-ns",
101 ATMEL_SMC_NCS_WR_SHIFT),
102 ATMEL_SMC_PULSE_XLATE("atmel,smc-nrd-pulse-ns", ATMEL_SMC_NRD_SHIFT),
103 ATMEL_SMC_PULSE_XLATE("atmel,smc-nwe-pulse-ns", ATMEL_SMC_NWE_SHIFT),
104 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nrd-cycle-ns", ATMEL_SMC_NRD_SHIFT),
105 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nwe-cycle-ns", ATMEL_SMC_NWE_SHIFT),
106};
107
Boris Brezillon9453fa42017-03-16 09:30:32 +0100108static int atmel_ebi_xslate_smc_timings(struct atmel_ebi_dev *ebid,
109 struct device_node *np,
110 struct atmel_smc_cs_conf *smcconf)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100111{
112 unsigned int clk_rate = clk_get_rate(ebid->ebi->clk);
113 unsigned int clk_period_ns = NSEC_PER_SEC / clk_rate;
114 bool required = false;
115 unsigned int ncycles;
116 int ret, i;
117 u32 val;
118
119 ret = of_property_read_u32(np, "atmel,smc-tdf-ns", &val);
120 if (!ret) {
121 required = true;
122 ncycles = DIV_ROUND_UP(val, clk_period_ns);
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200123 if (ncycles > ATMEL_SMC_MODE_TDF_MAX) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100124 ret = -EINVAL;
125 goto out;
126 }
127
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200128 if (ncycles < ATMEL_SMC_MODE_TDF_MIN)
129 ncycles = ATMEL_SMC_MODE_TDF_MIN;
130
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100131 smcconf->mode |= ATMEL_SMC_MODE_TDF(ncycles);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200132 }
133
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100134 for (i = 0; i < ARRAY_SIZE(timings_xlate_table); i++) {
135 const struct atmel_smc_timing_xlate *xlate;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200136
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100137 xlate = &timings_xlate_table[i];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200138
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100139 ret = of_property_read_u32(np, xlate->name, &val);
140 if (ret) {
141 if (!required)
142 continue;
143 else
144 break;
145 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200146
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100147 if (!required) {
148 ret = -EINVAL;
149 break;
150 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200151
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100152 ncycles = DIV_ROUND_UP(val, clk_period_ns);
153 ret = xlate->converter(smcconf, xlate->shift, ncycles);
154 if (ret)
155 goto out;
156 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200157
158out:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100159 if (ret) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200160 dev_err(ebid->ebi->dev,
161 "missing or invalid timings definition in %s",
162 np->full_name);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100163 return ret;
164 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200165
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100166 return required;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200167}
168
Boris Brezillon9453fa42017-03-16 09:30:32 +0100169static int atmel_ebi_xslate_smc_config(struct atmel_ebi_dev *ebid,
170 struct device_node *np,
171 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200172{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100173 struct atmel_smc_cs_conf *smcconf = &conf->smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200174 bool required = false;
175 const char *tmp_str;
176 u32 tmp;
177 int ret;
178
179 ret = of_property_read_u32(np, "atmel,smc-bus-width", &tmp);
180 if (!ret) {
181 switch (tmp) {
182 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100183 smcconf->mode |= ATMEL_SMC_MODE_DBW_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200184 break;
185
186 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100187 smcconf->mode |= ATMEL_SMC_MODE_DBW_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200188 break;
189
190 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100191 smcconf->mode |= ATMEL_SMC_MODE_DBW_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200192 break;
193
194 default:
195 return -EINVAL;
196 }
197
198 required = true;
199 }
200
201 if (of_property_read_bool(np, "atmel,smc-tdf-optimized")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100202 smcconf->mode |= ATMEL_SMC_MODE_TDFMODE_OPTIMIZED;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200203 required = true;
204 }
205
206 tmp_str = NULL;
207 of_property_read_string(np, "atmel,smc-byte-access-type", &tmp_str);
208 if (tmp_str && !strcmp(tmp_str, "write")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100209 smcconf->mode |= ATMEL_SMC_MODE_BAT_WRITE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200210 required = true;
211 }
212
213 tmp_str = NULL;
214 of_property_read_string(np, "atmel,smc-read-mode", &tmp_str);
215 if (tmp_str && !strcmp(tmp_str, "nrd")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100216 smcconf->mode |= ATMEL_SMC_MODE_READMODE_NRD;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200217 required = true;
218 }
219
220 tmp_str = NULL;
221 of_property_read_string(np, "atmel,smc-write-mode", &tmp_str);
222 if (tmp_str && !strcmp(tmp_str, "nwe")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100223 smcconf->mode |= ATMEL_SMC_MODE_WRITEMODE_NWE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200224 required = true;
225 }
226
227 tmp_str = NULL;
228 of_property_read_string(np, "atmel,smc-exnw-mode", &tmp_str);
229 if (tmp_str) {
230 if (!strcmp(tmp_str, "frozen"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100231 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_FROZEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200232 else if (!strcmp(tmp_str, "ready"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100233 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_READY;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200234 else if (strcmp(tmp_str, "disabled"))
235 return -EINVAL;
236
237 required = true;
238 }
239
240 ret = of_property_read_u32(np, "atmel,smc-page-mode", &tmp);
241 if (!ret) {
242 switch (tmp) {
243 case 4:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100244 smcconf->mode |= ATMEL_SMC_MODE_PS_4;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200245 break;
246
247 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100248 smcconf->mode |= ATMEL_SMC_MODE_PS_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200249 break;
250
251 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100252 smcconf->mode |= ATMEL_SMC_MODE_PS_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200253 break;
254
255 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100256 smcconf->mode |= ATMEL_SMC_MODE_PS_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200257 break;
258
259 default:
260 return -EINVAL;
261 }
262
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100263 smcconf->mode |= ATMEL_SMC_MODE_PMEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200264 required = true;
265 }
266
Boris Brezillon9453fa42017-03-16 09:30:32 +0100267 ret = atmel_ebi_xslate_smc_timings(ebid, np, &conf->smcconf);
Alexander Dahlbc9b9342017-07-25 14:00:22 +0200268 if (ret < 0)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100269 return -EINVAL;
270
271 if ((ret > 0 && !required) || (!ret && required)) {
272 dev_err(ebid->ebi->dev, "missing atmel,smc- properties in %s",
273 np->full_name);
274 return -EINVAL;
275 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200276
277 return required;
278}
279
Boris Brezillon9453fa42017-03-16 09:30:32 +0100280static void at91sam9_ebi_apply_config(struct atmel_ebi_dev *ebid,
281 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200282{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100283 atmel_smc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
284 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200285}
286
Boris Brezillon9453fa42017-03-16 09:30:32 +0100287static void sama5_ebi_apply_config(struct atmel_ebi_dev *ebid,
288 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200289{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100290 atmel_hsmc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
291 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200292}
293
Boris Brezillon9453fa42017-03-16 09:30:32 +0100294static int atmel_ebi_dev_setup(struct atmel_ebi *ebi, struct device_node *np,
295 int reg_cells)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200296{
Boris Brezillon9453fa42017-03-16 09:30:32 +0100297 const struct atmel_ebi_caps *caps = ebi->caps;
298 struct atmel_ebi_dev_config conf = { };
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200299 struct device *dev = ebi->dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100300 struct atmel_ebi_dev *ebid;
Boris Brezillon987e0792017-01-27 10:10:37 +0100301 unsigned long cslines = 0;
302 int ret, numcs = 0, nentries, i;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200303 bool apply = false;
Boris Brezillon987e0792017-01-27 10:10:37 +0100304 u32 cs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200305
Boris Brezillon987e0792017-01-27 10:10:37 +0100306 nentries = of_property_count_elems_of_size(np, "reg",
307 reg_cells * sizeof(u32));
308 for (i = 0; i < nentries; i++) {
309 ret = of_property_read_u32_index(np, "reg", i * reg_cells,
310 &cs);
311 if (ret)
312 return ret;
313
314 if (cs >= AT91_MATRIX_EBI_NUM_CS ||
315 !(ebi->caps->available_cs & BIT(cs))) {
316 dev_err(dev, "invalid reg property in %s\n",
317 np->full_name);
318 return -EINVAL;
319 }
320
321 if (!test_and_set_bit(cs, &cslines))
322 numcs++;
323 }
324
325 if (!numcs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200326 dev_err(dev, "invalid reg property in %s\n", np->full_name);
327 return -EINVAL;
328 }
329
330 ebid = devm_kzalloc(ebi->dev,
331 sizeof(*ebid) + (numcs * sizeof(*ebid->configs)),
332 GFP_KERNEL);
333 if (!ebid)
334 return -ENOMEM;
335
336 ebid->ebi = ebi;
Boris Brezillonaaa572b2017-03-16 09:30:33 +0100337 ebid->numcs = numcs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200338
339 ret = caps->xlate_config(ebid, np, &conf);
340 if (ret < 0)
341 return ret;
342 else if (ret)
343 apply = true;
344
Boris Brezillon987e0792017-01-27 10:10:37 +0100345 i = 0;
346 for_each_set_bit(cs, &cslines, AT91_MATRIX_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200347 ebid->configs[i].cs = cs;
348
349 if (apply) {
350 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100351 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200352 }
353
354 caps->get_config(ebid, &ebid->configs[i]);
355
356 /*
357 * Attach the EBI device to the generic SMC logic if at least
358 * one "atmel,smc-" property is present.
359 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100360 if (ebi->caps->ebi_csa_offs && apply)
361 regmap_update_bits(ebi->matrix,
362 ebi->caps->ebi_csa_offs,
363 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100364
365 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200366 }
367
368 list_add_tail(&ebid->node, &ebi->devs);
369
370 return 0;
371}
372
Boris Brezillon9453fa42017-03-16 09:30:32 +0100373static const struct atmel_ebi_caps at91sam9260_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200374 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100375 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200376 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100377 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200378 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200379};
380
Boris Brezillon9453fa42017-03-16 09:30:32 +0100381static const struct atmel_ebi_caps at91sam9261_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200382 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100383 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200384 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100385 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200386 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200387};
388
Boris Brezillon9453fa42017-03-16 09:30:32 +0100389static const struct atmel_ebi_caps at91sam9263_ebi0_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200390 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100391 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200392 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100393 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200394 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200395};
396
Boris Brezillon9453fa42017-03-16 09:30:32 +0100397static const struct atmel_ebi_caps at91sam9263_ebi1_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200398 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100399 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200400 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100401 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200402 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200403};
404
Boris Brezillon9453fa42017-03-16 09:30:32 +0100405static const struct atmel_ebi_caps at91sam9rl_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200406 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100407 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200408 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100409 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200410 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200411};
412
Boris Brezillon9453fa42017-03-16 09:30:32 +0100413static const struct atmel_ebi_caps at91sam9g45_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200414 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100415 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200416 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100417 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200418 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200419};
420
Boris Brezillon9453fa42017-03-16 09:30:32 +0100421static const struct atmel_ebi_caps at91sam9x5_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200422 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100423 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200424 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100425 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200426 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200427};
428
Boris Brezillon9453fa42017-03-16 09:30:32 +0100429static const struct atmel_ebi_caps sama5d3_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200430 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100431 .get_config = sama5_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100432 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100433 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200434};
435
Boris Brezillon9453fa42017-03-16 09:30:32 +0100436static const struct of_device_id atmel_ebi_id_table[] = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200437 {
438 .compatible = "atmel,at91sam9260-ebi",
439 .data = &at91sam9260_ebi_caps,
440 },
441 {
442 .compatible = "atmel,at91sam9261-ebi",
443 .data = &at91sam9261_ebi_caps,
444 },
445 {
446 .compatible = "atmel,at91sam9263-ebi0",
447 .data = &at91sam9263_ebi0_caps,
448 },
449 {
450 .compatible = "atmel,at91sam9263-ebi1",
451 .data = &at91sam9263_ebi1_caps,
452 },
453 {
454 .compatible = "atmel,at91sam9rl-ebi",
455 .data = &at91sam9rl_ebi_caps,
456 },
457 {
458 .compatible = "atmel,at91sam9g45-ebi",
459 .data = &at91sam9g45_ebi_caps,
460 },
461 {
462 .compatible = "atmel,at91sam9x5-ebi",
463 .data = &at91sam9x5_ebi_caps,
464 },
465 {
466 .compatible = "atmel,sama5d3-ebi",
467 .data = &sama5d3_ebi_caps,
468 },
469 { /* sentinel */ }
470};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200471
Boris Brezillon9453fa42017-03-16 09:30:32 +0100472static int atmel_ebi_dev_disable(struct atmel_ebi *ebi, struct device_node *np)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200473{
474 struct device *dev = ebi->dev;
475 struct property *newprop;
476
477 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
478 if (!newprop)
479 return -ENOMEM;
480
481 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
482 if (!newprop->name)
483 return -ENOMEM;
484
485 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000486 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200487 return -ENOMEM;
488
489 newprop->length = sizeof("disabled");
490
491 return of_update_property(np, newprop);
492}
493
Boris Brezillon9453fa42017-03-16 09:30:32 +0100494static int atmel_ebi_probe(struct platform_device *pdev)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200495{
496 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100497 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200498 const struct of_device_id *match;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100499 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200500 int ret, reg_cells;
501 struct clk *clk;
502 u32 val;
503
Boris Brezillon9453fa42017-03-16 09:30:32 +0100504 match = of_match_device(atmel_ebi_id_table, dev);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200505 if (!match || !match->data)
506 return -EINVAL;
507
508 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
509 if (!ebi)
510 return -ENOMEM;
511
Boris Brezillon44073192017-03-16 09:30:34 +0100512 platform_set_drvdata(pdev, ebi);
513
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200514 INIT_LIST_HEAD(&ebi->devs);
515 ebi->caps = match->data;
516 ebi->dev = dev;
517
518 clk = devm_clk_get(dev, NULL);
519 if (IS_ERR(clk))
520 return PTR_ERR(clk);
521
522 ebi->clk = clk;
523
Boris Brezillon87108dc2017-01-27 10:24:09 +0100524 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
525
526 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
527 if (IS_ERR(ebi->smc.regmap))
528 return PTR_ERR(ebi->smc.regmap);
529
530 ebi->smc.clk = of_clk_get(smc_np, 0);
531 if (IS_ERR(ebi->smc.clk)) {
532 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
533 return PTR_ERR(ebi->smc.clk);
534
535 ebi->smc.clk = NULL;
536 }
537 ret = clk_prepare_enable(ebi->smc.clk);
538 if (ret)
539 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200540
541 /*
542 * The sama5d3 does not provide an EBICSA register and thus does need
543 * to access the matrix registers.
544 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100545 if (ebi->caps->ebi_csa_offs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200546 ebi->matrix =
547 syscon_regmap_lookup_by_phandle(np, "atmel,matrix");
548 if (IS_ERR(ebi->matrix))
549 return PTR_ERR(ebi->matrix);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200550 }
551
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200552 ret = of_property_read_u32(np, "#address-cells", &val);
553 if (ret) {
554 dev_err(dev, "missing #address-cells property\n");
555 return ret;
556 }
557
558 reg_cells = val;
559
560 ret = of_property_read_u32(np, "#size-cells", &val);
561 if (ret) {
562 dev_err(dev, "missing #address-cells property\n");
563 return ret;
564 }
565
566 reg_cells += val;
567
568 for_each_available_child_of_node(np, child) {
569 if (!of_find_property(child, "reg", NULL))
570 continue;
571
Boris Brezillon9453fa42017-03-16 09:30:32 +0100572 ret = atmel_ebi_dev_setup(ebi, child, reg_cells);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200573 if (ret) {
574 dev_err(dev, "failed to configure EBI bus for %s, disabling the device",
575 child->full_name);
576
Boris Brezillon9453fa42017-03-16 09:30:32 +0100577 ret = atmel_ebi_dev_disable(ebi, child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200578 if (ret)
579 return ret;
580 }
581 }
582
583 return of_platform_populate(np, NULL, NULL, dev);
584}
585
Arnd Bergmann41b80bb2017-04-19 19:48:07 +0200586static __maybe_unused int atmel_ebi_resume(struct device *dev)
Boris Brezillon44073192017-03-16 09:30:34 +0100587{
588 struct atmel_ebi *ebi = dev_get_drvdata(dev);
589 struct atmel_ebi_dev *ebid;
590
591 list_for_each_entry(ebid, &ebi->devs, node) {
592 int i;
593
594 for (i = 0; i < ebid->numcs; i++)
595 ebid->ebi->caps->apply_config(ebid, &ebid->configs[i]);
596 }
597
598 return 0;
599}
600
601static SIMPLE_DEV_PM_OPS(atmel_ebi_pm_ops, NULL, atmel_ebi_resume);
602
Boris Brezillon9453fa42017-03-16 09:30:32 +0100603static struct platform_driver atmel_ebi_driver = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200604 .driver = {
605 .name = "atmel-ebi",
Boris Brezillon9453fa42017-03-16 09:30:32 +0100606 .of_match_table = atmel_ebi_id_table,
Boris Brezillon44073192017-03-16 09:30:34 +0100607 .pm = &atmel_ebi_pm_ops,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200608 },
609};
Boris Brezillon9453fa42017-03-16 09:30:32 +0100610builtin_platform_driver_probe(atmel_ebi_driver, atmel_ebi_probe);