blob: c3748b414c27911e643d813b1d32281d3ef00a47 [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;
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020054 const struct atmel_hsmc_reg_layout *layout;
Boris Brezillon87108dc2017-01-27 10:24:09 +010055 } smc;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020056
57 struct device *dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +010058 const struct atmel_ebi_caps *caps;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020059 struct list_head devs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020060};
61
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010062struct atmel_smc_timing_xlate {
63 const char *name;
64 int (*converter)(struct atmel_smc_cs_conf *conf,
65 unsigned int shift, unsigned int nycles);
66 unsigned int shift;
67};
68
69#define ATMEL_SMC_SETUP_XLATE(nm, pos) \
70 { .name = nm, .converter = atmel_smc_cs_conf_set_setup, .shift = pos}
71
72#define ATMEL_SMC_PULSE_XLATE(nm, pos) \
73 { .name = nm, .converter = atmel_smc_cs_conf_set_pulse, .shift = pos}
74
75#define ATMEL_SMC_CYCLE_XLATE(nm, pos) \
Alexander Dahl3fb3b3c2017-07-25 14:00:24 +020076 { .name = nm, .converter = atmel_smc_cs_conf_set_cycle, .shift = pos}
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010077
Boris Brezillon9453fa42017-03-16 09:30:32 +010078static void at91sam9_ebi_get_config(struct atmel_ebi_dev *ebid,
79 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020080{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010081 atmel_smc_cs_conf_get(ebid->ebi->smc.regmap, conf->cs,
82 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020083}
84
Boris Brezillon9453fa42017-03-16 09:30:32 +010085static void sama5_ebi_get_config(struct atmel_ebi_dev *ebid,
86 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020087{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020088 atmel_hsmc_cs_conf_get(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
89 conf->cs, &conf->smcconf);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010090}
91
92static const struct atmel_smc_timing_xlate timings_xlate_table[] = {
93 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-rd-setup-ns",
94 ATMEL_SMC_NCS_RD_SHIFT),
95 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-wr-setup-ns",
96 ATMEL_SMC_NCS_WR_SHIFT),
97 ATMEL_SMC_SETUP_XLATE("atmel,smc-nrd-setup-ns", ATMEL_SMC_NRD_SHIFT),
98 ATMEL_SMC_SETUP_XLATE("atmel,smc-nwe-setup-ns", ATMEL_SMC_NWE_SHIFT),
99 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-rd-pulse-ns",
100 ATMEL_SMC_NCS_RD_SHIFT),
101 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-wr-pulse-ns",
102 ATMEL_SMC_NCS_WR_SHIFT),
103 ATMEL_SMC_PULSE_XLATE("atmel,smc-nrd-pulse-ns", ATMEL_SMC_NRD_SHIFT),
104 ATMEL_SMC_PULSE_XLATE("atmel,smc-nwe-pulse-ns", ATMEL_SMC_NWE_SHIFT),
105 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nrd-cycle-ns", ATMEL_SMC_NRD_SHIFT),
106 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nwe-cycle-ns", ATMEL_SMC_NWE_SHIFT),
107};
108
Boris Brezillon9453fa42017-03-16 09:30:32 +0100109static int atmel_ebi_xslate_smc_timings(struct atmel_ebi_dev *ebid,
110 struct device_node *np,
111 struct atmel_smc_cs_conf *smcconf)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100112{
113 unsigned int clk_rate = clk_get_rate(ebid->ebi->clk);
114 unsigned int clk_period_ns = NSEC_PER_SEC / clk_rate;
115 bool required = false;
116 unsigned int ncycles;
117 int ret, i;
118 u32 val;
119
120 ret = of_property_read_u32(np, "atmel,smc-tdf-ns", &val);
121 if (!ret) {
122 required = true;
123 ncycles = DIV_ROUND_UP(val, clk_period_ns);
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200124 if (ncycles > ATMEL_SMC_MODE_TDF_MAX) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100125 ret = -EINVAL;
126 goto out;
127 }
128
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200129 if (ncycles < ATMEL_SMC_MODE_TDF_MIN)
130 ncycles = ATMEL_SMC_MODE_TDF_MIN;
131
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100132 smcconf->mode |= ATMEL_SMC_MODE_TDF(ncycles);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200133 }
134
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100135 for (i = 0; i < ARRAY_SIZE(timings_xlate_table); i++) {
136 const struct atmel_smc_timing_xlate *xlate;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200137
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100138 xlate = &timings_xlate_table[i];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200139
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100140 ret = of_property_read_u32(np, xlate->name, &val);
141 if (ret) {
142 if (!required)
143 continue;
144 else
145 break;
146 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200147
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100148 if (!required) {
149 ret = -EINVAL;
150 break;
151 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200152
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100153 ncycles = DIV_ROUND_UP(val, clk_period_ns);
154 ret = xlate->converter(smcconf, xlate->shift, ncycles);
155 if (ret)
156 goto out;
157 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200158
159out:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100160 if (ret) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200161 dev_err(ebid->ebi->dev,
Rob Herringdb749d12017-07-18 16:43:14 -0500162 "missing or invalid timings definition in %pOF",
163 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100164 return ret;
165 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200166
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100167 return required;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200168}
169
Boris Brezillon9453fa42017-03-16 09:30:32 +0100170static int atmel_ebi_xslate_smc_config(struct atmel_ebi_dev *ebid,
171 struct device_node *np,
172 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200173{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100174 struct atmel_smc_cs_conf *smcconf = &conf->smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200175 bool required = false;
176 const char *tmp_str;
177 u32 tmp;
178 int ret;
179
180 ret = of_property_read_u32(np, "atmel,smc-bus-width", &tmp);
181 if (!ret) {
182 switch (tmp) {
183 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100184 smcconf->mode |= ATMEL_SMC_MODE_DBW_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200185 break;
186
187 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100188 smcconf->mode |= ATMEL_SMC_MODE_DBW_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200189 break;
190
191 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100192 smcconf->mode |= ATMEL_SMC_MODE_DBW_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200193 break;
194
195 default:
196 return -EINVAL;
197 }
198
199 required = true;
200 }
201
202 if (of_property_read_bool(np, "atmel,smc-tdf-optimized")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100203 smcconf->mode |= ATMEL_SMC_MODE_TDFMODE_OPTIMIZED;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200204 required = true;
205 }
206
207 tmp_str = NULL;
208 of_property_read_string(np, "atmel,smc-byte-access-type", &tmp_str);
209 if (tmp_str && !strcmp(tmp_str, "write")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100210 smcconf->mode |= ATMEL_SMC_MODE_BAT_WRITE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200211 required = true;
212 }
213
214 tmp_str = NULL;
215 of_property_read_string(np, "atmel,smc-read-mode", &tmp_str);
216 if (tmp_str && !strcmp(tmp_str, "nrd")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100217 smcconf->mode |= ATMEL_SMC_MODE_READMODE_NRD;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200218 required = true;
219 }
220
221 tmp_str = NULL;
222 of_property_read_string(np, "atmel,smc-write-mode", &tmp_str);
223 if (tmp_str && !strcmp(tmp_str, "nwe")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100224 smcconf->mode |= ATMEL_SMC_MODE_WRITEMODE_NWE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200225 required = true;
226 }
227
228 tmp_str = NULL;
229 of_property_read_string(np, "atmel,smc-exnw-mode", &tmp_str);
230 if (tmp_str) {
231 if (!strcmp(tmp_str, "frozen"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100232 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_FROZEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200233 else if (!strcmp(tmp_str, "ready"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100234 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_READY;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200235 else if (strcmp(tmp_str, "disabled"))
236 return -EINVAL;
237
238 required = true;
239 }
240
241 ret = of_property_read_u32(np, "atmel,smc-page-mode", &tmp);
242 if (!ret) {
243 switch (tmp) {
244 case 4:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100245 smcconf->mode |= ATMEL_SMC_MODE_PS_4;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200246 break;
247
248 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100249 smcconf->mode |= ATMEL_SMC_MODE_PS_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200250 break;
251
252 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100253 smcconf->mode |= ATMEL_SMC_MODE_PS_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200254 break;
255
256 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100257 smcconf->mode |= ATMEL_SMC_MODE_PS_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200258 break;
259
260 default:
261 return -EINVAL;
262 }
263
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100264 smcconf->mode |= ATMEL_SMC_MODE_PMEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200265 required = true;
266 }
267
Boris Brezillon9453fa42017-03-16 09:30:32 +0100268 ret = atmel_ebi_xslate_smc_timings(ebid, np, &conf->smcconf);
Alexander Dahlbc9b9342017-07-25 14:00:22 +0200269 if (ret < 0)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100270 return -EINVAL;
271
272 if ((ret > 0 && !required) || (!ret && required)) {
Rob Herringdb749d12017-07-18 16:43:14 -0500273 dev_err(ebid->ebi->dev, "missing atmel,smc- properties in %pOF",
274 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100275 return -EINVAL;
276 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200277
278 return required;
279}
280
Boris Brezillon9453fa42017-03-16 09:30:32 +0100281static void at91sam9_ebi_apply_config(struct atmel_ebi_dev *ebid,
282 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200283{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100284 atmel_smc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
285 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200286}
287
Boris Brezillon9453fa42017-03-16 09:30:32 +0100288static void sama5_ebi_apply_config(struct atmel_ebi_dev *ebid,
289 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200290{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200291 atmel_hsmc_cs_conf_apply(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
292 conf->cs, &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200293}
294
Boris Brezillon9453fa42017-03-16 09:30:32 +0100295static int atmel_ebi_dev_setup(struct atmel_ebi *ebi, struct device_node *np,
296 int reg_cells)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200297{
Boris Brezillon9453fa42017-03-16 09:30:32 +0100298 const struct atmel_ebi_caps *caps = ebi->caps;
299 struct atmel_ebi_dev_config conf = { };
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200300 struct device *dev = ebi->dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100301 struct atmel_ebi_dev *ebid;
Boris Brezillon987e0792017-01-27 10:10:37 +0100302 unsigned long cslines = 0;
303 int ret, numcs = 0, nentries, i;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200304 bool apply = false;
Boris Brezillon987e0792017-01-27 10:10:37 +0100305 u32 cs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200306
Boris Brezillon987e0792017-01-27 10:10:37 +0100307 nentries = of_property_count_elems_of_size(np, "reg",
308 reg_cells * sizeof(u32));
309 for (i = 0; i < nentries; i++) {
310 ret = of_property_read_u32_index(np, "reg", i * reg_cells,
311 &cs);
312 if (ret)
313 return ret;
314
315 if (cs >= AT91_MATRIX_EBI_NUM_CS ||
316 !(ebi->caps->available_cs & BIT(cs))) {
Rob Herringdb749d12017-07-18 16:43:14 -0500317 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon987e0792017-01-27 10:10:37 +0100318 return -EINVAL;
319 }
320
321 if (!test_and_set_bit(cs, &cslines))
322 numcs++;
323 }
324
325 if (!numcs) {
Rob Herringdb749d12017-07-18 16:43:14 -0500326 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200327 return -EINVAL;
328 }
329
Gustavo A. R. Silvaf62df672018-08-23 20:07:06 -0500330 ebid = devm_kzalloc(ebi->dev, struct_size(ebid, configs, numcs),
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200331 GFP_KERNEL);
332 if (!ebid)
333 return -ENOMEM;
334
335 ebid->ebi = ebi;
Boris Brezillonaaa572b2017-03-16 09:30:33 +0100336 ebid->numcs = numcs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200337
338 ret = caps->xlate_config(ebid, np, &conf);
339 if (ret < 0)
340 return ret;
341 else if (ret)
342 apply = true;
343
Boris Brezillon987e0792017-01-27 10:10:37 +0100344 i = 0;
345 for_each_set_bit(cs, &cslines, AT91_MATRIX_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200346 ebid->configs[i].cs = cs;
347
348 if (apply) {
349 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100350 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200351 }
352
353 caps->get_config(ebid, &ebid->configs[i]);
354
355 /*
356 * Attach the EBI device to the generic SMC logic if at least
357 * one "atmel,smc-" property is present.
358 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100359 if (ebi->caps->ebi_csa_offs && apply)
360 regmap_update_bits(ebi->matrix,
361 ebi->caps->ebi_csa_offs,
362 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100363
364 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200365 }
366
367 list_add_tail(&ebid->node, &ebi->devs);
368
369 return 0;
370}
371
Boris Brezillon9453fa42017-03-16 09:30:32 +0100372static const struct atmel_ebi_caps at91sam9260_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200373 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100374 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200375 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100376 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200377 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200378};
379
Boris Brezillon9453fa42017-03-16 09:30:32 +0100380static const struct atmel_ebi_caps at91sam9261_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200381 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100382 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200383 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100384 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200385 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200386};
387
Boris Brezillon9453fa42017-03-16 09:30:32 +0100388static const struct atmel_ebi_caps at91sam9263_ebi0_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200389 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100390 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200391 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100392 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200393 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200394};
395
Boris Brezillon9453fa42017-03-16 09:30:32 +0100396static const struct atmel_ebi_caps at91sam9263_ebi1_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200397 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100398 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200399 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100400 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200401 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200402};
403
Boris Brezillon9453fa42017-03-16 09:30:32 +0100404static const struct atmel_ebi_caps at91sam9rl_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200405 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100406 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200407 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100408 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200409 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200410};
411
Boris Brezillon9453fa42017-03-16 09:30:32 +0100412static const struct atmel_ebi_caps at91sam9g45_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200413 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100414 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200415 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100416 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200417 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200418};
419
Boris Brezillon9453fa42017-03-16 09:30:32 +0100420static const struct atmel_ebi_caps at91sam9x5_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200421 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100422 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
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 sama5d3_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200429 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100430 .get_config = sama5_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100431 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100432 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200433};
434
Boris Brezillon9453fa42017-03-16 09:30:32 +0100435static const struct of_device_id atmel_ebi_id_table[] = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200436 {
437 .compatible = "atmel,at91sam9260-ebi",
438 .data = &at91sam9260_ebi_caps,
439 },
440 {
441 .compatible = "atmel,at91sam9261-ebi",
442 .data = &at91sam9261_ebi_caps,
443 },
444 {
445 .compatible = "atmel,at91sam9263-ebi0",
446 .data = &at91sam9263_ebi0_caps,
447 },
448 {
449 .compatible = "atmel,at91sam9263-ebi1",
450 .data = &at91sam9263_ebi1_caps,
451 },
452 {
453 .compatible = "atmel,at91sam9rl-ebi",
454 .data = &at91sam9rl_ebi_caps,
455 },
456 {
457 .compatible = "atmel,at91sam9g45-ebi",
458 .data = &at91sam9g45_ebi_caps,
459 },
460 {
461 .compatible = "atmel,at91sam9x5-ebi",
462 .data = &at91sam9x5_ebi_caps,
463 },
464 {
465 .compatible = "atmel,sama5d3-ebi",
466 .data = &sama5d3_ebi_caps,
467 },
468 { /* sentinel */ }
469};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200470
Boris Brezillon9453fa42017-03-16 09:30:32 +0100471static int atmel_ebi_dev_disable(struct atmel_ebi *ebi, struct device_node *np)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200472{
473 struct device *dev = ebi->dev;
474 struct property *newprop;
475
476 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
477 if (!newprop)
478 return -ENOMEM;
479
480 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
481 if (!newprop->name)
482 return -ENOMEM;
483
484 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000485 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200486 return -ENOMEM;
487
488 newprop->length = sizeof("disabled");
489
490 return of_update_property(np, newprop);
491}
492
Boris Brezillon9453fa42017-03-16 09:30:32 +0100493static int atmel_ebi_probe(struct platform_device *pdev)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200494{
495 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100496 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200497 const struct of_device_id *match;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100498 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200499 int ret, reg_cells;
500 struct clk *clk;
501 u32 val;
502
Boris Brezillon9453fa42017-03-16 09:30:32 +0100503 match = of_match_device(atmel_ebi_id_table, dev);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200504 if (!match || !match->data)
505 return -EINVAL;
506
507 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
508 if (!ebi)
509 return -ENOMEM;
510
Boris Brezillon44073192017-03-16 09:30:34 +0100511 platform_set_drvdata(pdev, ebi);
512
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200513 INIT_LIST_HEAD(&ebi->devs);
514 ebi->caps = match->data;
515 ebi->dev = dev;
516
517 clk = devm_clk_get(dev, NULL);
518 if (IS_ERR(clk))
519 return PTR_ERR(clk);
520
521 ebi->clk = clk;
522
Boris Brezillon87108dc2017-01-27 10:24:09 +0100523 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
524
525 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
526 if (IS_ERR(ebi->smc.regmap))
527 return PTR_ERR(ebi->smc.regmap);
528
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200529 ebi->smc.layout = atmel_hsmc_get_reg_layout(smc_np);
530 if (IS_ERR(ebi->smc.layout))
531 return PTR_ERR(ebi->smc.layout);
532
Boris Brezillon87108dc2017-01-27 10:24:09 +0100533 ebi->smc.clk = of_clk_get(smc_np, 0);
534 if (IS_ERR(ebi->smc.clk)) {
535 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
536 return PTR_ERR(ebi->smc.clk);
537
538 ebi->smc.clk = NULL;
539 }
540 ret = clk_prepare_enable(ebi->smc.clk);
541 if (ret)
542 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200543
544 /*
545 * The sama5d3 does not provide an EBICSA register and thus does need
546 * to access the matrix registers.
547 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100548 if (ebi->caps->ebi_csa_offs) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200549 ebi->matrix =
550 syscon_regmap_lookup_by_phandle(np, "atmel,matrix");
551 if (IS_ERR(ebi->matrix))
552 return PTR_ERR(ebi->matrix);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200553 }
554
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200555 ret = of_property_read_u32(np, "#address-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 ret = of_property_read_u32(np, "#size-cells", &val);
564 if (ret) {
565 dev_err(dev, "missing #address-cells property\n");
566 return ret;
567 }
568
569 reg_cells += val;
570
571 for_each_available_child_of_node(np, child) {
572 if (!of_find_property(child, "reg", NULL))
573 continue;
574
Boris Brezillon9453fa42017-03-16 09:30:32 +0100575 ret = atmel_ebi_dev_setup(ebi, child, reg_cells);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200576 if (ret) {
Rob Herringdb749d12017-07-18 16:43:14 -0500577 dev_err(dev, "failed to configure EBI bus for %pOF, disabling the device",
578 child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200579
Boris Brezillon9453fa42017-03-16 09:30:32 +0100580 ret = atmel_ebi_dev_disable(ebi, child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200581 if (ret)
582 return ret;
583 }
584 }
585
586 return of_platform_populate(np, NULL, NULL, dev);
587}
588
Arnd Bergmann41b80bb2017-04-19 19:48:07 +0200589static __maybe_unused int atmel_ebi_resume(struct device *dev)
Boris Brezillon44073192017-03-16 09:30:34 +0100590{
591 struct atmel_ebi *ebi = dev_get_drvdata(dev);
592 struct atmel_ebi_dev *ebid;
593
594 list_for_each_entry(ebid, &ebi->devs, node) {
595 int i;
596
597 for (i = 0; i < ebid->numcs; i++)
598 ebid->ebi->caps->apply_config(ebid, &ebid->configs[i]);
599 }
600
601 return 0;
602}
603
604static SIMPLE_DEV_PM_OPS(atmel_ebi_pm_ops, NULL, atmel_ebi_resume);
605
Boris Brezillon9453fa42017-03-16 09:30:32 +0100606static struct platform_driver atmel_ebi_driver = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200607 .driver = {
608 .name = "atmel-ebi",
Boris Brezillon9453fa42017-03-16 09:30:32 +0100609 .of_match_table = atmel_ebi_id_table,
Boris Brezillon44073192017-03-16 09:30:34 +0100610 .pm = &atmel_ebi_pm_ops,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200611 },
612};
Boris Brezillon9453fa42017-03-16 09:30:32 +0100613builtin_platform_driver_probe(atmel_ebi_driver, atmel_ebi_probe);