blob: 8640da386d328d795c329f8bd5d4918c07eb3099 [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 Brezillon6a4ec4c2016-05-23 09:44:54 +020021struct at91_ebi_dev_config {
22 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
26struct at91_ebi;
27
28struct at91_ebi_dev {
29 struct list_head node;
30 struct at91_ebi *ebi;
31 u32 mode;
32 int numcs;
33 struct at91_ebi_dev_config configs[];
34};
35
36struct at91_ebi_caps {
37 unsigned int available_cs;
Boris Brezillond9f81da2017-03-16 09:30:30 +010038 unsigned int ebi_csa_offs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020039 void (*get_config)(struct at91_ebi_dev *ebid,
40 struct at91_ebi_dev_config *conf);
41 int (*xlate_config)(struct at91_ebi_dev *ebid,
42 struct device_node *configs_np,
43 struct at91_ebi_dev_config *conf);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010044 void (*apply_config)(struct at91_ebi_dev *ebid,
45 struct at91_ebi_dev_config *conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020046};
47
48struct at91_ebi {
49 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;
57 const struct at91_ebi_caps *caps;
58 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 Brezillon6a4ec4c2016-05-23 09:44:54 +020077static void at91sam9_ebi_get_config(struct at91_ebi_dev *ebid,
78 struct at91_ebi_dev_config *conf)
79{
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 Brezillon8eb8c7d2017-03-16 09:30:29 +010084static void sama5_ebi_get_config(struct at91_ebi_dev *ebid,
85 struct at91_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
108static int at91_ebi_xslate_smc_timings(struct at91_ebi_dev *ebid,
109 struct device_node *np,
110 struct atmel_smc_cs_conf *smcconf)
111{
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 Brezillon8eb8c7d2017-03-16 09:30:29 +0100167static int at91_ebi_xslate_smc_config(struct at91_ebi_dev *ebid,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200168 struct device_node *np,
169 struct at91_ebi_dev_config *conf)
170{
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 Brezillon8eb8c7d2017-03-16 09:30:29 +0100265 ret = at91_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 Brezillon8eb8c7d2017-03-16 09:30:29 +0100278static void at91sam9_ebi_apply_config(struct at91_ebi_dev *ebid,
279 struct at91_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 Brezillon8eb8c7d2017-03-16 09:30:29 +0100285static void sama5_ebi_apply_config(struct at91_ebi_dev *ebid,
286 struct at91_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
292static int at91_ebi_dev_setup(struct at91_ebi *ebi, struct device_node *np,
293 int reg_cells)
294{
295 const struct at91_ebi_caps *caps = ebi->caps;
296 struct at91_ebi_dev_config conf = { };
297 struct device *dev = ebi->dev;
298 struct at91_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;
335
336 ret = caps->xlate_config(ebid, np, &conf);
337 if (ret < 0)
338 return ret;
339 else if (ret)
340 apply = true;
341
Boris Brezillon987e0792017-01-27 10:10:37 +0100342 i = 0;
343 for_each_set_bit(cs, &cslines, AT91_MATRIX_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200344 ebid->configs[i].cs = cs;
345
346 if (apply) {
347 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100348 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200349 }
350
351 caps->get_config(ebid, &ebid->configs[i]);
352
353 /*
354 * Attach the EBI device to the generic SMC logic if at least
355 * one "atmel,smc-" property is present.
356 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100357 if (ebi->caps->ebi_csa_offs && apply)
358 regmap_update_bits(ebi->matrix,
359 ebi->caps->ebi_csa_offs,
360 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100361
362 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200363 }
364
365 list_add_tail(&ebid->node, &ebi->devs);
366
367 return 0;
368}
369
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200370static const struct at91_ebi_caps at91sam9260_ebi_caps = {
371 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100372 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200373 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100374 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200375 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200376};
377
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200378static const struct at91_ebi_caps at91sam9261_ebi_caps = {
379 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100380 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200381 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100382 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200383 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200384};
385
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200386static const struct at91_ebi_caps at91sam9263_ebi0_caps = {
387 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100388 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200389 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100390 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200391 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200392};
393
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200394static const struct at91_ebi_caps at91sam9263_ebi1_caps = {
395 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100396 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200397 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100398 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200399 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200400};
401
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200402static const struct at91_ebi_caps at91sam9rl_ebi_caps = {
403 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100404 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200405 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100406 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200407 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200408};
409
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200410static const struct at91_ebi_caps at91sam9g45_ebi_caps = {
411 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100412 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200413 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100414 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200415 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200416};
417
418static const struct at91_ebi_caps at91sam9x5_ebi_caps = {
419 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100420 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200421 .get_config = at91sam9_ebi_get_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100422 .xlate_config = at91_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200423 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200424};
425
426static const struct at91_ebi_caps sama5d3_ebi_caps = {
427 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100428 .get_config = sama5_ebi_get_config,
429 .xlate_config = at91_ebi_xslate_smc_config,
430 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200431};
432
433static const struct of_device_id at91_ebi_id_table[] = {
434 {
435 .compatible = "atmel,at91sam9260-ebi",
436 .data = &at91sam9260_ebi_caps,
437 },
438 {
439 .compatible = "atmel,at91sam9261-ebi",
440 .data = &at91sam9261_ebi_caps,
441 },
442 {
443 .compatible = "atmel,at91sam9263-ebi0",
444 .data = &at91sam9263_ebi0_caps,
445 },
446 {
447 .compatible = "atmel,at91sam9263-ebi1",
448 .data = &at91sam9263_ebi1_caps,
449 },
450 {
451 .compatible = "atmel,at91sam9rl-ebi",
452 .data = &at91sam9rl_ebi_caps,
453 },
454 {
455 .compatible = "atmel,at91sam9g45-ebi",
456 .data = &at91sam9g45_ebi_caps,
457 },
458 {
459 .compatible = "atmel,at91sam9x5-ebi",
460 .data = &at91sam9x5_ebi_caps,
461 },
462 {
463 .compatible = "atmel,sama5d3-ebi",
464 .data = &sama5d3_ebi_caps,
465 },
466 { /* sentinel */ }
467};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200468
469static int at91_ebi_dev_disable(struct at91_ebi *ebi, struct device_node *np)
470{
471 struct device *dev = ebi->dev;
472 struct property *newprop;
473
474 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
475 if (!newprop)
476 return -ENOMEM;
477
478 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
479 if (!newprop->name)
480 return -ENOMEM;
481
482 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000483 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200484 return -ENOMEM;
485
486 newprop->length = sizeof("disabled");
487
488 return of_update_property(np, newprop);
489}
490
491static int at91_ebi_probe(struct platform_device *pdev)
492{
493 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100494 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200495 const struct of_device_id *match;
496 struct at91_ebi *ebi;
497 int ret, reg_cells;
498 struct clk *clk;
499 u32 val;
500
501 match = of_match_device(at91_ebi_id_table, dev);
502 if (!match || !match->data)
503 return -EINVAL;
504
505 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
506 if (!ebi)
507 return -ENOMEM;
508
509 INIT_LIST_HEAD(&ebi->devs);
510 ebi->caps = match->data;
511 ebi->dev = dev;
512
513 clk = devm_clk_get(dev, NULL);
514 if (IS_ERR(clk))
515 return PTR_ERR(clk);
516
517 ebi->clk = clk;
518
Boris Brezillon87108dc2017-01-27 10:24:09 +0100519 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
520
521 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
522 if (IS_ERR(ebi->smc.regmap))
523 return PTR_ERR(ebi->smc.regmap);
524
525 ebi->smc.clk = of_clk_get(smc_np, 0);
526 if (IS_ERR(ebi->smc.clk)) {
527 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
528 return PTR_ERR(ebi->smc.clk);
529
530 ebi->smc.clk = NULL;
531 }
532 ret = clk_prepare_enable(ebi->smc.clk);
533 if (ret)
534 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200535
536 /*
537 * The sama5d3 does not provide an EBICSA register and thus does need
538 * to access the matrix registers.
539 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100540 if (ebi->caps->ebi_csa_offs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200541 ebi->matrix =
542 syscon_regmap_lookup_by_phandle(np, "atmel,matrix");
543 if (IS_ERR(ebi->matrix))
544 return PTR_ERR(ebi->matrix);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200545 }
546
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200547 ret = of_property_read_u32(np, "#address-cells", &val);
548 if (ret) {
549 dev_err(dev, "missing #address-cells property\n");
550 return ret;
551 }
552
553 reg_cells = val;
554
555 ret = of_property_read_u32(np, "#size-cells", &val);
556 if (ret) {
557 dev_err(dev, "missing #address-cells property\n");
558 return ret;
559 }
560
561 reg_cells += val;
562
563 for_each_available_child_of_node(np, child) {
564 if (!of_find_property(child, "reg", NULL))
565 continue;
566
567 ret = at91_ebi_dev_setup(ebi, child, reg_cells);
568 if (ret) {
569 dev_err(dev, "failed to configure EBI bus for %s, disabling the device",
570 child->full_name);
571
572 ret = at91_ebi_dev_disable(ebi, child);
573 if (ret)
574 return ret;
575 }
576 }
577
578 return of_platform_populate(np, NULL, NULL, dev);
579}
580
581static struct platform_driver at91_ebi_driver = {
582 .driver = {
583 .name = "atmel-ebi",
584 .of_match_table = at91_ebi_id_table,
585 },
586};
Paul Gortmaker8a86a092016-06-16 20:37:48 -0400587builtin_platform_driver_probe(at91_ebi_driver, at91_ebi_probe);