blob: 0322df9dc2497288f94a818b83bff4b42b15264f [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>
Tudor Ambarus3e0863d2019-02-13 08:59:55 +000020#include <soc/at91/atmel-sfr.h>
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020021
Boris Brezillon9453fa42017-03-16 09:30:32 +010022struct atmel_ebi_dev_config {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020023 int cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010024 struct atmel_smc_cs_conf smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020025};
26
Boris Brezillon9453fa42017-03-16 09:30:32 +010027struct atmel_ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020028
Boris Brezillon9453fa42017-03-16 09:30:32 +010029struct atmel_ebi_dev {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020030 struct list_head node;
Boris Brezillon9453fa42017-03-16 09:30:32 +010031 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020032 u32 mode;
33 int numcs;
Boris Brezillon9453fa42017-03-16 09:30:32 +010034 struct atmel_ebi_dev_config configs[];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020035};
36
Boris Brezillon9453fa42017-03-16 09:30:32 +010037struct atmel_ebi_caps {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020038 unsigned int available_cs;
Boris Brezillond9f81da2017-03-16 09:30:30 +010039 unsigned int ebi_csa_offs;
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +000040 const char *regmap_name;
Boris Brezillon9453fa42017-03-16 09:30:32 +010041 void (*get_config)(struct atmel_ebi_dev *ebid,
42 struct atmel_ebi_dev_config *conf);
43 int (*xlate_config)(struct atmel_ebi_dev *ebid,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020044 struct device_node *configs_np,
Boris Brezillon9453fa42017-03-16 09:30:32 +010045 struct atmel_ebi_dev_config *conf);
46 void (*apply_config)(struct atmel_ebi_dev *ebid,
47 struct atmel_ebi_dev_config *conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020048};
49
Boris Brezillon9453fa42017-03-16 09:30:32 +010050struct atmel_ebi {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020051 struct clk *clk;
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +000052 struct regmap *regmap;
Boris Brezillon87108dc2017-01-27 10:24:09 +010053 struct {
54 struct regmap *regmap;
55 struct clk *clk;
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020056 const struct atmel_hsmc_reg_layout *layout;
Boris Brezillon87108dc2017-01-27 10:24:09 +010057 } smc;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020058
59 struct device *dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +010060 const struct atmel_ebi_caps *caps;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020061 struct list_head devs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020062};
63
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010064struct atmel_smc_timing_xlate {
65 const char *name;
66 int (*converter)(struct atmel_smc_cs_conf *conf,
67 unsigned int shift, unsigned int nycles);
68 unsigned int shift;
69};
70
71#define ATMEL_SMC_SETUP_XLATE(nm, pos) \
72 { .name = nm, .converter = atmel_smc_cs_conf_set_setup, .shift = pos}
73
74#define ATMEL_SMC_PULSE_XLATE(nm, pos) \
75 { .name = nm, .converter = atmel_smc_cs_conf_set_pulse, .shift = pos}
76
77#define ATMEL_SMC_CYCLE_XLATE(nm, pos) \
Alexander Dahl3fb3b3c2017-07-25 14:00:24 +020078 { .name = nm, .converter = atmel_smc_cs_conf_set_cycle, .shift = pos}
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010079
Boris Brezillon9453fa42017-03-16 09:30:32 +010080static void at91sam9_ebi_get_config(struct atmel_ebi_dev *ebid,
81 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020082{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010083 atmel_smc_cs_conf_get(ebid->ebi->smc.regmap, conf->cs,
84 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020085}
86
Boris Brezillon9453fa42017-03-16 09:30:32 +010087static void sama5_ebi_get_config(struct atmel_ebi_dev *ebid,
88 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020089{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020090 atmel_hsmc_cs_conf_get(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
91 conf->cs, &conf->smcconf);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010092}
93
94static const struct atmel_smc_timing_xlate timings_xlate_table[] = {
95 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-rd-setup-ns",
96 ATMEL_SMC_NCS_RD_SHIFT),
97 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-wr-setup-ns",
98 ATMEL_SMC_NCS_WR_SHIFT),
99 ATMEL_SMC_SETUP_XLATE("atmel,smc-nrd-setup-ns", ATMEL_SMC_NRD_SHIFT),
100 ATMEL_SMC_SETUP_XLATE("atmel,smc-nwe-setup-ns", ATMEL_SMC_NWE_SHIFT),
101 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-rd-pulse-ns",
102 ATMEL_SMC_NCS_RD_SHIFT),
103 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-wr-pulse-ns",
104 ATMEL_SMC_NCS_WR_SHIFT),
105 ATMEL_SMC_PULSE_XLATE("atmel,smc-nrd-pulse-ns", ATMEL_SMC_NRD_SHIFT),
106 ATMEL_SMC_PULSE_XLATE("atmel,smc-nwe-pulse-ns", ATMEL_SMC_NWE_SHIFT),
107 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nrd-cycle-ns", ATMEL_SMC_NRD_SHIFT),
108 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nwe-cycle-ns", ATMEL_SMC_NWE_SHIFT),
109};
110
Boris Brezillon9453fa42017-03-16 09:30:32 +0100111static int atmel_ebi_xslate_smc_timings(struct atmel_ebi_dev *ebid,
112 struct device_node *np,
113 struct atmel_smc_cs_conf *smcconf)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100114{
115 unsigned int clk_rate = clk_get_rate(ebid->ebi->clk);
116 unsigned int clk_period_ns = NSEC_PER_SEC / clk_rate;
117 bool required = false;
118 unsigned int ncycles;
119 int ret, i;
120 u32 val;
121
122 ret = of_property_read_u32(np, "atmel,smc-tdf-ns", &val);
123 if (!ret) {
124 required = true;
125 ncycles = DIV_ROUND_UP(val, clk_period_ns);
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200126 if (ncycles > ATMEL_SMC_MODE_TDF_MAX) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100127 ret = -EINVAL;
128 goto out;
129 }
130
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200131 if (ncycles < ATMEL_SMC_MODE_TDF_MIN)
132 ncycles = ATMEL_SMC_MODE_TDF_MIN;
133
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100134 smcconf->mode |= ATMEL_SMC_MODE_TDF(ncycles);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200135 }
136
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100137 for (i = 0; i < ARRAY_SIZE(timings_xlate_table); i++) {
138 const struct atmel_smc_timing_xlate *xlate;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200139
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100140 xlate = &timings_xlate_table[i];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200141
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100142 ret = of_property_read_u32(np, xlate->name, &val);
143 if (ret) {
144 if (!required)
145 continue;
146 else
147 break;
148 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200149
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100150 if (!required) {
151 ret = -EINVAL;
152 break;
153 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200154
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100155 ncycles = DIV_ROUND_UP(val, clk_period_ns);
156 ret = xlate->converter(smcconf, xlate->shift, ncycles);
157 if (ret)
158 goto out;
159 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200160
161out:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100162 if (ret) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200163 dev_err(ebid->ebi->dev,
Rob Herringdb749d12017-07-18 16:43:14 -0500164 "missing or invalid timings definition in %pOF",
165 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100166 return ret;
167 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200168
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100169 return required;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200170}
171
Boris Brezillon9453fa42017-03-16 09:30:32 +0100172static int atmel_ebi_xslate_smc_config(struct atmel_ebi_dev *ebid,
173 struct device_node *np,
174 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200175{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100176 struct atmel_smc_cs_conf *smcconf = &conf->smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200177 bool required = false;
178 const char *tmp_str;
179 u32 tmp;
180 int ret;
181
182 ret = of_property_read_u32(np, "atmel,smc-bus-width", &tmp);
183 if (!ret) {
184 switch (tmp) {
185 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100186 smcconf->mode |= ATMEL_SMC_MODE_DBW_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200187 break;
188
189 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100190 smcconf->mode |= ATMEL_SMC_MODE_DBW_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200191 break;
192
193 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100194 smcconf->mode |= ATMEL_SMC_MODE_DBW_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200195 break;
196
197 default:
198 return -EINVAL;
199 }
200
201 required = true;
202 }
203
204 if (of_property_read_bool(np, "atmel,smc-tdf-optimized")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100205 smcconf->mode |= ATMEL_SMC_MODE_TDFMODE_OPTIMIZED;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200206 required = true;
207 }
208
209 tmp_str = NULL;
210 of_property_read_string(np, "atmel,smc-byte-access-type", &tmp_str);
211 if (tmp_str && !strcmp(tmp_str, "write")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100212 smcconf->mode |= ATMEL_SMC_MODE_BAT_WRITE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200213 required = true;
214 }
215
216 tmp_str = NULL;
217 of_property_read_string(np, "atmel,smc-read-mode", &tmp_str);
218 if (tmp_str && !strcmp(tmp_str, "nrd")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100219 smcconf->mode |= ATMEL_SMC_MODE_READMODE_NRD;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200220 required = true;
221 }
222
223 tmp_str = NULL;
224 of_property_read_string(np, "atmel,smc-write-mode", &tmp_str);
225 if (tmp_str && !strcmp(tmp_str, "nwe")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100226 smcconf->mode |= ATMEL_SMC_MODE_WRITEMODE_NWE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200227 required = true;
228 }
229
230 tmp_str = NULL;
231 of_property_read_string(np, "atmel,smc-exnw-mode", &tmp_str);
232 if (tmp_str) {
233 if (!strcmp(tmp_str, "frozen"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100234 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_FROZEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200235 else if (!strcmp(tmp_str, "ready"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100236 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_READY;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200237 else if (strcmp(tmp_str, "disabled"))
238 return -EINVAL;
239
240 required = true;
241 }
242
243 ret = of_property_read_u32(np, "atmel,smc-page-mode", &tmp);
244 if (!ret) {
245 switch (tmp) {
246 case 4:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100247 smcconf->mode |= ATMEL_SMC_MODE_PS_4;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200248 break;
249
250 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100251 smcconf->mode |= ATMEL_SMC_MODE_PS_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200252 break;
253
254 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100255 smcconf->mode |= ATMEL_SMC_MODE_PS_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200256 break;
257
258 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100259 smcconf->mode |= ATMEL_SMC_MODE_PS_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200260 break;
261
262 default:
263 return -EINVAL;
264 }
265
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100266 smcconf->mode |= ATMEL_SMC_MODE_PMEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200267 required = true;
268 }
269
Boris Brezillon9453fa42017-03-16 09:30:32 +0100270 ret = atmel_ebi_xslate_smc_timings(ebid, np, &conf->smcconf);
Alexander Dahlbc9b9342017-07-25 14:00:22 +0200271 if (ret < 0)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100272 return -EINVAL;
273
274 if ((ret > 0 && !required) || (!ret && required)) {
Rob Herringdb749d12017-07-18 16:43:14 -0500275 dev_err(ebid->ebi->dev, "missing atmel,smc- properties in %pOF",
276 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100277 return -EINVAL;
278 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200279
280 return required;
281}
282
Boris Brezillon9453fa42017-03-16 09:30:32 +0100283static void at91sam9_ebi_apply_config(struct atmel_ebi_dev *ebid,
284 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200285{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100286 atmel_smc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
287 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200288}
289
Boris Brezillon9453fa42017-03-16 09:30:32 +0100290static void sama5_ebi_apply_config(struct atmel_ebi_dev *ebid,
291 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200292{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200293 atmel_hsmc_cs_conf_apply(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
294 conf->cs, &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200295}
296
Boris Brezillon9453fa42017-03-16 09:30:32 +0100297static int atmel_ebi_dev_setup(struct atmel_ebi *ebi, struct device_node *np,
298 int reg_cells)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200299{
Boris Brezillon9453fa42017-03-16 09:30:32 +0100300 const struct atmel_ebi_caps *caps = ebi->caps;
301 struct atmel_ebi_dev_config conf = { };
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200302 struct device *dev = ebi->dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100303 struct atmel_ebi_dev *ebid;
Boris Brezillon987e0792017-01-27 10:10:37 +0100304 unsigned long cslines = 0;
305 int ret, numcs = 0, nentries, i;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200306 bool apply = false;
Boris Brezillon987e0792017-01-27 10:10:37 +0100307 u32 cs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200308
Boris Brezillon987e0792017-01-27 10:10:37 +0100309 nentries = of_property_count_elems_of_size(np, "reg",
310 reg_cells * sizeof(u32));
311 for (i = 0; i < nentries; i++) {
312 ret = of_property_read_u32_index(np, "reg", i * reg_cells,
313 &cs);
314 if (ret)
315 return ret;
316
317 if (cs >= AT91_MATRIX_EBI_NUM_CS ||
318 !(ebi->caps->available_cs & BIT(cs))) {
Rob Herringdb749d12017-07-18 16:43:14 -0500319 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon987e0792017-01-27 10:10:37 +0100320 return -EINVAL;
321 }
322
323 if (!test_and_set_bit(cs, &cslines))
324 numcs++;
325 }
326
327 if (!numcs) {
Rob Herringdb749d12017-07-18 16:43:14 -0500328 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200329 return -EINVAL;
330 }
331
Gustavo A. R. Silvaf62df672018-08-23 20:07:06 -0500332 ebid = devm_kzalloc(ebi->dev, struct_size(ebid, configs, numcs),
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200333 GFP_KERNEL);
334 if (!ebid)
335 return -ENOMEM;
336
337 ebid->ebi = ebi;
Boris Brezillonaaa572b2017-03-16 09:30:33 +0100338 ebid->numcs = numcs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200339
340 ret = caps->xlate_config(ebid, np, &conf);
341 if (ret < 0)
342 return ret;
343 else if (ret)
344 apply = true;
345
Boris Brezillon987e0792017-01-27 10:10:37 +0100346 i = 0;
347 for_each_set_bit(cs, &cslines, AT91_MATRIX_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200348 ebid->configs[i].cs = cs;
349
350 if (apply) {
351 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100352 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200353 }
354
355 caps->get_config(ebid, &ebid->configs[i]);
356
357 /*
358 * Attach the EBI device to the generic SMC logic if at least
359 * one "atmel,smc-" property is present.
360 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100361 if (ebi->caps->ebi_csa_offs && apply)
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000362 regmap_update_bits(ebi->regmap,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100363 ebi->caps->ebi_csa_offs,
364 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100365
366 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200367 }
368
369 list_add_tail(&ebid->node, &ebi->devs);
370
371 return 0;
372}
373
Boris Brezillon9453fa42017-03-16 09:30:32 +0100374static const struct atmel_ebi_caps at91sam9260_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200375 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100376 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000377 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200378 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100379 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200380 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200381};
382
Boris Brezillon9453fa42017-03-16 09:30:32 +0100383static const struct atmel_ebi_caps at91sam9261_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200384 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100385 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000386 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200387 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100388 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200389 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200390};
391
Boris Brezillon9453fa42017-03-16 09:30:32 +0100392static const struct atmel_ebi_caps at91sam9263_ebi0_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200393 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100394 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000395 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200396 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100397 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200398 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200399};
400
Boris Brezillon9453fa42017-03-16 09:30:32 +0100401static const struct atmel_ebi_caps at91sam9263_ebi1_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200402 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100403 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000404 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200405 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100406 .xlate_config = atmel_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 Brezillon9453fa42017-03-16 09:30:32 +0100410static const struct atmel_ebi_caps at91sam9rl_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200411 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100412 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000413 .regmap_name = "atmel,matrix",
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 at91sam9g45_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200420 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100421 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000422 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200423 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100424 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200425 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200426};
427
Boris Brezillon9453fa42017-03-16 09:30:32 +0100428static const struct atmel_ebi_caps at91sam9x5_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200429 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100430 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000431 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200432 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100433 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200434 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200435};
436
Boris Brezillon9453fa42017-03-16 09:30:32 +0100437static const struct atmel_ebi_caps sama5d3_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200438 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100439 .get_config = sama5_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100440 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100441 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200442};
443
Tudor Ambarus3e0863d2019-02-13 08:59:55 +0000444static const struct atmel_ebi_caps sam9x60_ebi_caps = {
445 .available_cs = 0x3f,
446 .ebi_csa_offs = AT91_SFR_CCFG_EBICSA,
447 .regmap_name = "microchip,sfr",
448 .get_config = at91sam9_ebi_get_config,
449 .xlate_config = atmel_ebi_xslate_smc_config,
450 .apply_config = at91sam9_ebi_apply_config,
451};
452
Boris Brezillon9453fa42017-03-16 09:30:32 +0100453static const struct of_device_id atmel_ebi_id_table[] = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200454 {
455 .compatible = "atmel,at91sam9260-ebi",
456 .data = &at91sam9260_ebi_caps,
457 },
458 {
459 .compatible = "atmel,at91sam9261-ebi",
460 .data = &at91sam9261_ebi_caps,
461 },
462 {
463 .compatible = "atmel,at91sam9263-ebi0",
464 .data = &at91sam9263_ebi0_caps,
465 },
466 {
467 .compatible = "atmel,at91sam9263-ebi1",
468 .data = &at91sam9263_ebi1_caps,
469 },
470 {
471 .compatible = "atmel,at91sam9rl-ebi",
472 .data = &at91sam9rl_ebi_caps,
473 },
474 {
475 .compatible = "atmel,at91sam9g45-ebi",
476 .data = &at91sam9g45_ebi_caps,
477 },
478 {
479 .compatible = "atmel,at91sam9x5-ebi",
480 .data = &at91sam9x5_ebi_caps,
481 },
482 {
483 .compatible = "atmel,sama5d3-ebi",
484 .data = &sama5d3_ebi_caps,
485 },
Tudor Ambarus3e0863d2019-02-13 08:59:55 +0000486 {
487 .compatible = "microchip,sam9x60-ebi",
488 .data = &sam9x60_ebi_caps,
489 },
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200490 { /* sentinel */ }
491};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200492
Boris Brezillon9453fa42017-03-16 09:30:32 +0100493static int atmel_ebi_dev_disable(struct atmel_ebi *ebi, struct device_node *np)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200494{
495 struct device *dev = ebi->dev;
496 struct property *newprop;
497
498 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
499 if (!newprop)
500 return -ENOMEM;
501
502 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
503 if (!newprop->name)
504 return -ENOMEM;
505
506 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000507 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200508 return -ENOMEM;
509
510 newprop->length = sizeof("disabled");
511
512 return of_update_property(np, newprop);
513}
514
Boris Brezillon9453fa42017-03-16 09:30:32 +0100515static int atmel_ebi_probe(struct platform_device *pdev)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200516{
517 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100518 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200519 const struct of_device_id *match;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100520 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200521 int ret, reg_cells;
522 struct clk *clk;
523 u32 val;
524
Boris Brezillon9453fa42017-03-16 09:30:32 +0100525 match = of_match_device(atmel_ebi_id_table, dev);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200526 if (!match || !match->data)
527 return -EINVAL;
528
529 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
530 if (!ebi)
531 return -ENOMEM;
532
Boris Brezillon44073192017-03-16 09:30:34 +0100533 platform_set_drvdata(pdev, ebi);
534
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200535 INIT_LIST_HEAD(&ebi->devs);
536 ebi->caps = match->data;
537 ebi->dev = dev;
538
539 clk = devm_clk_get(dev, NULL);
540 if (IS_ERR(clk))
541 return PTR_ERR(clk);
542
543 ebi->clk = clk;
544
Boris Brezillon87108dc2017-01-27 10:24:09 +0100545 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
546
547 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
548 if (IS_ERR(ebi->smc.regmap))
549 return PTR_ERR(ebi->smc.regmap);
550
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200551 ebi->smc.layout = atmel_hsmc_get_reg_layout(smc_np);
552 if (IS_ERR(ebi->smc.layout))
553 return PTR_ERR(ebi->smc.layout);
554
Boris Brezillon87108dc2017-01-27 10:24:09 +0100555 ebi->smc.clk = of_clk_get(smc_np, 0);
556 if (IS_ERR(ebi->smc.clk)) {
557 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
558 return PTR_ERR(ebi->smc.clk);
559
560 ebi->smc.clk = NULL;
561 }
562 ret = clk_prepare_enable(ebi->smc.clk);
563 if (ret)
564 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200565
566 /*
567 * The sama5d3 does not provide an EBICSA register and thus does need
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000568 * to access it.
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200569 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100570 if (ebi->caps->ebi_csa_offs) {
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000571 ebi->regmap =
572 syscon_regmap_lookup_by_phandle(np,
573 ebi->caps->regmap_name);
574 if (IS_ERR(ebi->regmap))
575 return PTR_ERR(ebi->regmap);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200576 }
577
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200578 ret = of_property_read_u32(np, "#address-cells", &val);
579 if (ret) {
580 dev_err(dev, "missing #address-cells property\n");
581 return ret;
582 }
583
584 reg_cells = val;
585
586 ret = of_property_read_u32(np, "#size-cells", &val);
587 if (ret) {
588 dev_err(dev, "missing #address-cells property\n");
589 return ret;
590 }
591
592 reg_cells += val;
593
594 for_each_available_child_of_node(np, child) {
595 if (!of_find_property(child, "reg", NULL))
596 continue;
597
Boris Brezillon9453fa42017-03-16 09:30:32 +0100598 ret = atmel_ebi_dev_setup(ebi, child, reg_cells);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200599 if (ret) {
Rob Herringdb749d12017-07-18 16:43:14 -0500600 dev_err(dev, "failed to configure EBI bus for %pOF, disabling the device",
601 child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200602
Boris Brezillon9453fa42017-03-16 09:30:32 +0100603 ret = atmel_ebi_dev_disable(ebi, child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200604 if (ret)
605 return ret;
606 }
607 }
608
609 return of_platform_populate(np, NULL, NULL, dev);
610}
611
Arnd Bergmann41b80bb2017-04-19 19:48:07 +0200612static __maybe_unused int atmel_ebi_resume(struct device *dev)
Boris Brezillon44073192017-03-16 09:30:34 +0100613{
614 struct atmel_ebi *ebi = dev_get_drvdata(dev);
615 struct atmel_ebi_dev *ebid;
616
617 list_for_each_entry(ebid, &ebi->devs, node) {
618 int i;
619
620 for (i = 0; i < ebid->numcs; i++)
621 ebid->ebi->caps->apply_config(ebid, &ebid->configs[i]);
622 }
623
624 return 0;
625}
626
627static SIMPLE_DEV_PM_OPS(atmel_ebi_pm_ops, NULL, atmel_ebi_resume);
628
Boris Brezillon9453fa42017-03-16 09:30:32 +0100629static struct platform_driver atmel_ebi_driver = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200630 .driver = {
631 .name = "atmel-ebi",
Boris Brezillon9453fa42017-03-16 09:30:32 +0100632 .of_match_table = atmel_ebi_id_table,
Boris Brezillon44073192017-03-16 09:30:34 +0100633 .pm = &atmel_ebi_pm_ops,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200634 },
635};
Boris Brezillon9453fa42017-03-16 09:30:32 +0100636builtin_platform_driver_probe(atmel_ebi_driver, atmel_ebi_probe);