blob: 99e644cda4d13db301b713a5752788c0f646dfa1 [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) \
75 { .name = nm, .converter = atmel_smc_cs_conf_set_setup, .shift = pos}
76
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);
123 if (ncycles > ATMEL_SMC_MODE_TDF_MAX ||
124 ncycles < ATMEL_SMC_MODE_TDF_MIN) {
125 ret = -EINVAL;
126 goto out;
127 }
128
129 smcconf->mode |= ATMEL_SMC_MODE_TDF(ncycles);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200130 }
131
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100132 for (i = 0; i < ARRAY_SIZE(timings_xlate_table); i++) {
133 const struct atmel_smc_timing_xlate *xlate;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200134
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100135 xlate = &timings_xlate_table[i];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200136
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100137 ret = of_property_read_u32(np, xlate->name, &val);
138 if (ret) {
139 if (!required)
140 continue;
141 else
142 break;
143 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200144
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100145 if (!required) {
146 ret = -EINVAL;
147 break;
148 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200149
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100150 ncycles = DIV_ROUND_UP(val, clk_period_ns);
151 ret = xlate->converter(smcconf, xlate->shift, ncycles);
152 if (ret)
153 goto out;
154 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200155
156out:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100157 if (ret) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200158 dev_err(ebid->ebi->dev,
159 "missing or invalid timings definition in %s",
160 np->full_name);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100161 return ret;
162 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200163
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100164 return required;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200165}
166
Boris Brezillon9453fa42017-03-16 09:30:32 +0100167static int atmel_ebi_xslate_smc_config(struct atmel_ebi_dev *ebid,
168 struct device_node *np,
169 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200170{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100171 struct atmel_smc_cs_conf *smcconf = &conf->smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200172 bool required = false;
173 const char *tmp_str;
174 u32 tmp;
175 int ret;
176
177 ret = of_property_read_u32(np, "atmel,smc-bus-width", &tmp);
178 if (!ret) {
179 switch (tmp) {
180 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100181 smcconf->mode |= ATMEL_SMC_MODE_DBW_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200182 break;
183
184 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100185 smcconf->mode |= ATMEL_SMC_MODE_DBW_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200186 break;
187
188 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100189 smcconf->mode |= ATMEL_SMC_MODE_DBW_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200190 break;
191
192 default:
193 return -EINVAL;
194 }
195
196 required = true;
197 }
198
199 if (of_property_read_bool(np, "atmel,smc-tdf-optimized")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100200 smcconf->mode |= ATMEL_SMC_MODE_TDFMODE_OPTIMIZED;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200201 required = true;
202 }
203
204 tmp_str = NULL;
205 of_property_read_string(np, "atmel,smc-byte-access-type", &tmp_str);
206 if (tmp_str && !strcmp(tmp_str, "write")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100207 smcconf->mode |= ATMEL_SMC_MODE_BAT_WRITE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200208 required = true;
209 }
210
211 tmp_str = NULL;
212 of_property_read_string(np, "atmel,smc-read-mode", &tmp_str);
213 if (tmp_str && !strcmp(tmp_str, "nrd")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100214 smcconf->mode |= ATMEL_SMC_MODE_READMODE_NRD;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200215 required = true;
216 }
217
218 tmp_str = NULL;
219 of_property_read_string(np, "atmel,smc-write-mode", &tmp_str);
220 if (tmp_str && !strcmp(tmp_str, "nwe")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100221 smcconf->mode |= ATMEL_SMC_MODE_WRITEMODE_NWE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200222 required = true;
223 }
224
225 tmp_str = NULL;
226 of_property_read_string(np, "atmel,smc-exnw-mode", &tmp_str);
227 if (tmp_str) {
228 if (!strcmp(tmp_str, "frozen"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100229 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_FROZEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200230 else if (!strcmp(tmp_str, "ready"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100231 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_READY;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200232 else if (strcmp(tmp_str, "disabled"))
233 return -EINVAL;
234
235 required = true;
236 }
237
238 ret = of_property_read_u32(np, "atmel,smc-page-mode", &tmp);
239 if (!ret) {
240 switch (tmp) {
241 case 4:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100242 smcconf->mode |= ATMEL_SMC_MODE_PS_4;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200243 break;
244
245 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100246 smcconf->mode |= ATMEL_SMC_MODE_PS_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200247 break;
248
249 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100250 smcconf->mode |= ATMEL_SMC_MODE_PS_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200251 break;
252
253 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100254 smcconf->mode |= ATMEL_SMC_MODE_PS_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200255 break;
256
257 default:
258 return -EINVAL;
259 }
260
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100261 smcconf->mode |= ATMEL_SMC_MODE_PMEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200262 required = true;
263 }
264
Boris Brezillon9453fa42017-03-16 09:30:32 +0100265 ret = atmel_ebi_xslate_smc_timings(ebid, np, &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200266 if (ret)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100267 return -EINVAL;
268
269 if ((ret > 0 && !required) || (!ret && required)) {
270 dev_err(ebid->ebi->dev, "missing atmel,smc- properties in %s",
271 np->full_name);
272 return -EINVAL;
273 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200274
275 return required;
276}
277
Boris Brezillon9453fa42017-03-16 09:30:32 +0100278static void at91sam9_ebi_apply_config(struct atmel_ebi_dev *ebid,
279 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200280{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100281 atmel_smc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
282 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200283}
284
Boris Brezillon9453fa42017-03-16 09:30:32 +0100285static void sama5_ebi_apply_config(struct atmel_ebi_dev *ebid,
286 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200287{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100288 atmel_hsmc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
289 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200290}
291
Boris Brezillon9453fa42017-03-16 09:30:32 +0100292static int atmel_ebi_dev_setup(struct atmel_ebi *ebi, struct device_node *np,
293 int reg_cells)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200294{
Boris Brezillon9453fa42017-03-16 09:30:32 +0100295 const struct atmel_ebi_caps *caps = ebi->caps;
296 struct atmel_ebi_dev_config conf = { };
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200297 struct device *dev = ebi->dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100298 struct atmel_ebi_dev *ebid;
Boris Brezillon987e0792017-01-27 10:10:37 +0100299 unsigned long cslines = 0;
300 int ret, numcs = 0, nentries, i;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200301 bool apply = false;
Boris Brezillon987e0792017-01-27 10:10:37 +0100302 u32 cs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200303
Boris Brezillon987e0792017-01-27 10:10:37 +0100304 nentries = of_property_count_elems_of_size(np, "reg",
305 reg_cells * sizeof(u32));
306 for (i = 0; i < nentries; i++) {
307 ret = of_property_read_u32_index(np, "reg", i * reg_cells,
308 &cs);
309 if (ret)
310 return ret;
311
312 if (cs >= AT91_MATRIX_EBI_NUM_CS ||
313 !(ebi->caps->available_cs & BIT(cs))) {
314 dev_err(dev, "invalid reg property in %s\n",
315 np->full_name);
316 return -EINVAL;
317 }
318
319 if (!test_and_set_bit(cs, &cslines))
320 numcs++;
321 }
322
323 if (!numcs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200324 dev_err(dev, "invalid reg property in %s\n", np->full_name);
325 return -EINVAL;
326 }
327
328 ebid = devm_kzalloc(ebi->dev,
329 sizeof(*ebid) + (numcs * sizeof(*ebid->configs)),
330 GFP_KERNEL);
331 if (!ebid)
332 return -ENOMEM;
333
334 ebid->ebi = ebi;
Boris Brezillonaaa572b2017-03-16 09:30:33 +0100335 ebid->numcs = numcs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200336
337 ret = caps->xlate_config(ebid, np, &conf);
338 if (ret < 0)
339 return ret;
340 else if (ret)
341 apply = true;
342
Boris Brezillon987e0792017-01-27 10:10:37 +0100343 i = 0;
344 for_each_set_bit(cs, &cslines, AT91_MATRIX_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200345 ebid->configs[i].cs = cs;
346
347 if (apply) {
348 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100349 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200350 }
351
352 caps->get_config(ebid, &ebid->configs[i]);
353
354 /*
355 * Attach the EBI device to the generic SMC logic if at least
356 * one "atmel,smc-" property is present.
357 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100358 if (ebi->caps->ebi_csa_offs && apply)
359 regmap_update_bits(ebi->matrix,
360 ebi->caps->ebi_csa_offs,
361 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100362
363 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200364 }
365
366 list_add_tail(&ebid->node, &ebi->devs);
367
368 return 0;
369}
370
Boris Brezillon9453fa42017-03-16 09:30:32 +0100371static const struct atmel_ebi_caps at91sam9260_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200372 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100373 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200374 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100375 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200376 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200377};
378
Boris Brezillon9453fa42017-03-16 09:30:32 +0100379static const struct atmel_ebi_caps at91sam9261_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200380 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100381 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200382 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100383 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200384 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200385};
386
Boris Brezillon9453fa42017-03-16 09:30:32 +0100387static const struct atmel_ebi_caps at91sam9263_ebi0_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200388 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100389 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200390 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100391 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200392 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200393};
394
Boris Brezillon9453fa42017-03-16 09:30:32 +0100395static const struct atmel_ebi_caps at91sam9263_ebi1_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200396 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100397 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200398 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100399 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200400 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200401};
402
Boris Brezillon9453fa42017-03-16 09:30:32 +0100403static const struct atmel_ebi_caps at91sam9rl_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200404 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100405 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200406 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100407 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200408 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200409};
410
Boris Brezillon9453fa42017-03-16 09:30:32 +0100411static const struct atmel_ebi_caps at91sam9g45_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200412 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100413 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200414 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100415 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200416 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200417};
418
Boris Brezillon9453fa42017-03-16 09:30:32 +0100419static const struct atmel_ebi_caps at91sam9x5_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200420 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100421 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200422 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100423 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200424 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200425};
426
Boris Brezillon9453fa42017-03-16 09:30:32 +0100427static const struct atmel_ebi_caps sama5d3_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200428 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100429 .get_config = sama5_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100430 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100431 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200432};
433
Boris Brezillon9453fa42017-03-16 09:30:32 +0100434static const struct of_device_id atmel_ebi_id_table[] = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200435 {
436 .compatible = "atmel,at91sam9260-ebi",
437 .data = &at91sam9260_ebi_caps,
438 },
439 {
440 .compatible = "atmel,at91sam9261-ebi",
441 .data = &at91sam9261_ebi_caps,
442 },
443 {
444 .compatible = "atmel,at91sam9263-ebi0",
445 .data = &at91sam9263_ebi0_caps,
446 },
447 {
448 .compatible = "atmel,at91sam9263-ebi1",
449 .data = &at91sam9263_ebi1_caps,
450 },
451 {
452 .compatible = "atmel,at91sam9rl-ebi",
453 .data = &at91sam9rl_ebi_caps,
454 },
455 {
456 .compatible = "atmel,at91sam9g45-ebi",
457 .data = &at91sam9g45_ebi_caps,
458 },
459 {
460 .compatible = "atmel,at91sam9x5-ebi",
461 .data = &at91sam9x5_ebi_caps,
462 },
463 {
464 .compatible = "atmel,sama5d3-ebi",
465 .data = &sama5d3_ebi_caps,
466 },
467 { /* sentinel */ }
468};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200469
Boris Brezillon9453fa42017-03-16 09:30:32 +0100470static int atmel_ebi_dev_disable(struct atmel_ebi *ebi, struct device_node *np)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200471{
472 struct device *dev = ebi->dev;
473 struct property *newprop;
474
475 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
476 if (!newprop)
477 return -ENOMEM;
478
479 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
480 if (!newprop->name)
481 return -ENOMEM;
482
483 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000484 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200485 return -ENOMEM;
486
487 newprop->length = sizeof("disabled");
488
489 return of_update_property(np, newprop);
490}
491
Boris Brezillon9453fa42017-03-16 09:30:32 +0100492static int atmel_ebi_probe(struct platform_device *pdev)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200493{
494 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100495 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200496 const struct of_device_id *match;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100497 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200498 int ret, reg_cells;
499 struct clk *clk;
500 u32 val;
501
Boris Brezillon9453fa42017-03-16 09:30:32 +0100502 match = of_match_device(atmel_ebi_id_table, dev);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200503 if (!match || !match->data)
504 return -EINVAL;
505
506 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
507 if (!ebi)
508 return -ENOMEM;
509
Boris Brezillon44073192017-03-16 09:30:34 +0100510 platform_set_drvdata(pdev, ebi);
511
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200512 INIT_LIST_HEAD(&ebi->devs);
513 ebi->caps = match->data;
514 ebi->dev = dev;
515
516 clk = devm_clk_get(dev, NULL);
517 if (IS_ERR(clk))
518 return PTR_ERR(clk);
519
520 ebi->clk = clk;
521
Boris Brezillon87108dc2017-01-27 10:24:09 +0100522 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
523
524 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
525 if (IS_ERR(ebi->smc.regmap))
526 return PTR_ERR(ebi->smc.regmap);
527
528 ebi->smc.clk = of_clk_get(smc_np, 0);
529 if (IS_ERR(ebi->smc.clk)) {
530 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
531 return PTR_ERR(ebi->smc.clk);
532
533 ebi->smc.clk = NULL;
534 }
535 ret = clk_prepare_enable(ebi->smc.clk);
536 if (ret)
537 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200538
539 /*
540 * The sama5d3 does not provide an EBICSA register and thus does need
541 * to access the matrix registers.
542 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100543 if (ebi->caps->ebi_csa_offs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200544 ebi->matrix =
545 syscon_regmap_lookup_by_phandle(np, "atmel,matrix");
546 if (IS_ERR(ebi->matrix))
547 return PTR_ERR(ebi->matrix);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200548 }
549
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200550 ret = of_property_read_u32(np, "#address-cells", &val);
551 if (ret) {
552 dev_err(dev, "missing #address-cells property\n");
553 return ret;
554 }
555
556 reg_cells = val;
557
558 ret = of_property_read_u32(np, "#size-cells", &val);
559 if (ret) {
560 dev_err(dev, "missing #address-cells property\n");
561 return ret;
562 }
563
564 reg_cells += val;
565
566 for_each_available_child_of_node(np, child) {
567 if (!of_find_property(child, "reg", NULL))
568 continue;
569
Boris Brezillon9453fa42017-03-16 09:30:32 +0100570 ret = atmel_ebi_dev_setup(ebi, child, reg_cells);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200571 if (ret) {
572 dev_err(dev, "failed to configure EBI bus for %s, disabling the device",
573 child->full_name);
574
Boris Brezillon9453fa42017-03-16 09:30:32 +0100575 ret = atmel_ebi_dev_disable(ebi, child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200576 if (ret)
577 return ret;
578 }
579 }
580
581 return of_platform_populate(np, NULL, NULL, dev);
582}
583
Arnd Bergmann41b80bb2017-04-19 19:48:07 +0200584static __maybe_unused int atmel_ebi_resume(struct device *dev)
Boris Brezillon44073192017-03-16 09:30:34 +0100585{
586 struct atmel_ebi *ebi = dev_get_drvdata(dev);
587 struct atmel_ebi_dev *ebid;
588
589 list_for_each_entry(ebid, &ebi->devs, node) {
590 int i;
591
592 for (i = 0; i < ebid->numcs; i++)
593 ebid->ebi->caps->apply_config(ebid, &ebid->configs[i]);
594 }
595
596 return 0;
597}
598
599static SIMPLE_DEV_PM_OPS(atmel_ebi_pm_ops, NULL, atmel_ebi_resume);
600
Boris Brezillon9453fa42017-03-16 09:30:32 +0100601static struct platform_driver atmel_ebi_driver = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200602 .driver = {
603 .name = "atmel-ebi",
Boris Brezillon9453fa42017-03-16 09:30:32 +0100604 .of_match_table = atmel_ebi_id_table,
Boris Brezillon44073192017-03-16 09:30:34 +0100605 .pm = &atmel_ebi_pm_ops,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200606 },
607};
Boris Brezillon9453fa42017-03-16 09:30:32 +0100608builtin_platform_driver_probe(atmel_ebi_driver, atmel_ebi_probe);