blob: d91d58da45966d4dea826972b90d3c610a46bd14 [file] [log] [blame]
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * ASPEED FMC/SPI Controller driver
4 *
5 * Copyright (c) 2022 ASPEED Corporation.
6 * Copyright (c) 2022 IBM Corporation.
7 *
8 * Author:
9 * Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
10 * Cedric Le Goater <clg@kaod.org>
11 */
12
13#include <asm/io.h>
14#include <clk.h>
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080015#include <dm.h>
16#include <dm/device_compat.h>
17#include <linux/bitops.h>
18#include <linux/bug.h>
19#include <linux/err.h>
20#include <linux/iopoll.h>
21#include <linux/kernel.h>
22#include <linux/mtd/spi-nor.h>
23#include <linux/sizes.h>
24#include <malloc.h>
25#include <spi.h>
26#include <spi-mem.h>
27
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +080028#define ASPEED_SPI_MAX_CS 5
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080029
30#define CTRL_IO_SINGLE_DATA 0
31#define CTRL_IO_QUAD_DATA BIT(30)
32#define CTRL_IO_DUAL_DATA BIT(29)
33
34#define CTRL_IO_MODE_USER GENMASK(1, 0)
35#define CTRL_IO_MODE_CMD_READ BIT(0)
36#define CTRL_IO_MODE_CMD_WRITE BIT(1)
37#define CTRL_STOP_ACTIVE BIT(2)
38
39struct aspeed_spi_regs {
40 u32 conf; /* 0x00 CE Type Setting */
41 u32 ctrl; /* 0x04 CE Control */
42 u32 intr_ctrl; /* 0x08 Interrupt Control and Status */
43 u32 cmd_ctrl; /* 0x0c Command Control */
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +080044 u32 ce_ctrl[ASPEED_SPI_MAX_CS]; /* 0x10 .. 0x20 CEx Control */
45 u32 _reserved0[3]; /* .. */
46 u32 segment_addr[ASPEED_SPI_MAX_CS]; /* 0x30 .. 0x40 Segment Address */
47 u32 _reserved1[3]; /* .. */
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080048 u32 soft_rst_cmd_ctrl; /* 0x50 Auto Soft-Reset Command Control */
49 u32 _reserved2[11]; /* .. */
50 u32 dma_ctrl; /* 0x80 DMA Control/Status */
51 u32 dma_flash_addr; /* 0x84 DMA Flash Side Address */
52 u32 dma_dram_addr; /* 0x88 DMA DRAM Side Address */
53 u32 dma_len; /* 0x8c DMA Length Register */
54 u32 dma_checksum; /* 0x90 Checksum Calculation Result */
55 u32 timings[ASPEED_SPI_MAX_CS]; /* 0x94 Read Timing Compensation */
56};
57
58struct aspeed_spi_plat {
59 u8 max_cs;
60 void __iomem *ahb_base; /* AHB address base for all flash devices. */
61 fdt_size_t ahb_sz; /* Overall AHB window size for all flash device. */
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +080062 u32 hclk_rate; /* AHB clock rate */
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080063};
64
65struct aspeed_spi_flash {
66 void __iomem *ahb_base;
67 u32 ahb_decoded_sz;
68 u32 ce_ctrl_user;
69 u32 ce_ctrl_read;
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +080070 u32 max_freq;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080071};
72
73struct aspeed_spi_priv {
74 u32 num_cs;
75 struct aspeed_spi_regs *regs;
76 struct aspeed_spi_info *info;
77 struct aspeed_spi_flash flashes[ASPEED_SPI_MAX_CS];
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +080078 bool fixed_decoded_range;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080079};
80
81struct aspeed_spi_info {
82 u32 io_mode_mask;
83 u32 max_bus_width;
84 u32 min_decoded_sz;
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +080085 u32 clk_ctrl_mask;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080086 void (*set_4byte)(struct udevice *bus, u32 cs);
87 u32 (*segment_start)(struct udevice *bus, u32 reg);
88 u32 (*segment_end)(struct udevice *bus, u32 reg);
89 u32 (*segment_reg)(u32 start, u32 end);
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +080090 int (*adjust_decoded_sz)(struct udevice *bus);
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +080091 u32 (*get_clk_setting)(struct udevice *dev, uint hz);
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +080092};
93
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +080094struct aspeed_spi_decoded_range {
95 u32 cs;
96 u32 ahb_base;
97 u32 sz;
98};
99
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800100static const struct aspeed_spi_info ast2400_spi_info;
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800101static const struct aspeed_spi_info ast2500_fmc_info;
102static const struct aspeed_spi_info ast2500_spi_info;
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800103static int aspeed_spi_decoded_range_config(struct udevice *bus);
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800104static int aspeed_spi_trim_decoded_size(struct udevice *bus);
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800105
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800106static u32 aspeed_spi_get_io_mode(u32 bus_width)
107{
108 switch (bus_width) {
109 case 1:
110 return CTRL_IO_SINGLE_DATA;
111 case 2:
112 return CTRL_IO_DUAL_DATA;
113 case 4:
114 return CTRL_IO_QUAD_DATA;
115 default:
116 /* keep in default value */
117 return CTRL_IO_SINGLE_DATA;
118 }
119}
120
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800121static u32 ast2400_spi_segment_start(struct udevice *bus, u32 reg)
122{
123 struct aspeed_spi_plat *plat = dev_get_plat(bus);
124 u32 start_offset = ((reg >> 16) & 0xff) << 23;
125
126 if (start_offset == 0)
127 return (u32)plat->ahb_base;
128
129 return (u32)plat->ahb_base + start_offset;
130}
131
132static u32 ast2400_spi_segment_end(struct udevice *bus, u32 reg)
133{
134 struct aspeed_spi_plat *plat = dev_get_plat(bus);
135 u32 end_offset = ((reg >> 24) & 0xff) << 23;
136
137 /* Meaningless end_offset, set to physical ahb base. */
138 if (end_offset == 0)
139 return (u32)plat->ahb_base;
140
141 return (u32)plat->ahb_base + end_offset;
142}
143
144static u32 ast2400_spi_segment_reg(u32 start, u32 end)
145{
146 if (start == end)
147 return 0;
148
149 return ((((start) >> 23) & 0xff) << 16) | ((((end) >> 23) & 0xff) << 24);
150}
151
152static void ast2400_fmc_chip_set_4byte(struct udevice *bus, u32 cs)
153{
154 struct aspeed_spi_priv *priv = dev_get_priv(bus);
155 u32 reg_val;
156
157 reg_val = readl(&priv->regs->ctrl);
158 reg_val |= 0x1 << cs;
159 writel(reg_val, &priv->regs->ctrl);
160}
161
162static void ast2400_spi_chip_set_4byte(struct udevice *bus, u32 cs)
163{
164 struct aspeed_spi_priv *priv = dev_get_priv(bus);
165 struct aspeed_spi_flash *flash = &priv->flashes[cs];
166
167 flash->ce_ctrl_read |= BIT(13);
168 writel(flash->ce_ctrl_read, &priv->regs->ctrl);
169}
170
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800171/* Transfer maximum clock frequency to register setting */
172static u32 ast2400_get_clk_setting(struct udevice *dev, uint max_hz)
173{
174 struct aspeed_spi_plat *plat = dev_get_plat(dev->parent);
175 struct aspeed_spi_priv *priv = dev_get_priv(dev->parent);
176 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
177 u32 hclk_clk = plat->hclk_rate;
178 u32 hclk_div = 0x0000; /* default value */
179 u32 i;
180 bool found = false;
181 /* HCLK/1 .. HCLK/16 */
182 u32 hclk_masks[] = {15, 7, 14, 6, 13, 5, 12, 4,
183 11, 3, 10, 2, 9, 1, 8, 0};
184
185 /* FMC/SPIR10[11:8] */
186 for (i = 0; i < ARRAY_SIZE(hclk_masks); i++) {
187 if (hclk_clk / (i + 1) <= max_hz) {
188 found = true;
189 break;
190 }
191 }
192
193 if (found) {
194 hclk_div = hclk_masks[i] << 8;
195 priv->flashes[slave_plat->cs].max_freq = hclk_clk / (i + 1);
196 }
197
198 dev_dbg(dev, "found: %s, hclk: %d, max_clk: %d\n", found ? "yes" : "no",
199 hclk_clk, max_hz);
200
201 if (found) {
202 dev_dbg(dev, "h_div: %d (mask %x), speed: %d\n",
203 i + 1, hclk_masks[i], priv->flashes[slave_plat->cs].max_freq);
204 }
205
206 return hclk_div;
207}
208
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800209static u32 ast2500_spi_segment_start(struct udevice *bus, u32 reg)
210{
211 struct aspeed_spi_plat *plat = dev_get_plat(bus);
212 u32 start_offset = ((reg >> 16) & 0xff) << 23;
213
214 if (start_offset == 0)
215 return (u32)plat->ahb_base;
216
217 return (u32)plat->ahb_base + start_offset;
218}
219
220static u32 ast2500_spi_segment_end(struct udevice *bus, u32 reg)
221{
222 struct aspeed_spi_plat *plat = dev_get_plat(bus);
223 u32 end_offset = ((reg >> 24) & 0xff) << 23;
224
225 /* Meaningless end_offset, set to physical ahb base. */
226 if (end_offset == 0)
227 return (u32)plat->ahb_base;
228
229 return (u32)plat->ahb_base + end_offset;
230}
231
232static u32 ast2500_spi_segment_reg(u32 start, u32 end)
233{
234 if (start == end)
235 return 0;
236
237 return ((((start) >> 23) & 0xff) << 16) | ((((end) >> 23) & 0xff) << 24);
238}
239
240static void ast2500_spi_chip_set_4byte(struct udevice *bus, u32 cs)
241{
242 struct aspeed_spi_priv *priv = dev_get_priv(bus);
243 u32 reg_val;
244
245 reg_val = readl(&priv->regs->ctrl);
246 reg_val |= 0x1 << cs;
247 writel(reg_val, &priv->regs->ctrl);
248}
249
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800250/*
251 * For AST2500, the minimum address decoded size for each CS
252 * is 8MB instead of zero. This address decoded size is
253 * mandatory for each CS no matter whether it will be used.
254 * This is a HW limitation.
255 */
256static int ast2500_adjust_decoded_size(struct udevice *bus)
257{
258 struct aspeed_spi_plat *plat = dev_get_plat(bus);
259 struct aspeed_spi_priv *priv = dev_get_priv(bus);
260 struct aspeed_spi_flash *flashes = &priv->flashes[0];
261 int ret;
262 int i;
263 int cs;
264 u32 pre_sz;
265 u32 lack_sz;
266
267 /* Assign min_decoded_sz to unused CS. */
268 for (cs = priv->num_cs; cs < plat->max_cs; cs++)
269 flashes[cs].ahb_decoded_sz = priv->info->min_decoded_sz;
270
271 /*
Pengfei Fan746271d2022-12-09 09:39:50 +0800272 * If command mode or normal mode is used, the start address of a
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800273 * decoded range should be multiple of its related flash size.
274 * Namely, the total decoded size from flash 0 to flash N should
275 * be multiple of the size of flash (N + 1).
276 */
277 for (cs = priv->num_cs - 1; cs >= 0; cs--) {
278 pre_sz = 0;
279 for (i = 0; i < cs; i++)
280 pre_sz += flashes[i].ahb_decoded_sz;
281
282 if (flashes[cs].ahb_decoded_sz != 0 &&
283 (pre_sz % flashes[cs].ahb_decoded_sz) != 0) {
284 lack_sz = flashes[cs].ahb_decoded_sz -
285 (pre_sz % flashes[cs].ahb_decoded_sz);
286 flashes[0].ahb_decoded_sz += lack_sz;
287 }
288 }
289
290 ret = aspeed_spi_trim_decoded_size(bus);
291 if (ret != 0)
292 return ret;
293
294 return 0;
295}
296
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800297static u32 ast2500_get_clk_setting(struct udevice *dev, uint max_hz)
298{
299 struct aspeed_spi_plat *plat = dev_get_plat(dev->parent);
300 struct aspeed_spi_priv *priv = dev_get_priv(dev->parent);
301 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
302 u32 hclk_clk = plat->hclk_rate;
303 u32 hclk_div = 0x0000; /* default value */
304 u32 i;
305 bool found = false;
306 /* HCLK/1 .. HCLK/16 */
307 u32 hclk_masks[] = {15, 7, 14, 6, 13, 5, 12, 4,
308 11, 3, 10, 2, 9, 1, 8, 0};
309
310 /* FMC/SPIR10[11:8] */
311 for (i = 0; i < ARRAY_SIZE(hclk_masks); i++) {
312 if (hclk_clk / (i + 1) <= max_hz) {
313 found = true;
314 priv->flashes[slave_plat->cs].max_freq =
315 hclk_clk / (i + 1);
316 break;
317 }
318 }
319
320 if (found) {
321 hclk_div = hclk_masks[i] << 8;
322 goto end;
323 }
324
325 for (i = 0; i < ARRAY_SIZE(hclk_masks); i++) {
326 if (hclk_clk / ((i + 1) * 4) <= max_hz) {
327 found = true;
328 priv->flashes[slave_plat->cs].max_freq =
329 hclk_clk / ((i + 1) * 4);
330 break;
331 }
332 }
333
334 if (found)
335 hclk_div = BIT(13) | (hclk_masks[i] << 8);
336
337end:
338 dev_dbg(dev, "found: %s, hclk: %d, max_clk: %d\n", found ? "yes" : "no",
339 hclk_clk, max_hz);
340
341 if (found) {
342 dev_dbg(dev, "h_div: %d (mask %x), speed: %d\n",
343 i + 1, hclk_masks[i], priv->flashes[slave_plat->cs].max_freq);
344 }
345
346 return hclk_div;
347}
348
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800349static u32 ast2600_spi_segment_start(struct udevice *bus, u32 reg)
350{
351 struct aspeed_spi_plat *plat = dev_get_plat(bus);
352 u32 start_offset = (reg << 16) & 0x0ff00000;
353
354 if (start_offset == 0)
355 return (u32)plat->ahb_base;
356
357 return (u32)plat->ahb_base + start_offset;
358}
359
360static u32 ast2600_spi_segment_end(struct udevice *bus, u32 reg)
361{
362 struct aspeed_spi_plat *plat = dev_get_plat(bus);
363 u32 end_offset = reg & 0x0ff00000;
364
365 /* Meaningless end_offset, set to physical ahb base. */
366 if (end_offset == 0)
367 return (u32)plat->ahb_base;
368
369 return (u32)plat->ahb_base + end_offset + 0x100000;
370}
371
372static u32 ast2600_spi_segment_reg(u32 start, u32 end)
373{
374 if (start == end)
375 return 0;
376
377 return ((start & 0x0ff00000) >> 16) | ((end - 0x100000) & 0x0ff00000);
378}
379
380static void ast2600_spi_chip_set_4byte(struct udevice *bus, u32 cs)
381{
382 struct aspeed_spi_priv *priv = dev_get_priv(bus);
383 u32 reg_val;
384
385 reg_val = readl(&priv->regs->ctrl);
386 reg_val |= 0x11 << cs;
387 writel(reg_val, &priv->regs->ctrl);
388}
389
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800390static int ast2600_adjust_decoded_size(struct udevice *bus)
391{
392 struct aspeed_spi_plat *plat = dev_get_plat(bus);
393 struct aspeed_spi_priv *priv = dev_get_priv(bus);
394 struct aspeed_spi_flash *flashes = &priv->flashes[0];
395 int ret;
396 int i;
397 int cs;
398 u32 pre_sz;
399 u32 lack_sz;
400
401 /* Close unused CS. */
402 for (cs = priv->num_cs; cs < plat->max_cs; cs++)
403 flashes[cs].ahb_decoded_sz = 0;
404
405 /*
Pengfei Fan746271d2022-12-09 09:39:50 +0800406 * If command mode or normal mode is used, the start address of a
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800407 * decoded range should be multiple of its related flash size.
408 * Namely, the total decoded size from flash 0 to flash N should
409 * be multiple of the size of flash (N + 1).
410 */
411 for (cs = priv->num_cs - 1; cs >= 0; cs--) {
412 pre_sz = 0;
413 for (i = 0; i < cs; i++)
414 pre_sz += flashes[i].ahb_decoded_sz;
415
416 if (flashes[cs].ahb_decoded_sz != 0 &&
417 (pre_sz % flashes[cs].ahb_decoded_sz) != 0) {
418 lack_sz = flashes[cs].ahb_decoded_sz -
419 (pre_sz % flashes[cs].ahb_decoded_sz);
420 flashes[0].ahb_decoded_sz += lack_sz;
421 }
422 }
423
424 ret = aspeed_spi_trim_decoded_size(bus);
425 if (ret != 0)
426 return ret;
427
428 return 0;
429}
430
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800431static u32 ast2600_get_clk_setting(struct udevice *dev, uint max_hz)
432{
433 struct aspeed_spi_plat *plat = dev_get_plat(dev->parent);
434 struct aspeed_spi_priv *priv = dev_get_priv(dev->parent);
435 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
436 u32 hclk_clk = plat->hclk_rate;
437 u32 hclk_div = 0x0400; /* default value */
438 u32 i, j;
439 bool found = false;
440 /* HCLK/1 .. HCLK/16 */
441 u32 hclk_masks[] = {15, 7, 14, 6, 13, 5, 12, 4,
442 11, 3, 10, 2, 9, 1, 8, 0};
443
444 /* FMC/SPIR10[27:24] */
445 for (j = 0; j < 0xf; j++) {
446 /* FMC/SPIR10[11:8] */
447 for (i = 0; i < ARRAY_SIZE(hclk_masks); i++) {
448 if (i == 0 && j == 0)
449 continue;
450
451 if (hclk_clk / (i + 1 + (j * 16)) <= max_hz) {
452 found = true;
453 break;
454 }
455 }
456
457 if (found) {
458 hclk_div = ((j << 24) | hclk_masks[i] << 8);
459 priv->flashes[slave_plat->cs].max_freq =
460 hclk_clk / (i + 1 + j * 16);
461 break;
462 }
463 }
464
465 dev_dbg(dev, "found: %s, hclk: %d, max_clk: %d\n", found ? "yes" : "no",
466 hclk_clk, max_hz);
467
468 if (found) {
469 dev_dbg(dev, "base_clk: %d, h_div: %d (mask %x), speed: %d\n",
470 j, i + 1, hclk_masks[i], priv->flashes[slave_plat->cs].max_freq);
471 }
472
473 return hclk_div;
474}
475
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800476/*
477 * As the flash size grows up, we need to trim some decoded
478 * size if needed for the sake of conforming the maximum
479 * decoded size. We trim the decoded size from the largest
480 * CS in order to avoid affecting the default boot up sequence
481 * from CS0 where command mode or normal mode is used.
482 * Notice, if a CS decoded size is trimmed, command mode may
483 * not work perfectly on that CS.
484 */
485static int aspeed_spi_trim_decoded_size(struct udevice *bus)
486{
487 struct aspeed_spi_plat *plat = dev_get_plat(bus);
488 struct aspeed_spi_priv *priv = dev_get_priv(bus);
489 struct aspeed_spi_flash *flashes = &priv->flashes[0];
490 u32 total_sz;
491 int cs = plat->max_cs - 1;
492 u32 i;
493
494 do {
495 total_sz = 0;
496 for (i = 0; i < plat->max_cs; i++)
497 total_sz += flashes[i].ahb_decoded_sz;
498
499 if (flashes[cs].ahb_decoded_sz <= priv->info->min_decoded_sz)
500 cs--;
501
502 if (cs < 0)
503 return -ENOMEM;
504
505 if (total_sz > plat->ahb_sz) {
506 flashes[cs].ahb_decoded_sz -=
507 priv->info->min_decoded_sz;
508 total_sz -= priv->info->min_decoded_sz;
509 }
510 } while (total_sz > plat->ahb_sz);
511
512 return 0;
513}
514
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800515static int aspeed_spi_read_from_ahb(void __iomem *ahb_base, void *buf,
516 size_t len)
517{
518 size_t offset = 0;
519
520 if (IS_ALIGNED((uintptr_t)ahb_base, sizeof(uintptr_t)) &&
521 IS_ALIGNED((uintptr_t)buf, sizeof(uintptr_t))) {
522 readsl(ahb_base, buf, len >> 2);
523 offset = len & ~0x3;
524 len -= offset;
525 }
526
527 readsb(ahb_base, (u8 *)buf + offset, len);
528
529 return 0;
530}
531
532static int aspeed_spi_write_to_ahb(void __iomem *ahb_base, const void *buf,
533 size_t len)
534{
535 size_t offset = 0;
536
537 if (IS_ALIGNED((uintptr_t)ahb_base, sizeof(uintptr_t)) &&
538 IS_ALIGNED((uintptr_t)buf, sizeof(uintptr_t))) {
539 writesl(ahb_base, buf, len >> 2);
540 offset = len & ~0x3;
541 len -= offset;
542 }
543
544 writesb(ahb_base, (u8 *)buf + offset, len);
545
546 return 0;
547}
548
549/*
550 * Currently, only support 1-1-1, 1-1-2 or 1-1-4
551 * SPI NOR flash operation format.
552 */
553static bool aspeed_spi_supports_op(struct spi_slave *slave,
554 const struct spi_mem_op *op)
555{
556 struct udevice *bus = slave->dev->parent;
557 struct aspeed_spi_priv *priv = dev_get_priv(bus);
558
559 if (op->cmd.buswidth > 1)
560 return false;
561
562 if (op->addr.nbytes != 0) {
563 if (op->addr.buswidth > 1)
564 return false;
565 if (op->addr.nbytes < 3 || op->addr.nbytes > 4)
566 return false;
567 }
568
569 if (op->dummy.nbytes != 0) {
570 if (op->dummy.buswidth > 1 || op->dummy.nbytes > 7)
571 return false;
572 }
573
574 if (op->data.nbytes != 0 &&
575 op->data.buswidth > priv->info->max_bus_width)
576 return false;
577
578 if (!spi_mem_default_supports_op(slave, op))
579 return false;
580
581 return true;
582}
583
584static int aspeed_spi_exec_op_user_mode(struct spi_slave *slave,
585 const struct spi_mem_op *op)
586{
587 struct udevice *dev = slave->dev;
588 struct udevice *bus = dev->parent;
589 struct aspeed_spi_priv *priv = dev_get_priv(bus);
590 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(slave->dev);
591 u32 cs = slave_plat->cs;
592 u32 ce_ctrl_reg = (u32)&priv->regs->ce_ctrl[cs];
593 u32 ce_ctrl_val;
594 struct aspeed_spi_flash *flash = &priv->flashes[cs];
595 u8 dummy_data[16] = {0};
596 u8 addr[4] = {0};
597 int i;
598
599 dev_dbg(dev, "cmd:%x(%d),addr:%llx(%d),dummy:%d(%d),data_len:0x%x(%d)\n",
600 op->cmd.opcode, op->cmd.buswidth, op->addr.val,
601 op->addr.buswidth, op->dummy.nbytes, op->dummy.buswidth,
602 op->data.nbytes, op->data.buswidth);
603
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800604 if (priv->info == &ast2400_spi_info)
605 ce_ctrl_reg = (u32)&priv->regs->ctrl;
606
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800607 /*
608 * Set controller to 4-byte address mode
609 * if flash is in 4-byte address mode.
610 */
611 if (op->cmd.opcode == SPINOR_OP_EN4B)
612 priv->info->set_4byte(bus, cs);
613
614 /* Start user mode */
615 ce_ctrl_val = flash->ce_ctrl_user;
616 writel(ce_ctrl_val, ce_ctrl_reg);
617 ce_ctrl_val &= (~CTRL_STOP_ACTIVE);
618 writel(ce_ctrl_val, ce_ctrl_reg);
619
620 /* Send command */
621 aspeed_spi_write_to_ahb(flash->ahb_base, &op->cmd.opcode, 1);
622
623 /* Send address */
624 for (i = op->addr.nbytes; i > 0; i--) {
625 addr[op->addr.nbytes - i] =
626 ((u32)op->addr.val >> ((i - 1) * 8)) & 0xff;
627 }
628
629 /* Change io_mode */
630 ce_ctrl_val &= ~priv->info->io_mode_mask;
631 ce_ctrl_val |= aspeed_spi_get_io_mode(op->addr.buswidth);
632 writel(ce_ctrl_val, ce_ctrl_reg);
633 aspeed_spi_write_to_ahb(flash->ahb_base, addr, op->addr.nbytes);
634
635 /* Send dummy cycles */
636 aspeed_spi_write_to_ahb(flash->ahb_base, dummy_data, op->dummy.nbytes);
637
638 /* Change io_mode */
639 ce_ctrl_val &= ~priv->info->io_mode_mask;
640 ce_ctrl_val |= aspeed_spi_get_io_mode(op->data.buswidth);
641 writel(ce_ctrl_val, ce_ctrl_reg);
642
643 /* Send data */
644 if (op->data.dir == SPI_MEM_DATA_OUT) {
645 aspeed_spi_write_to_ahb(flash->ahb_base, op->data.buf.out,
646 op->data.nbytes);
647 } else {
648 aspeed_spi_read_from_ahb(flash->ahb_base, op->data.buf.in,
649 op->data.nbytes);
650 }
651
652 ce_ctrl_val |= CTRL_STOP_ACTIVE;
653 writel(ce_ctrl_val, ce_ctrl_reg);
654
655 /* Restore controller setting. */
656 writel(flash->ce_ctrl_read, ce_ctrl_reg);
657
658 return 0;
659}
660
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800661static int aspeed_spi_dirmap_create(struct spi_mem_dirmap_desc *desc)
662{
663 int ret = 0;
664 struct udevice *dev = desc->slave->dev;
665 struct udevice *bus = dev->parent;
666 struct aspeed_spi_priv *priv = dev_get_priv(bus);
667 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
668 const struct aspeed_spi_info *info = priv->info;
669 struct spi_mem_op op_tmpl = desc->info.op_tmpl;
670 u32 i;
671 u32 cs = slave_plat->cs;
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800672 u32 cmd_io_conf;
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800673 u32 ce_ctrl_reg;
674
675 if (desc->info.op_tmpl.data.dir == SPI_MEM_DATA_OUT) {
676 /*
677 * dirmap_write is not supported currently due to a HW
678 * limitation for command write mode: The written data
679 * length should be multiple of 4-byte.
680 */
681 return -EOPNOTSUPP;
682 }
683
684 ce_ctrl_reg = (u32)&priv->regs->ce_ctrl[cs];
685 if (info == &ast2400_spi_info)
686 ce_ctrl_reg = (u32)&priv->regs->ctrl;
687
688 if (desc->info.length > 0x1000000)
689 priv->info->set_4byte(bus, cs);
690
691 /* AST2400 SPI1 doesn't have decoded address segment register. */
692 if (info != &ast2400_spi_info) {
693 priv->flashes[cs].ahb_decoded_sz = desc->info.length;
694
695 for (i = 0; i < priv->num_cs; i++) {
696 dev_dbg(dev, "cs: %d, sz: 0x%x\n", i,
697 priv->flashes[cs].ahb_decoded_sz);
698 }
699
700 ret = aspeed_spi_decoded_range_config(bus);
701 if (ret)
702 return ret;
703 }
704
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800705 cmd_io_conf = aspeed_spi_get_io_mode(op_tmpl.data.buswidth) |
706 op_tmpl.cmd.opcode << 16 |
707 ((op_tmpl.dummy.nbytes) & 0x3) << 6 |
708 ((op_tmpl.dummy.nbytes) & 0x4) << 14 |
709 CTRL_IO_MODE_CMD_READ;
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800710
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800711 priv->flashes[cs].ce_ctrl_read &= priv->info->clk_ctrl_mask;
712 priv->flashes[cs].ce_ctrl_read |= cmd_io_conf;
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800713
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800714 writel(priv->flashes[cs].ce_ctrl_read, ce_ctrl_reg);
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +0800715
716 dev_dbg(dev, "read bus width: %d ce_ctrl_val: 0x%08x\n",
717 op_tmpl.data.buswidth, priv->flashes[cs].ce_ctrl_read);
718
719 return ret;
720}
721
722static ssize_t aspeed_spi_dirmap_read(struct spi_mem_dirmap_desc *desc,
723 u64 offs, size_t len, void *buf)
724{
725 struct udevice *dev = desc->slave->dev;
726 struct aspeed_spi_priv *priv = dev_get_priv(dev->parent);
727 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
728 u32 cs = slave_plat->cs;
729 int ret;
730
731 dev_dbg(dev, "read op:0x%x, addr:0x%llx, len:0x%x\n",
732 desc->info.op_tmpl.cmd.opcode, offs, len);
733
734 if (priv->flashes[cs].ahb_decoded_sz < offs + len ||
735 (offs % 4) != 0) {
736 ret = aspeed_spi_exec_op_user_mode(desc->slave,
737 &desc->info.op_tmpl);
738 if (ret != 0)
739 return 0;
740 } else {
741 memcpy_fromio(buf, priv->flashes[cs].ahb_base + offs, len);
742 }
743
744 return len;
745}
746
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800747static struct aspeed_spi_flash *aspeed_spi_get_flash(struct udevice *dev)
748{
749 struct udevice *bus = dev->parent;
750 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
751 struct aspeed_spi_plat *plat = dev_get_plat(bus);
752 struct aspeed_spi_priv *priv = dev_get_priv(bus);
753 u32 cs = slave_plat->cs;
754
755 if (cs >= plat->max_cs) {
756 dev_err(dev, "invalid CS %u\n", cs);
757 return NULL;
758 }
759
760 return &priv->flashes[cs];
761}
762
763static void aspeed_spi_decoded_base_calculate(struct udevice *bus)
764{
765 struct aspeed_spi_plat *plat = dev_get_plat(bus);
766 struct aspeed_spi_priv *priv = dev_get_priv(bus);
767 u32 cs;
768
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800769 if (priv->fixed_decoded_range)
770 return;
771
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800772 priv->flashes[0].ahb_base = plat->ahb_base;
773
774 for (cs = 1; cs < plat->max_cs; cs++) {
775 priv->flashes[cs].ahb_base =
776 priv->flashes[cs - 1].ahb_base +
777 priv->flashes[cs - 1].ahb_decoded_sz;
778 }
779}
780
781static void aspeed_spi_decoded_range_set(struct udevice *bus)
782{
783 struct aspeed_spi_plat *plat = dev_get_plat(bus);
784 struct aspeed_spi_priv *priv = dev_get_priv(bus);
785 u32 decoded_reg_val;
786 u32 start_addr, end_addr;
787 u32 cs;
788
789 for (cs = 0; cs < plat->max_cs; cs++) {
790 start_addr = (u32)priv->flashes[cs].ahb_base;
791 end_addr = (u32)priv->flashes[cs].ahb_base +
792 priv->flashes[cs].ahb_decoded_sz;
793
794 decoded_reg_val = priv->info->segment_reg(start_addr, end_addr);
795
796 writel(decoded_reg_val, &priv->regs->segment_addr[cs]);
797
798 dev_dbg(bus, "cs: %d, decoded_reg: 0x%x, start: 0x%x, end: 0x%x\n",
799 cs, decoded_reg_val, start_addr, end_addr);
800 }
801}
802
803static int aspeed_spi_decoded_range_config(struct udevice *bus)
804{
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800805 int ret = 0;
806 struct aspeed_spi_priv *priv = dev_get_priv(bus);
807
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800808 if (priv->info->adjust_decoded_sz &&
809 !priv->fixed_decoded_range) {
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800810 ret = priv->info->adjust_decoded_sz(bus);
811 if (ret != 0)
812 return ret;
813 }
814
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800815 aspeed_spi_decoded_base_calculate(bus);
816 aspeed_spi_decoded_range_set(bus);
817
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +0800818 return ret;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800819}
820
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800821static int aspeed_spi_decoded_ranges_sanity(struct udevice *bus)
822{
823 struct aspeed_spi_plat *plat = dev_get_plat(bus);
824 struct aspeed_spi_priv *priv = dev_get_priv(bus);
825 u32 cs;
826 u32 total_sz = 0;
827
828 /* Check overall size. */
829 for (cs = 0; cs < plat->max_cs; cs++)
830 total_sz += priv->flashes[cs].ahb_decoded_sz;
831
832 if (total_sz > plat->ahb_sz) {
833 dev_err(bus, "invalid total size 0x%08x\n", total_sz);
834 return -EINVAL;
835 }
836
837 /* Check each decoded range size for AST2500. */
838 if (priv->info == &ast2500_fmc_info ||
839 priv->info == &ast2500_spi_info) {
840 for (cs = 0; cs < plat->max_cs; cs++) {
841 if (priv->flashes[cs].ahb_decoded_sz <
842 priv->info->min_decoded_sz) {
843 dev_err(bus, "insufficient decoded range.\n");
844 return -EINVAL;
845 }
846 }
847 }
848
849 /*
850 * Check overlay. Here, we assume the deccded ranges and
851 * address base are monotonic increasing with CE#.
852 */
853 for (cs = plat->max_cs - 1; cs > 0; cs--) {
854 if ((u32)priv->flashes[cs].ahb_base != 0 &&
855 (u32)priv->flashes[cs].ahb_base <
856 (u32)priv->flashes[cs - 1].ahb_base +
857 priv->flashes[cs - 1].ahb_decoded_sz) {
858 dev_err(bus, "decoded range overlay 0x%08x 0x%08x\n",
859 (u32)priv->flashes[cs].ahb_base,
860 (u32)priv->flashes[cs - 1].ahb_base);
861 return -EINVAL;
862 }
863 }
864
865 return 0;
866}
867
868static int aspeed_spi_read_fixed_decoded_ranges(struct udevice *bus)
869{
870 int ret = 0;
871 struct aspeed_spi_plat *plat = dev_get_plat(bus);
872 struct aspeed_spi_priv *priv = dev_get_priv(bus);
873 const char *range_prop = "decoded-ranges";
874 struct aspeed_spi_decoded_range ranges[ASPEED_SPI_MAX_CS];
875 const struct property *prop;
876 u32 prop_sz;
877 u32 count;
878 u32 i;
879
880 priv->fixed_decoded_range = false;
881
882 prop = dev_read_prop(bus, range_prop, &prop_sz);
883 if (!prop)
884 return 0;
885
886 count = prop_sz / sizeof(struct aspeed_spi_decoded_range);
887 if (count > plat->max_cs || count < priv->num_cs) {
888 dev_err(bus, "invalid '%s' property %d %d\n",
889 range_prop, count, priv->num_cs);
890 return -EINVAL;
891 }
892
893 ret = dev_read_u32_array(bus, range_prop, (u32 *)ranges, count * 3);
894 if (ret)
895 return ret;
896
897 for (i = 0; i < count; i++) {
898 priv->flashes[ranges[i].cs].ahb_base =
899 (void __iomem *)ranges[i].ahb_base;
900 priv->flashes[ranges[i].cs].ahb_decoded_sz =
901 ranges[i].sz;
902 }
903
904 for (i = 0; i < plat->max_cs; i++) {
905 dev_dbg(bus, "ahb_base: 0x%p, size: 0x%08x\n",
906 priv->flashes[i].ahb_base,
907 priv->flashes[i].ahb_decoded_sz);
908 }
909
910 ret = aspeed_spi_decoded_ranges_sanity(bus);
911 if (ret != 0)
912 return ret;
913
914 priv->fixed_decoded_range = true;
915
916 return 0;
917}
918
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800919/*
920 * Initialize SPI controller for each chip select.
921 * Here, only the minimum decode range is configured
922 * in order to get device (SPI NOR flash) information
923 * at the early stage.
924 */
925static int aspeed_spi_ctrl_init(struct udevice *bus)
926{
927 int ret;
928 struct aspeed_spi_plat *plat = dev_get_plat(bus);
929 struct aspeed_spi_priv *priv = dev_get_priv(bus);
930 u32 cs;
931 u32 reg_val;
932 u32 decoded_sz;
933
934 /* Enable write capability for all CS. */
935 reg_val = readl(&priv->regs->conf);
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800936 if (priv->info == &ast2400_spi_info) {
937 writel(reg_val | BIT(0), &priv->regs->conf);
938 } else {
939 writel(reg_val | (GENMASK(plat->max_cs - 1, 0) << 16),
940 &priv->regs->conf);
941 }
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800942
943 memset(priv->flashes, 0x0,
944 sizeof(struct aspeed_spi_flash) * ASPEED_SPI_MAX_CS);
945
946 /* Initial user mode. */
947 for (cs = 0; cs < priv->num_cs; cs++) {
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800948 priv->flashes[cs].ce_ctrl_user &= priv->info->clk_ctrl_mask;
949 priv->flashes[cs].ce_ctrl_user |=
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800950 (CTRL_STOP_ACTIVE | CTRL_IO_MODE_USER);
951 }
952
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800953 /*
954 * SPI1 on AST2400 only supports CS0.
955 * It is unnecessary to configure segment address register.
956 */
957 if (priv->info == &ast2400_spi_info) {
958 priv->flashes[cs].ahb_base = plat->ahb_base;
959 priv->flashes[cs].ahb_decoded_sz = 0x10000000;
960 return 0;
961 }
962
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800963
964 ret = aspeed_spi_read_fixed_decoded_ranges(bus);
965 if (ret != 0)
966 return ret;
967
968 if (!priv->fixed_decoded_range) {
969 /* Assign basic AHB decoded size for each CS. */
970 for (cs = 0; cs < plat->max_cs; cs++) {
971 reg_val = readl(&priv->regs->segment_addr[cs]);
972 decoded_sz = priv->info->segment_end(bus, reg_val) -
973 priv->info->segment_start(bus, reg_val);
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800974
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800975 if (decoded_sz < priv->info->min_decoded_sz)
976 decoded_sz = priv->info->min_decoded_sz;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800977
Chin-Ting Kuo12f35e32022-08-19 17:01:13 +0800978 priv->flashes[cs].ahb_decoded_sz = decoded_sz;
979 }
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800980 }
981
982 ret = aspeed_spi_decoded_range_config(bus);
983
984 return ret;
985}
986
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800987static const struct aspeed_spi_info ast2400_fmc_info = {
988 .io_mode_mask = 0x70000000,
989 .max_bus_width = 2,
990 .min_decoded_sz = 0x800000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800991 .clk_ctrl_mask = 0x00002f00,
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800992 .set_4byte = ast2400_fmc_chip_set_4byte,
993 .segment_start = ast2400_spi_segment_start,
994 .segment_end = ast2400_spi_segment_end,
995 .segment_reg = ast2400_spi_segment_reg,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +0800996 .get_clk_setting = ast2400_get_clk_setting,
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +0800997};
998
999static const struct aspeed_spi_info ast2400_spi_info = {
1000 .io_mode_mask = 0x70000000,
1001 .max_bus_width = 2,
1002 .min_decoded_sz = 0x800000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001003 .clk_ctrl_mask = 0x00000f00,
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +08001004 .set_4byte = ast2400_spi_chip_set_4byte,
1005 .segment_start = ast2400_spi_segment_start,
1006 .segment_end = ast2400_spi_segment_end,
1007 .segment_reg = ast2400_spi_segment_reg,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001008 .get_clk_setting = ast2400_get_clk_setting,
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +08001009};
1010
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001011static const struct aspeed_spi_info ast2500_fmc_info = {
1012 .io_mode_mask = 0x70000000,
1013 .max_bus_width = 2,
1014 .min_decoded_sz = 0x800000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001015 .clk_ctrl_mask = 0x00002f00,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001016 .set_4byte = ast2500_spi_chip_set_4byte,
1017 .segment_start = ast2500_spi_segment_start,
1018 .segment_end = ast2500_spi_segment_end,
1019 .segment_reg = ast2500_spi_segment_reg,
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +08001020 .adjust_decoded_sz = ast2500_adjust_decoded_size,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001021 .get_clk_setting = ast2500_get_clk_setting,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001022};
1023
1024/*
1025 * There are some different between FMC and SPI controllers.
1026 * For example, DMA operation, but this isn't implemented currently.
1027 */
1028static const struct aspeed_spi_info ast2500_spi_info = {
1029 .io_mode_mask = 0x70000000,
1030 .max_bus_width = 2,
1031 .min_decoded_sz = 0x800000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001032 .clk_ctrl_mask = 0x00002f00,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001033 .set_4byte = ast2500_spi_chip_set_4byte,
1034 .segment_start = ast2500_spi_segment_start,
1035 .segment_end = ast2500_spi_segment_end,
1036 .segment_reg = ast2500_spi_segment_reg,
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +08001037 .adjust_decoded_sz = ast2500_adjust_decoded_size,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001038 .get_clk_setting = ast2500_get_clk_setting,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001039};
1040
1041static const struct aspeed_spi_info ast2600_fmc_info = {
1042 .io_mode_mask = 0xf0000000,
1043 .max_bus_width = 4,
1044 .min_decoded_sz = 0x200000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001045 .clk_ctrl_mask = 0x0f000f00,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001046 .set_4byte = ast2600_spi_chip_set_4byte,
1047 .segment_start = ast2600_spi_segment_start,
1048 .segment_end = ast2600_spi_segment_end,
1049 .segment_reg = ast2600_spi_segment_reg,
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +08001050 .adjust_decoded_sz = ast2600_adjust_decoded_size,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001051 .get_clk_setting = ast2600_get_clk_setting,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001052};
1053
1054static const struct aspeed_spi_info ast2600_spi_info = {
1055 .io_mode_mask = 0xf0000000,
1056 .max_bus_width = 4,
1057 .min_decoded_sz = 0x200000,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001058 .clk_ctrl_mask = 0x0f000f00,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001059 .set_4byte = ast2600_spi_chip_set_4byte,
1060 .segment_start = ast2600_spi_segment_start,
1061 .segment_end = ast2600_spi_segment_end,
1062 .segment_reg = ast2600_spi_segment_reg,
Chin-Ting Kuod1d43d62022-08-19 17:01:12 +08001063 .adjust_decoded_sz = ast2600_adjust_decoded_size,
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001064 .get_clk_setting = ast2600_get_clk_setting,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001065};
1066
1067static int aspeed_spi_claim_bus(struct udevice *dev)
1068{
1069 struct udevice *bus = dev->parent;
1070 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001071 struct aspeed_spi_priv *priv = dev_get_priv(dev->parent);
1072 struct aspeed_spi_flash *flash = &priv->flashes[slave_plat->cs];
1073 u32 clk_setting;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001074
1075 dev_dbg(bus, "%s: claim bus CS%u\n", bus->name, slave_plat->cs);
1076
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001077 if (flash->max_freq == 0) {
1078 clk_setting = priv->info->get_clk_setting(dev, slave_plat->max_hz);
1079 flash->ce_ctrl_user &= ~(priv->info->clk_ctrl_mask);
1080 flash->ce_ctrl_user |= clk_setting;
1081 flash->ce_ctrl_read &= ~(priv->info->clk_ctrl_mask);
1082 flash->ce_ctrl_read |= clk_setting;
1083 }
1084
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001085 return 0;
1086}
1087
1088static int aspeed_spi_release_bus(struct udevice *dev)
1089{
1090 struct udevice *bus = dev->parent;
1091 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
1092
1093 dev_dbg(bus, "%s: release bus CS%u\n", bus->name, slave_plat->cs);
1094
1095 if (!aspeed_spi_get_flash(dev))
1096 return -ENODEV;
1097
1098 return 0;
1099}
1100
1101static int aspeed_spi_set_mode(struct udevice *bus, uint mode)
1102{
1103 dev_dbg(bus, "%s: setting mode to %x\n", bus->name, mode);
1104
1105 return 0;
1106}
1107
1108static int aspeed_spi_set_speed(struct udevice *bus, uint hz)
1109{
1110 dev_dbg(bus, "%s: setting speed to %u\n", bus->name, hz);
1111 /*
1112 * ASPEED SPI controller supports multiple CS with different
1113 * clock frequency. We cannot distinguish which CS here.
1114 * Thus, the related implementation is postponed to claim_bus.
1115 */
1116
1117 return 0;
1118}
1119
1120static int apseed_spi_of_to_plat(struct udevice *bus)
1121{
1122 struct aspeed_spi_plat *plat = dev_get_plat(bus);
1123 struct aspeed_spi_priv *priv = dev_get_priv(bus);
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001124 int ret;
1125 struct clk hclk;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001126
Johan Jonker497bc732023-03-13 01:31:36 +01001127 priv->regs = devfdt_get_addr_index_ptr(bus, 0);
1128 if (!priv->regs) {
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001129 dev_err(bus, "wrong ctrl base\n");
Johan Jonker497bc732023-03-13 01:31:36 +01001130 return -EINVAL;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001131 }
1132
Johan Jonker497bc732023-03-13 01:31:36 +01001133 plat->ahb_base = devfdt_get_addr_size_index_ptr(bus, 1, &plat->ahb_sz);
1134 if (!plat->ahb_base) {
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001135 dev_err(bus, "wrong AHB base\n");
Johan Jonker497bc732023-03-13 01:31:36 +01001136 return -EINVAL;
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001137 }
1138
1139 plat->max_cs = dev_read_u32_default(bus, "num-cs", ASPEED_SPI_MAX_CS);
1140 if (plat->max_cs > ASPEED_SPI_MAX_CS)
1141 return -EINVAL;
1142
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001143 ret = clk_get_by_index(bus, 0, &hclk);
1144 if (ret < 0) {
1145 dev_err(bus, "%s could not get clock: %d\n", bus->name, ret);
1146 return ret;
1147 }
1148
1149 plat->hclk_rate = clk_get_rate(&hclk);
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001150
Johan Jonker497bc732023-03-13 01:31:36 +01001151 dev_dbg(bus, "ctrl_base = 0x%x, ahb_base = 0x%p, size = 0x%llx\n",
1152 (u32)priv->regs, plat->ahb_base, (fdt64_t)plat->ahb_sz);
Chin-Ting Kuo2f2a7bc2022-08-19 17:01:14 +08001153 dev_dbg(bus, "hclk = %dMHz, max_cs = %d\n",
1154 plat->hclk_rate / 1000000, plat->max_cs);
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001155
1156 return 0;
1157}
1158
1159static int aspeed_spi_probe(struct udevice *bus)
1160{
1161 int ret;
1162 struct aspeed_spi_priv *priv = dev_get_priv(bus);
1163 struct udevice *dev;
1164
1165 priv->info = (struct aspeed_spi_info *)dev_get_driver_data(bus);
1166
1167 priv->num_cs = 0;
1168 for (device_find_first_child(bus, &dev); dev;
1169 device_find_next_child(&dev)) {
1170 priv->num_cs++;
1171 }
1172
1173 if (priv->num_cs > ASPEED_SPI_MAX_CS)
1174 return -EINVAL;
1175
1176 ret = aspeed_spi_ctrl_init(bus);
1177
1178 return ret;
1179}
1180
1181static const struct spi_controller_mem_ops aspeed_spi_mem_ops = {
1182 .supports_op = aspeed_spi_supports_op,
1183 .exec_op = aspeed_spi_exec_op_user_mode,
Chin-Ting Kuo68cc3072022-08-19 17:01:10 +08001184 .dirmap_create = aspeed_spi_dirmap_create,
1185 .dirmap_read = aspeed_spi_dirmap_read,
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001186};
1187
1188static const struct dm_spi_ops aspeed_spi_ops = {
1189 .claim_bus = aspeed_spi_claim_bus,
1190 .release_bus = aspeed_spi_release_bus,
1191 .set_speed = aspeed_spi_set_speed,
1192 .set_mode = aspeed_spi_set_mode,
1193 .mem_ops = &aspeed_spi_mem_ops,
1194};
1195
1196static const struct udevice_id aspeed_spi_ids[] = {
Chin-Ting Kuo4db52a52022-08-19 17:01:06 +08001197 { .compatible = "aspeed,ast2400-fmc", .data = (ulong)&ast2400_fmc_info, },
1198 { .compatible = "aspeed,ast2400-spi", .data = (ulong)&ast2400_spi_info, },
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +08001199 { .compatible = "aspeed,ast2500-fmc", .data = (ulong)&ast2500_fmc_info, },
1200 { .compatible = "aspeed,ast2500-spi", .data = (ulong)&ast2500_spi_info, },
1201 { .compatible = "aspeed,ast2600-fmc", .data = (ulong)&ast2600_fmc_info, },
1202 { .compatible = "aspeed,ast2600-spi", .data = (ulong)&ast2600_spi_info, },
1203 { }
1204};
1205
1206U_BOOT_DRIVER(aspeed_spi) = {
1207 .name = "aspeed_spi_smc",
1208 .id = UCLASS_SPI,
1209 .of_match = aspeed_spi_ids,
1210 .ops = &aspeed_spi_ops,
1211 .of_to_plat = apseed_spi_of_to_plat,
1212 .plat_auto = sizeof(struct aspeed_spi_plat),
1213 .priv_auto = sizeof(struct aspeed_spi_priv),
1214 .probe = aspeed_spi_probe,
1215};