blob: 14386d0b5f57800a9b68c2f2d10cd7df1d459488 [file] [log] [blame]
Tudor Ambarus5db3fb42019-09-06 15:15:28 +00001// SPDX-License-Identifier: GPL-2.0
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +02002/*
3 * EBI driver for Atmel chips
4 * inspired by the fsl weim bus driver
5 *
6 * Copyright (C) 2013 Jean-Jacques Hiblot <jjhiblot@traphandler.com>
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +02007 */
8
9#include <linux/clk.h>
10#include <linux/io.h>
11#include <linux/mfd/syscon.h>
12#include <linux/mfd/syscon/atmel-matrix.h>
13#include <linux/mfd/syscon/atmel-smc.h>
Paul Gortmaker8a86a092016-06-16 20:37:48 -040014#include <linux/init.h>
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020015#include <linux/of_device.h>
16#include <linux/regmap.h>
Tudor Ambarus3e0863d2019-02-13 08:59:55 +000017#include <soc/at91/atmel-sfr.h>
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020018
Tudor Ambarusdbbf9832019-09-06 15:06:41 +000019#define AT91_EBI_NUM_CS 8
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;
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +000039 const char *regmap_name;
Boris Brezillon9453fa42017-03-16 09:30:32 +010040 void (*get_config)(struct atmel_ebi_dev *ebid,
41 struct atmel_ebi_dev_config *conf);
42 int (*xlate_config)(struct atmel_ebi_dev *ebid,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020043 struct device_node *configs_np,
Boris Brezillon9453fa42017-03-16 09:30:32 +010044 struct atmel_ebi_dev_config *conf);
45 void (*apply_config)(struct atmel_ebi_dev *ebid,
46 struct atmel_ebi_dev_config *conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020047};
48
Boris Brezillon9453fa42017-03-16 09:30:32 +010049struct atmel_ebi {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020050 struct clk *clk;
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +000051 struct regmap *regmap;
Boris Brezillon87108dc2017-01-27 10:24:09 +010052 struct {
53 struct regmap *regmap;
54 struct clk *clk;
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020055 const struct atmel_hsmc_reg_layout *layout;
Boris Brezillon87108dc2017-01-27 10:24:09 +010056 } smc;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020057
58 struct device *dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +010059 const struct atmel_ebi_caps *caps;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020060 struct list_head devs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020061};
62
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010063struct atmel_smc_timing_xlate {
64 const char *name;
65 int (*converter)(struct atmel_smc_cs_conf *conf,
66 unsigned int shift, unsigned int nycles);
67 unsigned int shift;
68};
69
70#define ATMEL_SMC_SETUP_XLATE(nm, pos) \
71 { .name = nm, .converter = atmel_smc_cs_conf_set_setup, .shift = pos}
72
73#define ATMEL_SMC_PULSE_XLATE(nm, pos) \
74 { .name = nm, .converter = atmel_smc_cs_conf_set_pulse, .shift = pos}
75
76#define ATMEL_SMC_CYCLE_XLATE(nm, pos) \
Alexander Dahl3fb3b3c2017-07-25 14:00:24 +020077 { .name = nm, .converter = atmel_smc_cs_conf_set_cycle, .shift = pos}
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010078
Boris Brezillon9453fa42017-03-16 09:30:32 +010079static void at91sam9_ebi_get_config(struct atmel_ebi_dev *ebid,
80 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020081{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010082 atmel_smc_cs_conf_get(ebid->ebi->smc.regmap, conf->cs,
83 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020084}
85
Boris Brezillon9453fa42017-03-16 09:30:32 +010086static void sama5_ebi_get_config(struct atmel_ebi_dev *ebid,
87 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +020088{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +020089 atmel_hsmc_cs_conf_get(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
90 conf->cs, &conf->smcconf);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +010091}
92
93static const struct atmel_smc_timing_xlate timings_xlate_table[] = {
94 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-rd-setup-ns",
95 ATMEL_SMC_NCS_RD_SHIFT),
96 ATMEL_SMC_SETUP_XLATE("atmel,smc-ncs-wr-setup-ns",
97 ATMEL_SMC_NCS_WR_SHIFT),
98 ATMEL_SMC_SETUP_XLATE("atmel,smc-nrd-setup-ns", ATMEL_SMC_NRD_SHIFT),
99 ATMEL_SMC_SETUP_XLATE("atmel,smc-nwe-setup-ns", ATMEL_SMC_NWE_SHIFT),
100 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-rd-pulse-ns",
101 ATMEL_SMC_NCS_RD_SHIFT),
102 ATMEL_SMC_PULSE_XLATE("atmel,smc-ncs-wr-pulse-ns",
103 ATMEL_SMC_NCS_WR_SHIFT),
104 ATMEL_SMC_PULSE_XLATE("atmel,smc-nrd-pulse-ns", ATMEL_SMC_NRD_SHIFT),
105 ATMEL_SMC_PULSE_XLATE("atmel,smc-nwe-pulse-ns", ATMEL_SMC_NWE_SHIFT),
106 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nrd-cycle-ns", ATMEL_SMC_NRD_SHIFT),
107 ATMEL_SMC_CYCLE_XLATE("atmel,smc-nwe-cycle-ns", ATMEL_SMC_NWE_SHIFT),
108};
109
Boris Brezillon9453fa42017-03-16 09:30:32 +0100110static int atmel_ebi_xslate_smc_timings(struct atmel_ebi_dev *ebid,
111 struct device_node *np,
112 struct atmel_smc_cs_conf *smcconf)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100113{
114 unsigned int clk_rate = clk_get_rate(ebid->ebi->clk);
115 unsigned int clk_period_ns = NSEC_PER_SEC / clk_rate;
116 bool required = false;
117 unsigned int ncycles;
118 int ret, i;
119 u32 val;
120
121 ret = of_property_read_u32(np, "atmel,smc-tdf-ns", &val);
122 if (!ret) {
123 required = true;
124 ncycles = DIV_ROUND_UP(val, clk_period_ns);
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200125 if (ncycles > ATMEL_SMC_MODE_TDF_MAX) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100126 ret = -EINVAL;
127 goto out;
128 }
129
Alexander Dahl1f6b5392017-07-25 14:00:23 +0200130 if (ncycles < ATMEL_SMC_MODE_TDF_MIN)
131 ncycles = ATMEL_SMC_MODE_TDF_MIN;
132
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100133 smcconf->mode |= ATMEL_SMC_MODE_TDF(ncycles);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200134 }
135
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100136 for (i = 0; i < ARRAY_SIZE(timings_xlate_table); i++) {
137 const struct atmel_smc_timing_xlate *xlate;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200138
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100139 xlate = &timings_xlate_table[i];
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200140
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100141 ret = of_property_read_u32(np, xlate->name, &val);
142 if (ret) {
143 if (!required)
144 continue;
145 else
146 break;
147 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200148
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100149 if (!required) {
150 ret = -EINVAL;
151 break;
152 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200153
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100154 ncycles = DIV_ROUND_UP(val, clk_period_ns);
155 ret = xlate->converter(smcconf, xlate->shift, ncycles);
156 if (ret)
157 goto out;
158 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200159
160out:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100161 if (ret) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200162 dev_err(ebid->ebi->dev,
Rob Herringdb749d12017-07-18 16:43:14 -0500163 "missing or invalid timings definition in %pOF",
164 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100165 return ret;
166 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200167
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100168 return required;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200169}
170
Boris Brezillon9453fa42017-03-16 09:30:32 +0100171static int atmel_ebi_xslate_smc_config(struct atmel_ebi_dev *ebid,
172 struct device_node *np,
173 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200174{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100175 struct atmel_smc_cs_conf *smcconf = &conf->smcconf;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200176 bool required = false;
177 const char *tmp_str;
178 u32 tmp;
179 int ret;
180
181 ret = of_property_read_u32(np, "atmel,smc-bus-width", &tmp);
182 if (!ret) {
183 switch (tmp) {
184 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100185 smcconf->mode |= ATMEL_SMC_MODE_DBW_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200186 break;
187
188 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100189 smcconf->mode |= ATMEL_SMC_MODE_DBW_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200190 break;
191
192 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100193 smcconf->mode |= ATMEL_SMC_MODE_DBW_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200194 break;
195
196 default:
197 return -EINVAL;
198 }
199
200 required = true;
201 }
202
203 if (of_property_read_bool(np, "atmel,smc-tdf-optimized")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100204 smcconf->mode |= ATMEL_SMC_MODE_TDFMODE_OPTIMIZED;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200205 required = true;
206 }
207
208 tmp_str = NULL;
209 of_property_read_string(np, "atmel,smc-byte-access-type", &tmp_str);
210 if (tmp_str && !strcmp(tmp_str, "write")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100211 smcconf->mode |= ATMEL_SMC_MODE_BAT_WRITE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200212 required = true;
213 }
214
215 tmp_str = NULL;
216 of_property_read_string(np, "atmel,smc-read-mode", &tmp_str);
217 if (tmp_str && !strcmp(tmp_str, "nrd")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100218 smcconf->mode |= ATMEL_SMC_MODE_READMODE_NRD;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200219 required = true;
220 }
221
222 tmp_str = NULL;
223 of_property_read_string(np, "atmel,smc-write-mode", &tmp_str);
224 if (tmp_str && !strcmp(tmp_str, "nwe")) {
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100225 smcconf->mode |= ATMEL_SMC_MODE_WRITEMODE_NWE;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200226 required = true;
227 }
228
229 tmp_str = NULL;
230 of_property_read_string(np, "atmel,smc-exnw-mode", &tmp_str);
231 if (tmp_str) {
232 if (!strcmp(tmp_str, "frozen"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100233 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_FROZEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200234 else if (!strcmp(tmp_str, "ready"))
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100235 smcconf->mode |= ATMEL_SMC_MODE_EXNWMODE_READY;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200236 else if (strcmp(tmp_str, "disabled"))
237 return -EINVAL;
238
239 required = true;
240 }
241
242 ret = of_property_read_u32(np, "atmel,smc-page-mode", &tmp);
243 if (!ret) {
244 switch (tmp) {
245 case 4:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100246 smcconf->mode |= ATMEL_SMC_MODE_PS_4;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200247 break;
248
249 case 8:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100250 smcconf->mode |= ATMEL_SMC_MODE_PS_8;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200251 break;
252
253 case 16:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100254 smcconf->mode |= ATMEL_SMC_MODE_PS_16;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200255 break;
256
257 case 32:
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100258 smcconf->mode |= ATMEL_SMC_MODE_PS_32;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200259 break;
260
261 default:
262 return -EINVAL;
263 }
264
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100265 smcconf->mode |= ATMEL_SMC_MODE_PMEN;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200266 required = true;
267 }
268
Boris Brezillon9453fa42017-03-16 09:30:32 +0100269 ret = atmel_ebi_xslate_smc_timings(ebid, np, &conf->smcconf);
Alexander Dahlbc9b9342017-07-25 14:00:22 +0200270 if (ret < 0)
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100271 return -EINVAL;
272
273 if ((ret > 0 && !required) || (!ret && required)) {
Rob Herringdb749d12017-07-18 16:43:14 -0500274 dev_err(ebid->ebi->dev, "missing atmel,smc- properties in %pOF",
275 np);
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100276 return -EINVAL;
277 }
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200278
279 return required;
280}
281
Boris Brezillon9453fa42017-03-16 09:30:32 +0100282static void at91sam9_ebi_apply_config(struct atmel_ebi_dev *ebid,
283 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200284{
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100285 atmel_smc_cs_conf_apply(ebid->ebi->smc.regmap, conf->cs,
286 &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200287}
288
Boris Brezillon9453fa42017-03-16 09:30:32 +0100289static void sama5_ebi_apply_config(struct atmel_ebi_dev *ebid,
290 struct atmel_ebi_dev_config *conf)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200291{
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200292 atmel_hsmc_cs_conf_apply(ebid->ebi->smc.regmap, ebid->ebi->smc.layout,
293 conf->cs, &conf->smcconf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200294}
295
Boris Brezillon9453fa42017-03-16 09:30:32 +0100296static int atmel_ebi_dev_setup(struct atmel_ebi *ebi, struct device_node *np,
297 int reg_cells)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200298{
Boris Brezillon9453fa42017-03-16 09:30:32 +0100299 const struct atmel_ebi_caps *caps = ebi->caps;
300 struct atmel_ebi_dev_config conf = { };
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200301 struct device *dev = ebi->dev;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100302 struct atmel_ebi_dev *ebid;
Boris Brezillon987e0792017-01-27 10:10:37 +0100303 unsigned long cslines = 0;
304 int ret, numcs = 0, nentries, i;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200305 bool apply = false;
Boris Brezillon987e0792017-01-27 10:10:37 +0100306 u32 cs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200307
Boris Brezillon987e0792017-01-27 10:10:37 +0100308 nentries = of_property_count_elems_of_size(np, "reg",
309 reg_cells * sizeof(u32));
310 for (i = 0; i < nentries; i++) {
311 ret = of_property_read_u32_index(np, "reg", i * reg_cells,
312 &cs);
313 if (ret)
314 return ret;
315
Tudor Ambarusdbbf9832019-09-06 15:06:41 +0000316 if (cs >= AT91_EBI_NUM_CS ||
Boris Brezillon987e0792017-01-27 10:10:37 +0100317 !(ebi->caps->available_cs & BIT(cs))) {
Rob Herringdb749d12017-07-18 16:43:14 -0500318 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon987e0792017-01-27 10:10:37 +0100319 return -EINVAL;
320 }
321
322 if (!test_and_set_bit(cs, &cslines))
323 numcs++;
324 }
325
326 if (!numcs) {
Rob Herringdb749d12017-07-18 16:43:14 -0500327 dev_err(dev, "invalid reg property in %pOF\n", np);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200328 return -EINVAL;
329 }
330
Gustavo A. R. Silvaf62df672018-08-23 20:07:06 -0500331 ebid = devm_kzalloc(ebi->dev, struct_size(ebid, configs, numcs),
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200332 GFP_KERNEL);
333 if (!ebid)
334 return -ENOMEM;
335
336 ebid->ebi = ebi;
Boris Brezillonaaa572b2017-03-16 09:30:33 +0100337 ebid->numcs = numcs;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200338
339 ret = caps->xlate_config(ebid, np, &conf);
340 if (ret < 0)
341 return ret;
342 else if (ret)
343 apply = true;
344
Boris Brezillon987e0792017-01-27 10:10:37 +0100345 i = 0;
Tudor Ambarusdbbf9832019-09-06 15:06:41 +0000346 for_each_set_bit(cs, &cslines, AT91_EBI_NUM_CS) {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200347 ebid->configs[i].cs = cs;
348
349 if (apply) {
350 conf.cs = cs;
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100351 caps->apply_config(ebid, &conf);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200352 }
353
354 caps->get_config(ebid, &ebid->configs[i]);
355
356 /*
357 * Attach the EBI device to the generic SMC logic if at least
358 * one "atmel,smc-" property is present.
359 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100360 if (ebi->caps->ebi_csa_offs && apply)
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000361 regmap_update_bits(ebi->regmap,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100362 ebi->caps->ebi_csa_offs,
363 BIT(cs), 0);
Boris Brezillon987e0792017-01-27 10:10:37 +0100364
365 i++;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200366 }
367
368 list_add_tail(&ebid->node, &ebi->devs);
369
370 return 0;
371}
372
Boris Brezillon9453fa42017-03-16 09:30:32 +0100373static const struct atmel_ebi_caps at91sam9260_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200374 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100375 .ebi_csa_offs = AT91SAM9260_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000376 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200377 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100378 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200379 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200380};
381
Boris Brezillon9453fa42017-03-16 09:30:32 +0100382static const struct atmel_ebi_caps at91sam9261_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200383 .available_cs = 0xff,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100384 .ebi_csa_offs = AT91SAM9261_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000385 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200386 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100387 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200388 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200389};
390
Boris Brezillon9453fa42017-03-16 09:30:32 +0100391static const struct atmel_ebi_caps at91sam9263_ebi0_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200392 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100393 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI0CSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000394 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200395 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100396 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200397 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200398};
399
Boris Brezillon9453fa42017-03-16 09:30:32 +0100400static const struct atmel_ebi_caps at91sam9263_ebi1_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200401 .available_cs = 0x7,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100402 .ebi_csa_offs = AT91SAM9263_MATRIX_EBI1CSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000403 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200404 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100405 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200406 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200407};
408
Boris Brezillon9453fa42017-03-16 09:30:32 +0100409static const struct atmel_ebi_caps at91sam9rl_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200410 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100411 .ebi_csa_offs = AT91SAM9RL_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000412 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200413 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100414 .xlate_config = atmel_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
Boris Brezillon9453fa42017-03-16 09:30:32 +0100418static const struct atmel_ebi_caps at91sam9g45_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200419 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100420 .ebi_csa_offs = AT91SAM9G45_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000421 .regmap_name = "atmel,matrix",
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 at91sam9x5_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200428 .available_cs = 0x3f,
Boris Brezillond9f81da2017-03-16 09:30:30 +0100429 .ebi_csa_offs = AT91SAM9X5_MATRIX_EBICSA,
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000430 .regmap_name = "atmel,matrix",
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200431 .get_config = at91sam9_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100432 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200433 .apply_config = at91sam9_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200434};
435
Boris Brezillon9453fa42017-03-16 09:30:32 +0100436static const struct atmel_ebi_caps sama5d3_ebi_caps = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200437 .available_cs = 0xf,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100438 .get_config = sama5_ebi_get_config,
Boris Brezillon9453fa42017-03-16 09:30:32 +0100439 .xlate_config = atmel_ebi_xslate_smc_config,
Boris Brezillon8eb8c7d2017-03-16 09:30:29 +0100440 .apply_config = sama5_ebi_apply_config,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200441};
442
Tudor Ambarus3e0863d2019-02-13 08:59:55 +0000443static const struct atmel_ebi_caps sam9x60_ebi_caps = {
444 .available_cs = 0x3f,
445 .ebi_csa_offs = AT91_SFR_CCFG_EBICSA,
446 .regmap_name = "microchip,sfr",
447 .get_config = at91sam9_ebi_get_config,
448 .xlate_config = atmel_ebi_xslate_smc_config,
449 .apply_config = at91sam9_ebi_apply_config,
450};
451
Boris Brezillon9453fa42017-03-16 09:30:32 +0100452static const struct of_device_id atmel_ebi_id_table[] = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200453 {
454 .compatible = "atmel,at91sam9260-ebi",
455 .data = &at91sam9260_ebi_caps,
456 },
457 {
458 .compatible = "atmel,at91sam9261-ebi",
459 .data = &at91sam9261_ebi_caps,
460 },
461 {
462 .compatible = "atmel,at91sam9263-ebi0",
463 .data = &at91sam9263_ebi0_caps,
464 },
465 {
466 .compatible = "atmel,at91sam9263-ebi1",
467 .data = &at91sam9263_ebi1_caps,
468 },
469 {
470 .compatible = "atmel,at91sam9rl-ebi",
471 .data = &at91sam9rl_ebi_caps,
472 },
473 {
474 .compatible = "atmel,at91sam9g45-ebi",
475 .data = &at91sam9g45_ebi_caps,
476 },
477 {
478 .compatible = "atmel,at91sam9x5-ebi",
479 .data = &at91sam9x5_ebi_caps,
480 },
481 {
482 .compatible = "atmel,sama5d3-ebi",
483 .data = &sama5d3_ebi_caps,
484 },
Tudor Ambarus3e0863d2019-02-13 08:59:55 +0000485 {
486 .compatible = "microchip,sam9x60-ebi",
487 .data = &sam9x60_ebi_caps,
488 },
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200489 { /* sentinel */ }
490};
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200491
Boris Brezillon9453fa42017-03-16 09:30:32 +0100492static int atmel_ebi_dev_disable(struct atmel_ebi *ebi, struct device_node *np)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200493{
494 struct device *dev = ebi->dev;
495 struct property *newprop;
496
497 newprop = devm_kzalloc(dev, sizeof(*newprop), GFP_KERNEL);
498 if (!newprop)
499 return -ENOMEM;
500
501 newprop->name = devm_kstrdup(dev, "status", GFP_KERNEL);
502 if (!newprop->name)
503 return -ENOMEM;
504
505 newprop->value = devm_kstrdup(dev, "disabled", GFP_KERNEL);
Wei Yongjunecc2d432016-09-16 13:03:47 +0000506 if (!newprop->value)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200507 return -ENOMEM;
508
509 newprop->length = sizeof("disabled");
510
511 return of_update_property(np, newprop);
512}
513
Boris Brezillon9453fa42017-03-16 09:30:32 +0100514static int atmel_ebi_probe(struct platform_device *pdev)
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200515{
516 struct device *dev = &pdev->dev;
Boris Brezillon87108dc2017-01-27 10:24:09 +0100517 struct device_node *child, *np = dev->of_node, *smc_np;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200518 const struct of_device_id *match;
Boris Brezillon9453fa42017-03-16 09:30:32 +0100519 struct atmel_ebi *ebi;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200520 int ret, reg_cells;
521 struct clk *clk;
522 u32 val;
523
Boris Brezillon9453fa42017-03-16 09:30:32 +0100524 match = of_match_device(atmel_ebi_id_table, dev);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200525 if (!match || !match->data)
526 return -EINVAL;
527
528 ebi = devm_kzalloc(dev, sizeof(*ebi), GFP_KERNEL);
529 if (!ebi)
530 return -ENOMEM;
531
Boris Brezillon44073192017-03-16 09:30:34 +0100532 platform_set_drvdata(pdev, ebi);
533
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200534 INIT_LIST_HEAD(&ebi->devs);
535 ebi->caps = match->data;
536 ebi->dev = dev;
537
538 clk = devm_clk_get(dev, NULL);
539 if (IS_ERR(clk))
540 return PTR_ERR(clk);
541
542 ebi->clk = clk;
543
Boris Brezillon87108dc2017-01-27 10:24:09 +0100544 smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0);
545
546 ebi->smc.regmap = syscon_node_to_regmap(smc_np);
547 if (IS_ERR(ebi->smc.regmap))
548 return PTR_ERR(ebi->smc.regmap);
549
Ludovic Desrochesb0f3ab22017-07-18 15:22:19 +0200550 ebi->smc.layout = atmel_hsmc_get_reg_layout(smc_np);
551 if (IS_ERR(ebi->smc.layout))
552 return PTR_ERR(ebi->smc.layout);
553
Boris Brezillon87108dc2017-01-27 10:24:09 +0100554 ebi->smc.clk = of_clk_get(smc_np, 0);
555 if (IS_ERR(ebi->smc.clk)) {
556 if (PTR_ERR(ebi->smc.clk) != -ENOENT)
557 return PTR_ERR(ebi->smc.clk);
558
559 ebi->smc.clk = NULL;
560 }
561 ret = clk_prepare_enable(ebi->smc.clk);
562 if (ret)
563 return ret;
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200564
565 /*
566 * The sama5d3 does not provide an EBICSA register and thus does need
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000567 * to access it.
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200568 */
Boris Brezillond9f81da2017-03-16 09:30:30 +0100569 if (ebi->caps->ebi_csa_offs) {
Tudor Ambarusad7bdbc2019-02-13 08:59:48 +0000570 ebi->regmap =
571 syscon_regmap_lookup_by_phandle(np,
572 ebi->caps->regmap_name);
573 if (IS_ERR(ebi->regmap))
574 return PTR_ERR(ebi->regmap);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200575 }
576
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200577 ret = of_property_read_u32(np, "#address-cells", &val);
578 if (ret) {
579 dev_err(dev, "missing #address-cells property\n");
580 return ret;
581 }
582
583 reg_cells = val;
584
585 ret = of_property_read_u32(np, "#size-cells", &val);
586 if (ret) {
587 dev_err(dev, "missing #address-cells property\n");
588 return ret;
589 }
590
591 reg_cells += val;
592
593 for_each_available_child_of_node(np, child) {
594 if (!of_find_property(child, "reg", NULL))
595 continue;
596
Boris Brezillon9453fa42017-03-16 09:30:32 +0100597 ret = atmel_ebi_dev_setup(ebi, child, reg_cells);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200598 if (ret) {
Rob Herringdb749d12017-07-18 16:43:14 -0500599 dev_err(dev, "failed to configure EBI bus for %pOF, disabling the device",
600 child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200601
Boris Brezillon9453fa42017-03-16 09:30:32 +0100602 ret = atmel_ebi_dev_disable(ebi, child);
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200603 if (ret)
604 return ret;
605 }
606 }
607
608 return of_platform_populate(np, NULL, NULL, dev);
609}
610
Arnd Bergmann41b80bb2017-04-19 19:48:07 +0200611static __maybe_unused int atmel_ebi_resume(struct device *dev)
Boris Brezillon44073192017-03-16 09:30:34 +0100612{
613 struct atmel_ebi *ebi = dev_get_drvdata(dev);
614 struct atmel_ebi_dev *ebid;
615
616 list_for_each_entry(ebid, &ebi->devs, node) {
617 int i;
618
619 for (i = 0; i < ebid->numcs; i++)
620 ebid->ebi->caps->apply_config(ebid, &ebid->configs[i]);
621 }
622
623 return 0;
624}
625
626static SIMPLE_DEV_PM_OPS(atmel_ebi_pm_ops, NULL, atmel_ebi_resume);
627
Boris Brezillon9453fa42017-03-16 09:30:32 +0100628static struct platform_driver atmel_ebi_driver = {
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200629 .driver = {
630 .name = "atmel-ebi",
Boris Brezillon9453fa42017-03-16 09:30:32 +0100631 .of_match_table = atmel_ebi_id_table,
Boris Brezillon44073192017-03-16 09:30:34 +0100632 .pm = &atmel_ebi_pm_ops,
Boris Brezillon6a4ec4c2016-05-23 09:44:54 +0200633 },
634};
Boris Brezillon9453fa42017-03-16 09:30:32 +0100635builtin_platform_driver_probe(atmel_ebi_driver, atmel_ebi_probe);